:root {
    --bg-light: #F9FAFB;
    --bg-dark: #0f0202;
    --surface-color: #ffffff;
    --surface-light: #f3f4f6;
    --brand-red: #ff8c00;
    --brand-orange: #ff8c00;
    --brand-white: #ffffff;
    --neon-flame: #ff8c00;
    --neon-fire: #ff8c00;
    --neon-darkred: #ff4500;
    /* Blood Orange */
    --neon-yellow: #f59e0b;
    --text-main: #111827;
    --text-muted: #4b5563;
    --glass-border-light: rgba(0, 0, 0, 0.08);
    --glass-border-dark: rgba(0, 0, 0, 0.04);
    --accent-gradient: linear-gradient(135deg, #ff8c00 0%, #f59e0b 100%);
    --brand-gradient: linear-gradient(135deg, #ff4d00 0%, #ff8c00 50%, #f59e0b 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

a,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

html,
body {
    max-width: 100vw;
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: clip !important;
    position: relative;
    letter-spacing: 0.2px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 24px;
}

h2 {
    font-size: 1.7rem;
    margin-top: 35px;
}

h3 {
    font-size: 1.4rem;
    margin-top: 30px;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* Responsive Headings */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.15rem;
    }
}

/* --- UTILITIES --- */
.neon-text {
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.8), 0 0 20px rgba(255, 106, 0, 0.6);
    color: #fff;
}

.neon-text-sm {
    text-shadow: 0 0 8px rgba(255, 106, 0, 0.6), 0 0 15px rgba(255, 140, 0, 0.4);
    color: #fff;
}

.text-gradient-brand {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass-panel {
    background: var(--surface-color);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-light);
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
}

/* --- HEADER (DESKTOP) --- */
.header-desktop {
    display: none;
    height: 80px;
    background: #fff;
    border-bottom: 2px solid var(--neon-flame);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: sticky !important;
    top: 0 !important;
    z-index: 2000 !important;
}

.desktop-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.desktop-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.d-logo-text {
    font-size: 1.8rem;
    font-weight: 1000;
    color: var(--text-main);
    letter-spacing: -1px;
    white-space: nowrap;
}

.d-logo-red {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.desktop-nav-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 800;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 12px;
    white-space: nowrap;
}

.desktop-nav-link i {
    font-size: 1.1rem;
    transition: 0.3s;
}

.desktop-nav-link:hover {
    color: var(--neon-fire);
    background: rgba(255, 140, 0, 0.05);
}

.desktop-nav-link:hover i {
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.4));
}

.desktop-search-bar-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f7;
    border: 1px solid #eaeaea;
    color: #666;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 220px;
}

.desktop-search-bar-btn:hover {
    background: #fff;
    border-color: #ff8c00;
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.15);
    color: #111;
}

.desktop-search-bar-btn i {
    color: var(--neon-fire);
    font-size: 1.1rem;
}

.desktop-cta-btn {
    background: var(--accent-gradient);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.desktop-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 140, 0, 0.4);
}

/* --- HEADER (MOBILE) --- */
.header-mobile {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    position: sticky !important;
    top: 0 !important;
    z-index: 2000 !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-mobile i {
    font-size: 1.2rem;
    color: var(--text-main);
}

.logo-new {
    font-size: 1.7rem;
    font-weight: 1000;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.8px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    position: relative;
}

.logo-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #ffffff;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.header-cta-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-gradient);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- LAYOUT WRAPPERS --- */
.page-content {
    display: block;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    position: relative;
    background-color: var(--bg-light);
    min-height: 100vh;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
    z-index: 1;
    animation: fadeInPage 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeInPage {
    from {
        opacity: 0;

    }

    to {
        opacity: 1;

    }
}

/* â”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Â
   PREMIUM HOME COMPONENTS
   â”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Ââ”Â */

/* --- HERO BANNER --- */
.hero-banner {
    padding: 15px 12px 10px;
}

.hero-banner-inner {
    display: flex;
    gap: 10px;
}

.hero-announce {
    flex: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.hero-announce-icon {
    font-size: 1.6rem;
    color: var(--neon-flame);
    margin-right: 14px;
    filter: drop-shadow(0 0 8px rgba(255, 140, 0, 0.6));
}

.hero-announce-text {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-announce-text::before,
.hero-announce-text::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    z-index: 5;
    pointer-events: none;
}

.hero-announce-text::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.hero-announce-text::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.hero-announce-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ff8c00;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
    z-index: 6;
    position: relative;
}

.hero-marquee-val {
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 700;
    width: 100%;
}

.marquee-inner {
    display: flex;
    white-space: nowrap;
    animation: hero-marquee 25s linear infinite;
    width: max-content;
}

.marquee-inner span {
    padding-right: 100px;
    /* Space between the two copies */
}

@keyframes hero-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-wheel-cta {
    width: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border: none;
    border-radius: 20px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35), inset 0 0 15px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-wheel-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
        transition-property: left;
    }

    100% {
        left: 100%;
        transition-property: left;
    }
}

.hero-wheel-cta:hover {
    transform: translateY(-3px) scale(1.03);
    filter: brightness(1.1);
}

.hero-wheel-cta:active {
    transform: scale(0.95);
}

.hwc-icon-wrap {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 3px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* --- HOME SECTIONS --- */
.home-section {
    padding: 25px 12px 5px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 0 4px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.section-title i {
    color: var(--neon-flame);
    font-size: 1.1rem;
}

.section-link {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.04);
    padding: 7px 14px;
    border-radius: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* --- HERO & SLIDER --- */
.slider-container {
    width: 100%;
    position: relative;
    padding: 10px 12px 20px 12px;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    gap: 12px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 400px;
}

@media (max-width: 768px) {
    .slider-wrapper {
        height: 240px;
        /* mobil */
    }
}

.slide {
    min-width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    /*box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);*/
    position: relative;
    overflow: hidden;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.slide h3 {
    font-size: 1.35rem;
    margin-bottom: 3px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* --- BRAND GIF GRID --- */
.premium-brands-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
}

.brand-gif-card {
    position: relative;
    background: #0d0101;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-gif-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px;
}

/* --- BLOG GRID --- */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.blog-grid-card {
    /*background: #ffffff;*/
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
}

.blog-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.2);
}

.bgc-thumb {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
    background: #eee;
}

.bgc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-grid-card:hover .bgc-thumb img {
    transform: scale(1.1);
}

.bgc-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 40%);
    opacity: 0;
    transition: 0.3s;
}

.blog-grid-card:hover .bgc-thumb::after {
    opacity: 1;
}

.bgc-cat {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
    text-transform: uppercase;
}

.bgc-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bgc-title {
    font-size: 1.05rem;
    font-weight: 850;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: 0.2s;
}

.bgc-excerpt {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0.9;
}

.blog-grid-card:hover .bgc-title {
    color: var(--brand-red);
}

.bgc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.bgc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bgc-meta-item {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.bgc-meta-item i {
    color: var(--brand-red);
    font-size: 0.75rem;
    opacity: 0.7;
}

.blog-grid-card:hover .bgc-meta-item {
    color: var(--text-main);
}

.bgc-footer i.fa-arrow-right {
    font-size: 0.9rem;
    color: var(--brand-red);
    transform: translateX(-5px);
    opacity: 0;
    transition: 0.3s;
}

.blog-grid-card:hover .bgc-footer i.fa-arrow-right {
    transform: translateX(0);
    opacity: 1;
}

/* --- BLOG PAGE SPECIFIC --- */
.page-blog {
    padding: 20px 15px 60px;
    min-height: calc(100vh - 150px);
}

.blog-header-premium {
    margin-bottom: 40px;
}

.breadcrumb-wrapper {
    margin-bottom: 25px;
}

.category-tabs-modern {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 30px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-tabs-modern::-webkit-scrollbar {
    display: none;
}

.cat-tab-premium {
    padding: 10px 22px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.cat-tab-premium:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
}

.cat-tab-premium.active {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.25);
}

.page-title-modern {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.no-posts-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 28px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    color: var(--text-muted);
}

.no-posts-found i {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
    color: var(--brand-red);
}

/* --- SEO BLOCK (PREMIUM & OPTIMIZED) --- */
.seo-block {
    padding: 80px 20px;
    /*background: rgba(255, 255, 255, 0.7);*/
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 40px;
    margin: 60px auto;
    max-width: 1200px;
    /*box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);*/
}

.seo-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-block-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: var(--text-main);
    text-align: center;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-text-section {
    line-height: 2;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
    text-align: center;
}

.seo-text-section p {
    margin-bottom: 20px;
}

.seo-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.seo-feature-card {
    /*background: #fff;*/
    padding: 30px;
    border-radius: 25px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}

.seo-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.seo-feature-card i {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.seo-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-main);
}

.seo-feature-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* FAQ STYLES */
.faq-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-title {
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-main);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    /*background: #f9fafb;*/
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: var(--brand-orange);
}

.faq-question {
    padding: 22px 30px;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.01);
}

.faq-question i {
    font-size: 0.9rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--brand-orange);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 500px;
    opacity: 1;
}

@media (max-width: 768px) {
    .seo-block {
        padding: 50px 15px;
        margin: 30px 10px;
        border-radius: 30px;
    }

    .seo-block-title {
        font-size: 1.6rem;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}


/* --- FOOTER --- */
/* --- FOOTER MODERN --- */
.site-footer {
    padding: 80px 20px 40px;
    /*background: #fff;*/
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
    border-top: 1px solid #f2f2f2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 900;
    margin-bottom: 25px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-about-text {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--brand-red);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-copy {
    color: #cbd5e0;
    font-size: 0.85rem;
    font-weight: 700;
}

.footer-logo-link {
    display: block;
    margin-bottom: 20px;
}

/* --- LANDING GAMES GRID --- */
.landing-games-section {
    margin: 80px 0;
}

.landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.landing-card {
    /*background: #fff;*/
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: block;
}

.landing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.15);
    border-color: rgba(255, 140, 0, 0.2);
}

.lc-img-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f0f0f0;
}

.lc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.landing-card:hover .lc-img-wrapper img {
    transform: scale(1.1);
}

.lc-no-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ddd;
}

.lc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.3s;
}

.landing-card:hover .lc-overlay {
    opacity: 1;
}

.lc-btn {
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
}

.lc-info {
    padding: 20px;
    text-align: center;
}

.lc-info h3 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-main);
    margin: 0;
}

/* Responsive Footer & Grid */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 30px;
    }

    .landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .landing-grid {
        grid-template-columns: 1fr;
    }
}

/* Winners */
.winner-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(212, 117, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-fire);
    font-size: 1.1rem;
    margin-right: 12px;
    border: 1px solid rgba(255, 106, 0, 0.2);
}

.winner-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.winner-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.winner-amount {
    font-size: 1rem;
    font-weight: 800;
    color: #ff9800;
}

/* Atmosphere Effects */
.bg-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.2;
    animation: floatingGlow 12s ease-in-out infinite alternate;
}

.top-glow {
    top: -50px;
    left: -80px;
    background: var(--neon-darkred);
}

.bottom-glow {
    bottom: 20%;
    right: -80px;
    background: var(--neon-flame);
}

@keyframes floatingGlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(40px, 20px);
    }

    100% {
        transform: scale(0.9) translate(-10px, 40px);
    }
}

/* --- MARQUEE --- */
.marquee-wrapper {
    width: 100%;
    padding: 10px 15px;
    position: relative;
    z-index: 10;
}

.marquee-capsule {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    padding: 4px 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.marquee-badge {
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.70rem;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 20s linear infinite;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* --- SEARCH & ACTIONS --- */
.hero-search-container {
    padding: 0 15px 20px;
    display: flex;
    justify-content: center;
}

.search-capsule {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

/* --- BONUS CARDS --- */
.bonus-section {
    padding: 0 12px 20px 12px;
}

.bonus-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.premium-card {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Inner Pages */
.page-winners,
.page-bonuses,
.page-blog,
.page-videos,
.page-static {
    padding: 15px 12px;
    min-height: calc(100vh - 85px);
}


/* --- BOTTOM NAVIGATION --- */
.mobile-bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: none;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid var(--glass-border-light);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom, 0);
}

/* Bottom Menu Visibility */
@media (max-width: 767px) {
    .mobile-bottom-menu {
        display: flex;
    }
}

@media (min-width: 768px) {
    .mobile-bottom-menu {
        display: none !important;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.70rem;
    font-weight: 700;
    position: relative;
    flex: 1;
    height: 100%;
}

.nav-indicator {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--neon-flame);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 0 10px var(--neon-fire);
}

.nav-item.active .nav-indicator {
    opacity: 1;
}

.fa-spin-slow {
    animation: fa-spin 5s linear infinite;
}

.nav-item i {
    font-size: 1.3rem;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item:active i {
    transform: scale(1.2);
}

.nav-item.active i {
    color: var(--neon-flame);
    filter: drop-shadow(0 0 5px rgba(255, 140, 0, 0.4));
}

.wheel-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-fire), var(--neon-yellow));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.3);
    border: 3px solid #fff;
    color: #fff;
    margin-top: -30px;
    font-size: 1.5rem;
    transition: 0.3s;
}

.wheel-icon-wrap:active {
    transform: scale(0.9) rotate(45deg);
}

/* --- MODALS --- */
.modal-base,
.custom-modal,
.video-modal-premium {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal.show,
.video-modal-premium.show {
    display: flex;
}

.v-modal-content-premium {
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    animation: modalSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.02);
    transition: 0.3s;
}

.contact-card-premium:hover {
    transform: translateX(10px);
    background: rgba(0, 0, 0, 0.04);
}

/* --- GLOBAL ANIMATIONS & POLISH --- */
@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--neon-flame);
    color: #fff;
}

/* ============================================================
   MASAÃœSTÃœ LAYOUT (DESKTOP OVERRIDES)
   ============================================================ */
@media (min-width: 768px) {

    /* Layout & Containers */
    .page-content {
        padding-top: 20px;
        max-width: 1200px !important;
        margin: 0 auto;
        box-shadow: none;
        border-radius: 0;
        background: transparent !important;
    }

    .page-container {
        padding-top: 0 !important;
        margin: 0 auto;
        max-width: 1200px;
    }

    /* Header Toggling */
    .header-mobile {
        display: none !important;
    }

    .header-desktop {
        display: block !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 2000 !important;
        background: #fff;
        width: 100%;
        border-bottom: 2px solid var(--neon-flame);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .desktop-nav-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        height: 80px;
        padding: 0 20px;
    }

    /* Grid Columns */
    .main-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 25px;
    }

    .premium-brands-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .premium-sites-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }

    .bonus-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    /* Sidebar Fixes */
    .desktop-sidebar {
        display: block !important;
    }
}

/* Mobile & Tablet Fine-Tuning */
@media (max-width: 767px) {
    h1 {
        font-size: 1.6rem !important;
    }

    .premium-cta-card {
        padding: 15px !important;
    }

    .page-container {
        padding-bottom: 40px !important;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }
}

/* --- BLOG LOADER --- */
.blog-loader-premium {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 0;
    width: 100%;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-loader-premium.active {
    display: flex;
}

.premium-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 0, 0, 0.05);
    border-top-color: var(--brand-red);
    border-radius: 50%;
    animation: spin-premium 0.8s linear infinite;
}

@keyframes spin-premium {
    to {
        transform: rotate(360deg);
    }
}

/* --- MODERN BONUSES PAGE --- */
.bonuses-modern-header {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    background: #F9FAFB;
    border-bottom: 1px solid var(--glass-border-light);
    overflow: hidden;
    margin-bottom: 40px;
}

.b-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.b-header-content {
    position: relative;
    z-index: 2;
}

.b-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-fire);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.b-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
}

.b-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Mystery Boxes */
.mystery-outer-container {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.mystery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mystery-box-item {
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
}

.mbox-inner {
    background: #ffffff;
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: 0.3s;
}

.gift-box-img {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s;
}

.mbox-label {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* Animations */
.mystery-box-item:hover {
    transform: translateY(-10px);
}

.mystery-box-item:hover .mbox-inner {
    border-color: var(--neon-fire);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.08);
}

.mystery-box-item.opening .gift-box-img {
    animation: boxShake 0.5s infinite;
}

@keyframes boxShake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0);
    }
}

.mystery-box-item.opened .mbox-inner {
    background: var(--bg-light);
    border-style: dashed;
}

.mystery-box-item.opened .gift-box-img {
    transform: scale(0.8) translateY(-20px);
    opacity: 0.5;
}

.box-claim-msg {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #059669;
    animation: fadeInScale 0.4s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Exclusive Bonuses List */
.exclusive-bonus-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.section-title-wrapper {
    margin-bottom: 40px;
    text-align: center;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--accent-gradient);
    margin: 15px auto 0;
    border-radius: 10px;
}

.modern-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.premium-bonus-card-v2 {
    position: relative;
    /*background: #ffffff;*/
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    padding: 35px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.premium-bonus-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.pbc-badge {
    position: absolute;
    top: 25px;
    right: 30px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.badge-vip {
    background: linear-gradient(135deg, #111 0%, #333 100%);
}

.badge-new {
    background: var(--accent-gradient);
}

.badge-free {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.pbc-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--neon-fire);
    margin-bottom: 25px;
}

.pbc-body h3 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
}

.pbc-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.pbc-promo {
    background: #fdfdfd;
    border: 1px dashed var(--glass-border-light);
    padding: 12px 15px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
}

.promo-code-val {
    font-size: 0.95rem;
    font-weight: 900;
    color: var(--text-main);
    letter-spacing: 1px;
}

.pbc-btn-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: #ffffff;
    color: #fff;
    border-radius: 16px;
    font-size: 0.9rem;
    font-weight: 800;
    transition: 0.3s;
}

.pbc-btn-premium:hover {
    background: var(--neon-fire);
    transform: scale(1.02);
}

/* Tablet & Mobile Tweaks */
@media (max-width: 768px) {
    .mystery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .b-title {
        font-size: 1.8rem;
    }

    .mbox-inner {
        min-height: 160px;
    }

    .gift-box-img {
        width: 100px;
    }
}

/* --- BOX BREAKING & MODAL EFFECTS --- */
.box-fragment {
    position: absolute;
    width: 60px;
    height: 60px;
    background: url('../assets/img/gift-box.png') no-repeat;
    background-size: 120px auto;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
}

.frag-1 {
    top: 20%;
    left: 20%;
    clip-path: polygon(0 0, 100% 0, 50% 50%);
}

.frag-2 {
    top: 20%;
    right: 20%;
    clip-path: polygon(100% 0, 100% 100%, 50% 50%);
}

.frag-3 {
    bottom: 20%;
    left: 20%;
    clip-path: polygon(0 0, 0 100%, 50% 50%);
}

.frag-4 {
    bottom: 20%;
    right: 20%;
    clip-path: polygon(100% 100%, 0 100%, 50% 50%);
}

.mystery-box-item.opened .gift-box-img {
    opacity: 0 !important;
    transform: scale(0.5);
}

.mystery-box-item.opened .box-fragment {
    opacity: 1;
    animation: fragOut 1s forwards cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes fragOut {
    0% {
        transform: translate(0, 0) rotate(0);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) rotate(var(--tr));
        opacity: 0;
    }
}

.frag-1 {
    --tx: -100px;
    --ty: -100px;
    --tr: -120deg;
}

.frag-2 {
    --tx: 100px;
    --ty: -120px;
    --tr: 150deg;
}

.frag-3 {
    --tx: -120px;
    --ty: 100px;
    --tr: 90deg;
}

.frag-4 {
    --tx: 120px;
    --ty: 120px;
    --tr: -180deg;
}

/* Bonus Reveal Modal */
.bonus-reveal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(25px);
    /* Daha gÃ¼Ã§lÃ¼ bir blur */
    -webkit-backdrop-filter: blur(25px);
    /* Safari uyumu */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    /* En Ã¼stte olduÄŸundan emin ol */
    padding: 20px;
    animation: fadeInModal 0.5s both;
}

.bonus-reveal-overlay.active {
    display: flex;
}

.modal-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-modal-card {
    position: relative;
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 140, 0, 0.3);
    animation: slideUpModal 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.modal-pbc-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.modal-pbc-icon {
    font-size: 4rem;
    color: var(--neon-fire);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.4));
}

.modal-pbc-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.modal-pbc-value {
    font-size: 2.2rem;
    font-weight: 1000;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.1;
}

.modal-pbc-desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.pulse-btn {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 140, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

@keyframes fadeInModal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUpModal {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- MODERN WINNERS PAGE --- */
.winners-modern-header {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    /*background: #ffffff;*/
    border-bottom: 1px solid var(--glass-border-light);
    overflow: hidden;
    margin-bottom: 40px;
}

.w-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.w-header-content {
    position: relative;
    z-index: 2;
}

.w-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-fire);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.w-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
}

.w-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Winners Outer Container */
.winners-outer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.winners-feed-wrapper {
    /*background: #ffffff;*/
    border: 1px solid var(--glass-border-light);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 900;
    color: var(--text-muted);
    margin-bottom: 25px;
    padding-left: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-fire);
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.5);
    }

    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

/* Winner Card Premium (Vertical) */
.winners-list-vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.winner-card-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*background: #fdfdfd;*/
    border: 1px solid var(--glass-border-light);
    border-radius: 24px;
    padding: 20px 25px;
    transition: all 0.3s ease;
    animation: slideInWinner 0.5s both;
}

.winner-card-premium:hover {
    transform: translateX(10px);
    border-color: rgba(255, 140, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@keyframes slideInWinner {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.w-card-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.w-game-thumb {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-light);
    flex-shrink: 0;
}

.w-game-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.w-site-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-size: 0.6rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    padding: 2px 0;
    text-transform: uppercase;
}

.w-user-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.w-username {
    font-size: 1.15rem;
    font-weight: 900;
    color: var(--text-main);
}

.w-game-name {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.w-game-name i {
    color: var(--neon-fire);
    margin-right: 4px;
}

.w-card-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.w-amount-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.w-amount-label {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.w-amount-val {
    font-size: 1.5rem;
    font-weight: 1000;
    color: var(--text-main);
}

.w-time-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 50px;
    min-width: 90px;
    text-align: center;
}

/* Tablet & Mobile Tweaks */
@media (max-width: 768px) {
    .winner-card-premium {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }

    .w-card-right {
        width: 100%;
        justify-content: space-between;
        gap: 0;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .w-amount-val {
        font-size: 1.3rem;
    }

    .w-title {
        font-size: 1.8rem;
    }
}

/* --- MODERN VIDEOS PAGE --- */
.videos-modern-header {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    /*background: #ffffff;*/
    border-bottom: 1px solid var(--glass-border-light);
    overflow: hidden;
    margin-bottom: 40px;
}

.v-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.v-header-content {
    position: relative;
    z-index: 2;
}

.v-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-fire);
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.v-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--text-main);
}

.v-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Video Grid and Cards */
.videos-outer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.modern-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.premium-video-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.premium-video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.v-card-thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    overflow: hidden;
}

.v-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-video-card:hover .v-card-thumb img {
    transform: scale(1.1);
}

.v-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.3s ease;
}

.v-play-btn {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    padding-left: 5px;
    /* AltÃ„Â±n oran gÃƒÂ¶rsel merkezleme */
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.5);
    transition: all 0.3s ease;
}

.premium-video-card:hover .v-play-btn {
    transform: scale(1.2);
    box-shadow: 0 0 40px rgba(255, 140, 0, 0.8);
}

.v-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
}

.v-card-body {
    padding: 20px;
}

.v-card-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 12px;
    line-height: 1.4;
}

.v-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.v-game-tag {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.v-game-tag i {
    color: var(--neon-fire);
    margin-right: 5px;
}

.v-action-text {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--neon-fire);
    letter-spacing: 1px;
}

/* No Content State */
.no-content-premium {
    text-align: center;
    padding: 100px 20px;
    background: #fdfdfd;
    border: 1px dashed var(--glass-border-light);
    border-radius: 32px;
}

.no-content-premium i {
    font-size: 4rem;
    color: #eee;
    margin-bottom: 20px;
}

/* Global Video Player Modal */
.video-player-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-player-overlay.active {
    display: flex;
}

.modal-blur {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: fadeInModal 0.4s ease;
}

.video-modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1000px;
    background: #000;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: zoomInModal 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #111;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-modal-header h4 {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-close-x {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.modal-close-x:hover {
    opacity: 1;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 */
    background: #000;
}

.premium-video-element {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

@keyframes zoomInModal {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .v-title {
        font-size: 1.8rem;
    }

    .modern-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-modal-content {
        border-radius: 12px;
    }

    .premium-video-card {
        border-radius: 16px;
    }
}

/* --- CASINO SITES SEO HUB --- */
.casino-sites-modern-header {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    /*background: #ffffff;*/
    border-bottom: 1px solid var(--glass-border-light);
    overflow: hidden;
    margin-bottom: 40px;
}

.csh-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.csh-content {
    position: relative;
    z-index: 2;
}

.csh-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-fire);
    letter-spacing: 4px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.csh-title {
    font-size: 2.8rem;
    font-weight: 950;
    margin-bottom: 20px;
    color: var(--text-main);
    line-height: 1.1;
}

.csh-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Premium Hub List */
.hub-sites-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.premium-hub-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .premium-hub-list {
        grid-template-columns: 1fr;
    }
}

/* --- MODERN BONUS GRID --- */
.modern-bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.premium-bonus-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.premium-bonus-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.1);
    border-color: rgba(255, 140, 0, 0.3);
}

.pbc-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-vip {
    background: linear-gradient(135deg, #111, #444);
    color: #ffd700;
}

.badge-new {
    background: linear-gradient(135deg, #ff4d00, #ff8c00);
    color: #fff;
}

.badge-free {
    background: linear-gradient(135deg, #059669, #10b981);
    color: #fff;
}

.pbc-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-fire);
}

.pbc-body h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 8px;
}

.pbc-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.pbc-promo {
    margin-top: 15px;
    background: #f8fafc;
    border: 1px dashed rgba(255, 140, 0, 0.4);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
}

.promo-code-val {
    font-family: monospace;
    font-size: 1rem;
    font-weight: 900;
    color: var(--neon-fire);
}

.pbc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 14px;
    border-radius: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s;
}

.pbc-btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

@media (max-width: 768px) {
    .modern-bonus-grid {
        grid-template-columns: 1fr;
    }
}

.brand-hub-card {
    /*background: #ffffff;*/
    border-radius: 22px;
    padding: 20px 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* TÃƒÂ¼m kolonlarÃ„Â± dikeyde ortalar */
    justify-content: space-between;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-hub-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-fire);
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.12);
}

.bhc-rank {
    position: absolute;
    top: 5px;
    left: 15px;
    font-size: 0.8rem;
    font-weight: 950;
    color: #f2f2f2;
}

.bhc-logo-wrap {
    width: 110px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bhc-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bhc-info {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ã„Â°sim, yÃ„Â±ldÃ„Â±z ve bonusu dikeyde ortalar */
    justify-content: center;
    text-align: center;
    /* Metinleri merkezde toplar */
    margin: 0;
}

.bhc-name {
    font-size: 1.15rem;
    font-weight: 950;
    color: var(--text-main);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.bhc-meta {
    display: flex;
    flex-direction: column;
    /* YÃ„Â±ldÃ„Â±zlar ve Bonusu alt alta alarak daha simetrik bir kule yapÃ„Â±sÃ„Â± oluÃ…Å¸turur */
    align-items: center;
    gap: 5px;
}

.bhc-stars {
    color: #ffca28;
    font-size: 0.85rem;
}

.bhc-bonus-badge {
    background: #fff5f0;
    color: var(--neon-fire);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(255, 140, 0, 0.05);
}

.bhc-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100px;
    flex-shrink: 0;
}

.btn-hub-review {
    padding: 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    background: #fdfdfd;
    color: var(--text-muted);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
}

.btn-hub-review:hover {
    background: #eee;
    color: var(--text-main);
}

.btn-hub-join {
    padding: 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    background: var(--accent-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.3s;
}

/* Mobil iÃƒÂ§in tek sÃƒÂ¼tun */
@media (max-width: 992px) {
    .premium-hub-list {
        grid-template-columns: 1fr;
    }
}

.btn-hub-join:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.5);
}

/* --- PREMIUM BREADCRUMB --- */
@media (max-width: 900px) {
    .brand-hub-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .bhc-info {
        padding: 0;
    }

    .bhc-meta {
        justify-content: center;
    }

    .bhc-actions {
        width: 100%;
        flex-direction: column;
    }

    .bhc-actions a {
        width: 100%;
    }

    .csh-title {
        font-size: 2rem;
    }
}

/* --- PREMIUM BREADCRUMB --- */
.premium-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 20px;
    /* Header iÃ§eriÄŸinden Ã¶nce Ã¼stte durmasÄ± iÃ§in */
    letter-spacing: 1px;
    text-transform: uppercase;
}

.premium-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.premium-breadcrumb a:hover {
    color: var(--neon-fire);
}

.premium-breadcrumb span.sep {
    color: #ddd;
    font-weight: 400;
}

.premium-breadcrumb span.current {
    color: var(--neon-fire);
    opacity: 0.8;
}

/* Header Entegrasyonu */
.v-header-content .premium-breadcrumb,
.bonuses-header-content .premium-breadcrumb,
.csh-content .premium-breadcrumb,
.winners-header-content .premium-breadcrumb,
.w-header-content .premium-breadcrumb,
.b-header-content .premium-breadcrumb {
    justify-content: center;
    /* Merkezi baÅŸlÄ±klarda ortala */
}

/* MODERN SEARCH STYLES */
.header-action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.header-action-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.search-text-hint {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.7;
    transition: 0.3s;
}

.header-action-btn:hover {
    background: #ffffff;
    border-color: var(--primary-soft);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 0 15px var(--primary-soft);
    transform: translateY(-2px);
    padding-right: 18px;
}

.header-action-btn:hover i {
    transform: scale(1.1) rotate(-5deg);
    color: var(--primary);
}

.header-action-btn:hover .search-text-hint {
    opacity: 1;
    color: var(--text-main);
}

.header-action-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.header-action-btn:hover::after {
    transform: translateX(100%);
}

/* REFINED SEARCH BUTTON STYLES - STABLE & PREMIUM */
.header-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    white-space: nowrap;
}

.header-action-btn:hover {
    width: 100px;
    padding: 0 15px;
    background: #ffffff;
    border-color: var(--primary-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 0 20px var(--primary-soft);
    transform: translateY(-2px);
    gap: 10px;
}

.header-action-btn i {
    font-size: 1.1rem;
    color: var(--text-main);
    transition: 0.3s;
}

.header-action-btn:hover i {
    color: var(--primary);
    transform: scale(1.1);
}

.search-text-hint {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
    opacity: 0;
    transform: translateX(10px);
    transition: 0.4s;
    display: inline-block;
}

.header-action-btn:hover .search-text-hint {
    opacity: 1;
    transform: translateX(0);
}

/* Search Modal Enhancement */
.modal-search .glass-panel {
    border-radius: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- FLOATING CAPSULE (PREMIUM) --- */
.floating-capsule {
    position: fixed;
    bottom: 85px;
    /* Mobile bottom menu'nun Ã¼stÃ¼nde */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 420px;
    height: 70px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    z-index: 10001;
    display: flex;
    align-items: center;
    padding: 0 8px 0 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: capsuleSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

@keyframes capsuleSlideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 40px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.fc-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.4);
}

.fc-pulse-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 2;
}

.fc-pulse-dot::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
    opacity: 0.6;
}

.fc-text {
    flex: 1;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.fc-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.fc-desc {
    font-size: 0.85rem;
    font-weight: 900;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.fc-btn {
    background: var(--text-main);
    color: #fff !important;
    font-size: 0.7rem;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.fc-btn:hover {
    transform: scale(1.05);
    background: var(--neon-fire);
}

.fc-close {
    position: absolute;
    top: -12px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.fc-close:hover {
    color: var(--brand-red);
    transform: scale(1.1);
}

/* MasaÃ¼stÃ¼ AyarÄ± */
@media (min-width: 768px) {
    .floating-capsule {
        bottom: 30px;
        left: auto;
        right: 30px;
        transform: none;
        width: 380px;
    }

    @keyframes capsuleSlideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* --- FOMO TOAST (PREMIUM) --- */
.fomo-toast {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 320px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    z-index: 10002;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fomo-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.fomo-content-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fomo-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.3);
}

.fomo-text {
    font-size: 0.82rem;
    color: var(--text-main);
    line-height: 1.4;
}

.fomo-text b {
    color: var(--neon-fire);
    font-weight: 900;
}

.fomo-text .hl-game {
    font-weight: 800;
    color: var(--text-main);
    text-decoration: underline;
    text-decoration-color: var(--neon-fire);
}

.fomo-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.fomo-progress {
    height: 100%;
    background: var(--accent-gradient);
    width: 0%;
}

/* Mobil AyarÄ± */
@media (max-width: 768px) {
    .fomo-toast {
        top: 80px;
        /* Header'Ä±n altÄ±nda */
        right: 12px;
        width: calc(100% - 24px);
        max-width: 360px;
    }
}

/* --- SCROLLED HEADER EFFECTS (GLASSMORPHISM) --- */
.header-desktop.header-scrolled,
.header-mobile.header-scrolled {
    background: rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    height: 80px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    border-bottom: 1px solid rgba(255, 140, 0, 0.2) !important;
}

.header-mobile.header-scrolled {
    height: 60px !important;
}


/* --- MODERN LUCKY WHEEL --- */
.wheel-container {
    position: relative;
    width: 360px;
    height: 360px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    perspective: 1500px;
}

.wheel-outer-ring {
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a, #000);
    border: 12px solid #222;
    box-shadow: 0 0 60px rgba(255, 68, 0, 0.4), inset 0 0 30px rgba(255, 68, 0, 0.2);
    z-index: 1;
}

.wheel-bulbs {
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    z-index: 2;
}

.bulb {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform-origin: 0 185px;
    box-shadow: 0 0 10px #fff, 0 0 30px var(--neon-fire);
    animation: bulbPulse 1s infinite alternate;
}

@keyframes bulbPulse {
    0% {
        opacity: 0.4;
        box-shadow: 0 0 5px #fff;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 15px #fff, 0 0 30px var(--neon-fire);
    }
}

.wheel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 6s cubic-bezier(0.15, 0, 0.15, 1);
    z-index: 3;
    border: 6px solid #111;
    background: conic-gradient(#ff4d00 0deg 30deg, #111 30deg 60deg,
            #ff4d00 60deg 90deg, #111 90deg 120deg,
            #ff4d00 120deg 150deg, #111 150deg 180deg,
            #ff4d00 180deg 210deg, #111 210deg 240deg,
            #ff4d00 240deg 270deg, #111 270deg 300deg,
            #ff4d00 300deg 330deg, #111 330deg 360deg);
}

/* Ã‡ark ÃœstÃ¼ Cam Parlama Efekti */
.wheel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 5;
    pointer-events: none;
}

.wheel-center-cap {
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #333 0%, #000 100%);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid #222;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 68, 0, 0.3);
    color: var(--neon-yellow);
    font-size: 2.2rem;
}

.wheel-pointer {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 65px;
    background: #fff;
    clip-path: polygon(50% 100%, 0 15%, 15% 0, 85% 0, 100% 15%);
    z-index: 20;
    filter: drop-shadow(0 0 20px var(--neon-fire));
    transform-origin: 50% 10px;
}

.wheel-pointer.flick {
    animation: pointerFlick 0.12s ease-in-out;
}

@keyframes pointerFlick {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    50% {
        transform: translateX(-50%) rotate(-25deg);
    }

    100% {
        transform: translateX(-50%) rotate(0deg);
    }
}

.slice {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 45px;
    pointer-events: none;
}

.slice span {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
    transform: rotate(90deg);
    transform-origin: center;
    letter-spacing: 1px;
    display: block;
    width: 150px;
    text-align: right;
    padding-right: 15px;
}

.slice:nth-child(even) span {
    color: var(--neon-yellow);
}

/* --- ABOUT PAGE LIGHT PREMIUM DESIGN --- */
.page-about-light {
    background: var(--bg-light);
    padding-bottom: 80px;
    font-family: 'Outfit', sans-serif;
}

.about-hero-light {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.about-hero-light .hero-badge {
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    border: 1px solid rgba(255, 140, 0, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 20px;
}

.about-hero-light h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-main);
    font-weight: 900;
}

.about-hero-light .highlight {
    color: #ff8c00;
}

/* Stats Row Light */
.about-stats-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: -40px;
    position: relative;
    z-index: 5;
}

.stat-box-light {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 25px !important;
    border-radius: 24px !important;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03) !important;
    transition: 0.3s ease;
}

.stat-box-light:hover {
    transform: translateY(-5px);
    border-color: #ff8c00 !important;
}

.stat-box-light i {
    font-size: 1.8rem;
    color: #ff8c00;
}

.stat-box-light .s-val {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-main);
    display: block;
    line-height: 1;
}

.stat-box-light .s-lab {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Content Grid Light */
.about-grid-light {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.about-card-light {
    background: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 40px !important;
    border-radius: 30px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02) !important;
}

.about-card-light h2 {
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.about-card-light h2 i {
    color: #ff8c00;
}

.about-card-light p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.key-item-light {
    display: flex;
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 18px;
    margin-top: 15px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.key-item-light i {
    color: #ff8c00;
    font-size: 1.2rem;
}

.team-member-light {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 15px;
    margin-bottom: 15px;
}

.avatar-light {
    width: 50px;
    height: 50px;
    background: #ff8c00;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

/* Warning box light */
.warning-box-light {
    background: #fff !important;
    border: 1px solid #fee2e2 !important;
    border-left: 5px solid #ef4444 !important;
    padding: 20px !important;
    border-radius: 18px !important;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .about-grid-light {
        grid-template-columns: 1fr;
    }

    .about-stats-light {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }
}

/* Wheel Mobile Fixes */
@media (max-width: 500px) {
    .wheel-container {
        transform: scale(0.85);
        margin: -10px auto !important;
    }

    .custom-modal-content {
        padding: 20px 10px !important;
        width: 98% !important;
    }

    .wheel-header h2 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 400px) {
    .wheel-container {
        transform: scale(0.72);
        margin: -30px auto !important;
    }
}

@media (max-width: 350px) {
    .wheel-container {
        transform: scale(0.65);
        margin: -50px auto !important;
    }
}

/* --- PREMIUM POPUP BANNER SYSTEM --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: #111115;
    border-radius: 24px;
    border: 1px solid #ff8c00;
    box-shadow: 0 0 50px rgba(255, 140, 0, 0.2);
    overflow: hidden;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: #fff;
}

.popup-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    text-align: center;
}

/* --- ŞANS ÇARKI VE ÖZEL PENCERE (CUSTOM MODAL) --- */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-modal.show {
    display: flex;
    opacity: 1;
}

.custom-modal-content {
    background: linear-gradient(145deg, #181818, #0a0a0a);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 140, 0, 0.2);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49);
}

.custom-modal.show .custom-modal-content {
    transform: scale(1);
}


.btn-neon-animated {
    background: linear-gradient(45deg, var(--neon-fire), var(--neon-yellow));
    border: none;
    color: #000;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-fire);
    transition: 0.3s;
}

.btn-neon-animated:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--neon-yellow);
}