@import url('https://fonts.googleapis.com/css2?family=Prompt:wght@400;600;700&display=swap');

:root {
    --bg-color: #030203;
    --acc-gold-primary: #F3C600;
    --acc-gold-deep: #D4AF37;
    --text-primary: #FFFFFF;
    --text-secondary: #888888;
    --header-bg: #000000;
    --nav-bg: #0a0a0a;
    --jackpot-bg: #111111;
    --border-gold: 1px solid #D4AF37;
    --font-main: 'Prompt', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Link Styling */
a {
    color: var(--acc-gold-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

/* Header & Navigation (New Layout) */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 5%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    border-bottom: 2px solid var(--acc-gold-primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 42px; width: auto; }

nav { display: flex; align-items: center; }
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
}
nav ul li a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0%; height: 2px;
    background: var(--acc-gold-primary); transition: width 0.3s;
}
nav ul li a:hover::after, nav ul li a.active::after { width: 100%; }
nav ul li a:hover, nav ul li a.active { color: var(--acc-gold-primary); }

.mobile-login-item { display: none; /* hidden on desktop */ }
.header-actions { display: flex; align-items: center; gap: 20px; }

.login-btn-desktop {
    background: linear-gradient(135deg, var(--acc-gold-primary), var(--acc-gold-deep));
    color: #000; padding: 10px 24px; border-radius: 50px; font-weight: 700;
    text-transform: uppercase; font-size: 0.85rem; transition: transform 0.2s;
    text-decoration: none;
}
.login-btn-desktop:hover {
    transform: scale(1.05); color: #000; box-shadow: 0 5px 15px rgba(243, 198, 0, 0.4);
}

.hamburger {
    display: none; flex-direction: column; justify-content: space-between;
    width: 30px; height: 22px; background: transparent; border: none;
    cursor: pointer; z-index: 1001; padding: 0; margin-left: 10px;
}
.hamburger span { width: 100%; height: 3px; background-color: var(--acc-gold-primary); border-radius: 3px; transition: all 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Hero Slider Section */
.hero-slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--acc-gold-primary);
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slider::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 3;
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: var(--acc-gold-primary);
    border: 1px solid var(--acc-gold-primary);
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-nav button:hover {
    background: var(--acc-gold-primary);
    color: black;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.dot.active {
    background: var(--acc-gold-primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--acc-gold-primary);
}



/* Page Section for Full-Width Backgrounds */
.page-section {
    width: 100%;
    background: url('assets/background.png') no-repeat center center fixed;
    background-size: cover;
}

/* Premium Features Section */
.premium-features {
    padding: 20px 5%;
    text-align: center;
}

.section-title {
    color: var(--acc-gold-primary);
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.content-container,
.content-prose {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center headings naturally */
    color: var(--text-secondary);
    line-height: 1.8;
}

.content-prose h1 {
    text-align: center !important;
    color: var(--acc-gold-primary);
    margin-top: 20px;
    margin-bottom: 30px;
    text-transform: uppercase;
    line-height: 1.2;
}

.content-prose h2 {
    text-align: left !important;
    color: var(--acc-gold-primary);
    font-size: 2.1rem;
    text-transform: uppercase;
    margin-top: 70px;
    margin-bottom: 30px;
    line-height: 1.2;
    border-top: 2px solid var(--acc-gold-primary);
    padding-top: 20px;
}

.content-prose h3 {
    text-align: left !important;
    color: #FFFFFF !important;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.content-prose p {
    text-align: left;
    color: #AAAAAA !important; /* Slightly lighter grey for readability, or var(--text-secondary) */
    margin-bottom: 25px;
    line-height: 1.8;
}

.content-prose ul, .content-prose ol {
    text-align: left;
    margin-bottom: 30px;
}

.features-container {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #0a0a0a;
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    border-color: var(--acc-gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 198, 0, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
}

.feature-card h3 {
    color: var(--acc-gold-primary);
    margin-bottom: 15px;
    font-size: 1.6rem;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* Game Grid */
.game-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    padding: 20px 0;
}

.game-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.game-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.game-card img {
    width: 100%;
    border-radius: 12px;
    border: var(--border-gold);
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
}

/* Download Buttons */
.download-btn-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.download-btn-img {
    max-width: 320px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 0 5px rgba(243, 198, 0, 0.2));
}

.download-btn-img:hover {
    transform: scale(1.08) translateY(-10px);
    filter: drop-shadow(0 10px 20px rgba(243, 198, 0, 0.5));
}

/* Footer */
footer {
    background: #000;
    padding: 40px 5%;
    border-top: 1px solid var(--acc-gold-deep);
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    color: var(--acc-gold-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--acc-gold-primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    align-items: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #222; /* Default background */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.social-icon img {
    height: 22px; /* Consistent inner icon size */
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 20px rgba(184, 148, 76, 0.5);
    filter: brightness(1.1);
}

/* Specific brand colors for a "Beautiful" and premium look */
.social-facebook { background-color: #1877F2; }
.social-telegram { background-color: #24A1DE; }
.social-google   { background-color: #FFFFFF; }

.social-google img {
    height: 18px; /* Slightly smaller for the G logo to look balanced */
}

/* Promotions Page Premium Layout */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.promo-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243, 198, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 198, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.promo-card:hover {
    transform: translateY(-15px);
    border-color: var(--acc-gold-primary);
    box-shadow: 0 20px 50px rgba(243, 198, 0, 0.2);
}

.promo-card h2 {
    color: var(--acc-gold-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.promo-card .how-to-claim {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.promo-card .how-to-claim h4 {
    color: var(--acc-gold-primary);
    margin-bottom: 15px;
    font-size: 1rem;
    text-transform: uppercase;
}

.promo-card ol {
    margin-left: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

.promo-card ol li {
    margin-bottom: 10px;
}

.promo-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--acc-gold-primary), var(--acc-gold-deep));
    color: black;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
}

.promo-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(243, 198, 0, 0.4);
}

.rules-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
    border: 1px solid #222;
    text-align: left;
}

.faq-section {
    margin-top: 60px;
    text-align: left;
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 20px;
}

.faq-item h3 {
    color: var(--acc-gold-primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .gold-left {
        left: 5%;
    }

    .gold-right {
        right: 5%;
    }
}
@media (max-width: 768px) {
    header { padding: 0 5%; justify-content: space-between; height: 70px; }
    .logo { justify-content: flex-start; }
    .hamburger { display: flex; }
    .login-btn-desktop { display: none; }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(5, 5, 5, 0.98);
        transition: 0.3s ease-in-out;
        padding: 40px 5%;
        border-bottom: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow-y: auto;
    }
    nav.active { left: 0; }
    
    nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        width: 100%;
    }
    nav ul li a {
        font-size: 1.25rem;
        padding: 15px;
        text-align: center;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.03);
    }
    nav ul li a::after { display: none; }
    nav ul li a:hover, nav ul li a.active {
        background: rgba(243, 198, 0, 0.1);
        color: var(--acc-gold-primary);
    }
    .mobile-login-item { display: block; margin-top: 20px; text-decoration: none; border-radius: 50px;}
    .login-btn-mobile {
        background: linear-gradient(135deg, var(--acc-gold-primary), var(--acc-gold-deep));
        color: #000 !important;
        font-weight: 700 !important;
        text-shadow: none;
        border-radius: 50px !important;
        display: block;
        padding: 15px;
    }

    /* Hero Slider Mobile Optimization */
    .hero-slider {
        height: 250px;
    }

    .slider-nav button {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 6px;
    }

    .dot {
        width: 7px;
        height: 7px;
    }

    /* Content Prose Mobile Refinement */
    .content-prose {
        padding: 0 20px !important;
    }

    .content-prose h1 {
        font-size: 1.8rem !important;
        margin-top: 30px !important;
    }

    .content-prose h2 {
        font-size: 1.5rem !important;
        margin-top: 25px !important;
    }

    .content-prose h3 {
        font-size: 1.25rem !important;
        margin-top: 20px !important;
    }

    .section-title {
        font-size: 1.8rem !important;
        padding: 0 15px;
    }

    .download-btn-container {
        gap: 15px;
        padding: 0 20px;
    }

    .download-btn-img {
        max-width: 100%;
    }

    /* 3rd-tier Mobile Grid Catalog (Small screens) */
    @media (max-width: 480px) {
        .game-grid {
            grid-template-columns: repeat(3, 1fr) !important;
        }
    }

    /* 4-Column Mobile Grid Catalog (Standard mobile) */
    .game-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 8px;
        padding: 10px 0;
    }

    .game-card img {
        border-radius: 6px;
        border-width: 1px;
    }

    /* Footer Mobile Refinement */
    footer {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-col {
        min-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/* Premium Responsive Tables */
.premium-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin: 40px 0;
    border-radius: 15px;
    border: 1px solid rgba(243, 198, 0, 0.2);
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(5px);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Force scroll on mobile */
    text-align: left;
}

.premium-table th {
    background: rgba(243, 198, 0, 0.1);
    color: var(--acc-gold-primary);
    padding: 15px 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--acc-gold-primary);
}

.premium-table td {
    padding: 15px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .game-grid {
        grid-template-columns: repeat(3, 1fr) !important; /* Better thumbnail size on very small screens */
    }
    
    .hero-slider {
        height: 200px;
    }
}
/* WhatsApp CTA Styles */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background-color: #128C7E;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-mobile-nav {
    display: none; /* Hidden on PC */
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: flex !important;
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

/* Homepage CTA Buttons Below Hero */
.homepage-cta {
    padding: 20px;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-container {
    display: flex;
    gap: 20px;
    max-width: 1000px;
    width: 100%;
}

.cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.whatsapp-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white !important;
}

.login-cta {
    background: linear-gradient(135deg, #d4af37, #aa8c2c);
    color: #000 !important;
}

.cta-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.15);
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.cta-icon {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .homepage-cta {
        padding: 20px 15px;
    }
    
    .cta-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        padding: 15px;
        font-size: 1.1rem;
    }

    .cta-icon {
        width: 22px;
        height: 22px;
    }
}


/* Text Wrapping Fixes for Headers */
.section-title, .content-prose h1, .content-prose h3 { text-wrap: balance; }


/* Global Heading Colors Enforcer */
h1, h2, .section-title { color: var(--acc-gold-primary) !important; }
h3 { color: var(--text-secondary) !important; }


/* Global Heading Colors & Formatting Enforcer */
.section-title, .content-prose h1, .content-prose h3 { text-wrap: balance; }
h1, h2, .section-title, .content-prose h1, .content-prose h2 { color: var(--acc-gold-primary) !important; }
h3, .content-prose h3 { color: #FFFFFF !important; font-weight: 700 !important; }
p, .content-prose p { color: #AAAAAA !important; }
