/* Global Styles */
:root {
    /* Ganga Book Theme Colors */
    --primary-bg: #030b17;       /* Deepest Navy/Black */
    --secondary-bg: #061229;     /* Deep Blue for sections */
    --accent-gold: #d7417e;      /* Pure Gold */
    --accent-blue: #00BFFF;      /* Deep Sky Blue */
    --text-white: #ffffff;
    --text-gray: #e0e0e0;        /* Lighter Gray for better readability */
    
    /* Fonts */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-display: 'Anton', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--primary-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Header */
header {
    background-color: rgba(3, 11, 23, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid var(--accent-gold);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.brand-logo {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800; /* Extra bold */
    color: var(--text-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    line-height: 1;
}

.brand-logo .highlight-gold {
    color: var(--accent-gold);
    background: -webkit-linear-gradient(#d7417e, #b8860b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; 
}

.hero-brand-logo {
    font-size: 60px;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.brand-logo-img {
    width: 200px;
    height: auto;
    max-height: 60px;
    display: block;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    object-fit: contain;
}

.brand-logo-img:hover {
    transform: scale(1.05);
}

/* Header Logo Specific */
.header-logo {
    width: 220px; 
    height: auto;
    max-height: 70px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brand-logo-img, .header-logo {
        width: 160px;
        max-height: 50px;
    }
}

/* Game Logo Styling */
.game-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
    padding: 5px;
    position: relative;
    background: radial-gradient(circle, rgba(255, 185, 14, 0.1) 0%, transparent 70%);
}

.game-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 185, 14, 0.3));
    transition: all 0.3s ease;
}

.game-card:hover .game-logo-img {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 185, 14, 0.6));
}

.game-card:hover .game-logo {
     background: radial-gradient(circle, rgba(255, 185, 14, 0.2) 0%, transparent 70%);
}

.hero-logo-img {
    max-width: 450px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
    animation: logoFloat 4s ease-in-out infinite;
    display: none;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}


nav ul {
    display: flex;
    gap: 25px;
}

nav ul li a {
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--text-white);
}

.btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 15px;
}

.btn-whatsapp-header {
    background: #25D366;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp-header::before {
    content: '\f232'; /* FontAwesome WhatsApp Icon fallback or simple SVG */
    font-family: 'Font Awesome 5 Brands'; 
    font-weight: 400;
    font-size: 18px;
}

.btn-whatsapp-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20bd5a;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-icon:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-icon:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-icon:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section Refinements */
.hero-logo-large {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(6, 18, 41, 0.8));
}

.hero-tagline {
    font-family: var(--font-primary);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 120px; /* Add space since logo is in background */
    text-transform: uppercase;
    display: none; /* Hidden because text is in the background image */
    text-shadow: 
        0 2px 10px rgba(0,0,0,0.9),
        0 4px 20px rgba(0,0,0,0.7),
        0 0 30px rgba(255, 185, 14, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary-lg {
    background: linear-gradient(135deg, #FFB90E, #d7417e);
    color: #000;
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 185, 14, 0.4);
    text-transform: uppercase;
    font-weight: 800;
    border: none;
    cursor: pointer;
}

.btn-primary-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255, 185, 14, 0.6);
}

.btn-secondary-lg {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    font-size: 18px;
    padding: 15px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.btn-secondary-lg:hover {
    background: rgba(255, 185, 14, 0.1);
    color: #fff;
    border-color: #fff;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section Restored */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('assets/img/hero-user-selected.png') no-repeat center center/cover;
    overflow: hidden;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Slightly darker for better button contrast */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 350px; /* Push buttons down to align with design */
    /* Hide content since background already has everything */
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 20px;
    }
    /* Move image up on mobile */
    .hero {
        background-position: center top !important;
    }
    .hero-content {
        padding-top: 400px; /* Push buttons further down on mobile */
    }
    .hero-logo-large {
        max-width: 250px;
    }
    /* Responsive Logo Images */
    .hero-logo-img {
        max-width: 300px;
        width: 90%;
    }
    .header-logo {
        max-height: 40px;
        width: auto;
        padding: 0;
    }
    .btn-primary-lg, .btn-secondary-lg {
        width: 100%;
        max-width: 320px;
        font-size: 14px;
        padding: 12px 20px;
    }
    /* Show mobile menu toggle button */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide header actions on very small screens */
    .header-actions {
        display: none;
    }
    
    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 64px; /* Below header */
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 64px);
        background: rgba(6, 18, 41, 0.98);
        backdrop-filter: blur(15px);
        border-left: 2px solid var(--accent-gold);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu ul li {
        border-bottom: 1px solid rgba(255, 185, 14, 0.2);
    }
    
    .nav-menu ul li a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        color: var(--text-gray);
        transition: all 0.3s ease;
    }
    
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active {
        background: rgba(255, 185, 14, 0.1);
        color: var(--accent-gold);
        padding-left: 30px;
    }
}

.platform-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 30px;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-gold);
    color: #000;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.platform-card {
    background-color: #0a1e3f;
    border: 1px solid #1c3d72;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}

.platform-card.card-white {
    background-color: #fff;
    border-color: #fff;
}

.card-logo {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1;
    color: var(--text-white);
    text-transform: uppercase;
}

.card-logo.text-black {
    color: #000;
}

.min-sharing {
    font-size: 10px;
    color: var(--text-gray);
    text-align: center;
    text-transform: uppercase;
}

.min-sharing.text-black {
    color: #333;
}

.share-val {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
}

.min-sharing.text-black .share-val {
    color: #000;
}

.card-btn {
    background-color: var(--accent-gold);
    color: #000;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    font-family: var(--font-primary);
}

.card-btn.btn-dark {
    background-color: #061229;
    color: #fff;
}

/* Logo Slider */
.logo-slider-wrap {
    background: linear-gradient(90deg, #030916 0%, #061229 50%, #030916 100%);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 185, 14, 0.3);
    position: relative;
    border-top: 1px solid rgba(255, 185, 14, 0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Ticker Wrap - Enhanced */
.ticker-wrap {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
    box-shadow: 
        0 4px 15px rgba(255, 185, 14, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ticker-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 185, 14, 0.1) 0%, 
        transparent 20%, 
        transparent 80%, 
        rgba(255, 185, 14, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
}

.logo-slider {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.logo-item {
    display: inline-block;
    margin: 0 40px;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text-gray);
    text-transform: uppercase;
    opacity: 0.5;
    transition: all 0.3s;
    cursor: default;
}

.logo-item:hover {
    color: var(--accent-gold);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Ticker Content Styles - Enhanced */
.ticker-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 35s linear infinite;
    position: relative;
    z-index: 2;
}

.ticker-item {
    display: inline-block;
    margin: 0 60px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--accent-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 185, 14, 0.5),
        0 0 20px rgba(255, 185, 14, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.8);
    animation: tickerGlow 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    color: #fff;
    transform: scale(1.1);
    text-shadow: 
        0 0 15px rgba(255, 185, 14, 0.8),
        0 0 30px rgba(255, 185, 14, 0.5),
        0 2px 4px rgba(0, 0, 0, 0.8);
}

@keyframes tickerGlow {
    0%, 100% { 
        text-shadow: 
            0 0 10px rgba(255, 185, 14, 0.5),
            0 0 20px rgba(255, 185, 14, 0.3),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
    50% { 
        text-shadow: 
            0 0 20px rgba(255, 185, 14, 0.8),
            0 0 40px rgba(255, 185, 14, 0.5),
            0 2px 4px rgba(0, 0, 0, 0.8);
    }
}

/* Other Products */
.other-products {
    background-color: #040b1a; /* Very Dark Blue */
    padding: 60px 0;
}

.products-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-list ul li {
    color: var(--accent-gold);
    font-size: 13px;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 0.3s;
}

.products-list ul li:hover {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .products-list {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Casino Commission Promo */
.commission-promo {
    background: linear-gradient(90deg, #061229 0%, #0a1e3f 100%);
    padding: 60px 0;
    border-top: 1px solid var(--accent-gold);
    border-bottom: 1px solid var(--accent-gold);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.commission-promo .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.comm-col-left, .comm-col-right {
    flex: 1;
    min-width: 300px;
}

.comm-brand {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.comm-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 185, 14, 0.3);
}

.comm-rates {
    margin-bottom: 30px;
}

.rate-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    margin-bottom: 10px;
    border-left: 4px solid var(--accent-gold);
}

.rate-row .range {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-primary);
}

.rate-row .percent {
    font-size: 32px;
    font-weight: 900;
    color: var(--accent-gold);
}

.rate-row .percent.highlight {
    font-size: 40px;
    text-shadow: 0 0 15px var(--accent-gold);
}

.comm-min {
    display: flex;
    gap: 20px;
}

.min-label {
    background: #000;
    border: 1px solid #fff;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(-90deg) translate(-20px, 0);
    transform-origin: left bottom;
    white-space: nowrap;
    margin-left: 20px;
}

.pay-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-gold);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}
.rules-list li {
    background: rgba(255, 185, 14, 0.1);
    margin-bottom: 10px;
    padding: 10px;
    border-left: 2px solid var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
}

.rules-list li::before {
    content: '►';
    color: var(--accent-gold);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .commission-promo .container {
        flex-direction: column;
    }
    .comm-title {
        font-size: 36px;
    }
}

/* Hero Section Update */
.hero-huge-text {
    font-family: var(--font-display);
    font-size: 120px;
    line-height: 0.9;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.badge-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.badge-blue { background: var(--accent-blue); }
.badge-ice { background: #000; border: 2px solid var(--accent-blue); }

.btn-outline-lg {
    padding: 15px 35px;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline-lg:hover {
    background: var(--accent-gold);
    color: #000;
}

/* Footer Update */
footer {
    background-color: #030916;
    color: var(--text-gray);
    padding-top: 60px;
    border-top: 1px solid #333;
}

.footer-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    flex: 1;
    min-width: 300px;
}

.footer-cta-title {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-main-title {
    color: #fff;
    font-size: 32px;
    font-family: var(--font-primary);
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-info p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-info strong {
    color: var(--text-gray);
    margin-right: 10px;
}

.footer-form {
    background: #0a1e3f;
    padding: 30px;
    border-radius: 10px;
}

.footer-form input, .footer-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
}

.btn-send {
    width: 100%;
    padding: 15px;
    background: var(--accent-gold);
    color: #000;
    font-weight: 800;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-primary);
}

.btn-send:hover {
    background: #d49500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--secondary-bg);
    border: 2px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .footer-layout {
        flex-direction: column;
    }
    
    .hero-huge-text {
        font-size: 60px;
    }
}

/* Sticky Support Icons - Enhanced */
.brand-logo-lg {
    font-family: var(--font-primary);
    font-size: 100px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    color: var(--text-white);
    text-shadow: 0 0 30px rgba(0, 188, 212, 0.4); /* Blue glow */
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.brand-logo-lg .highlight-gold {
    color: var(--accent-gold);
    display: block; /* Stacks vertically by default as requested */
    font-size: 100px;
    
    /* Gold Gradient Effect */
    background: linear-gradient(to bottom, #d7417e 0%, #f1c40f 50%, #b8860b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

@media (max-width: 768px) {
    /* Responsive Logo Fixes */
    .brand-logo-lg {
        font-size: 18vw; /* Dynamic size for mobile to fit stacked text */
        margin-bottom: 20px;
        line-height: 1;
    }

    .brand-logo-lg .highlight-gold {
        font-size: 18vw; /* Ensure gold text also scales */
    }
    
    .brand-logo {
        font-size: 24px;
    }
}

/* Sticky Support Icons - Enhanced */
.sticky-support {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.support-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.6),
        0 0 20px rgba(0,0,0,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: supportPulse 3s ease-in-out infinite;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.support-btn svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

.support-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.8),
        0 0 40px rgba(255, 255, 255, 0.4);
    animation: none;
}

@keyframes supportPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 6px 20px rgba(0,0,0,0.6),
            0 0 20px rgba(0,0,0,0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 8px 25px rgba(0,0,0,0.7),
            0 0 30px rgba(0,0,0,0.5);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow: 
        0 6px 20px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(0,0,0,0.4);
}

.whatsapp-btn:hover {
    box-shadow: 
        0 10px 30px rgba(37, 211, 102, 0.6),
        0 0 40px rgba(37, 211, 102, 0.4);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc, #005f8f);
    box-shadow: 
        0 6px 20px rgba(0, 136, 204, 0.4),
        0 0 20px rgba(0,0,0,0.4);
}

.telegram-btn:hover {
    box-shadow: 
        0 10px 30px rgba(0, 136, 204, 0.6),
        0 0 40px rgba(0, 136, 204, 0.4);
}

@media (max-width: 768px) {
    .sticky-support {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
}

/* Popup Styles - Enhanced Premium */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
    display: none; /* Hidden by default, JS will show */
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: relative;
    width: 90%;
    max-width: 650px;
    background: transparent;
    border-radius: 15px;
    text-align: center;
    animation: popupShake 0.6s ease;
    filter: drop-shadow(0 0 50px rgba(255, 185, 14, 0.6));
}

@keyframes popupShake {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: scale(1.02) rotate(-1deg); }
    20%, 40%, 60%, 80% { transform: scale(1.02) rotate(1deg); }
}

.popup-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 3px solid var(--accent-gold);
    box-shadow: 
        0 0 40px rgba(255, 185, 14, 0.5),
        0 0 80px rgba(255, 185, 14, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.8);
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 
            0 0 40px rgba(255, 185, 14, 0.5),
            0 0 80px rgba(255, 185, 14, 0.3),
            0 10px 30px rgba(0, 0, 0, 0.8);
    }
    50% {
        box-shadow: 
            0 0 60px rgba(255, 185, 14, 0.8),
            0 0 120px rgba(255, 185, 14, 0.5),
            0 10px 30px rgba(0, 0, 0, 0.8);
    }
}

.close-popup {
    position: absolute;
    top: -18px;
    right: -18px;
    background: linear-gradient(135deg, var(--accent-gold), #d49500);
    color: #000;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: bold;
    line-height: 45px;
    cursor: pointer;
    box-shadow: 
        0 4px 15px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 185, 14, 0.6);
    transition: all 0.3s;
    border: 2px solid #fff;
}

.close-popup:hover {
    transform: scale(1.15) rotate(90deg);
    background: #fff;
    color: #000;
    box-shadow: 
        0 6px 20px rgba(0,0,0,1),
        0 0 30px rgba(255, 255, 255, 0.8);
}

.popup-cta {
    display: inline-block;
    margin-top: -30px;
    position: relative;
    z-index: 2;
    padding: 18px 50px !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    letter-spacing: 2px;
    animation: ctaPulse 1.5s ease-in-out infinite;
    box-shadow: 
        0 0 25px rgba(255, 185, 14, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.8) !important;
}

.popup-cta:hover {
    animation: none;
    transform: scale(1.08) translateY(-2px);
}

@keyframes ctaPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 
            0 0 25px rgba(255, 185, 14, 0.6),
            0 6px 20px rgba(0, 0, 0, 0.8);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 
            0 0 40px rgba(255, 185, 14, 0.9),
            0 8px 25px rgba(0, 0, 0, 0.9);
    }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* WhatsApp Popup Styles */
.whatsapp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.whatsapp-popup-content {
    background: linear-gradient(135deg, #0a1e3f, #061229);
    width: 90%;
    max-width: 400px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 185, 14, 0.3);
    animation: popupSlideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-whatsapp-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--text-gray);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-whatsapp-popup:hover {
    color: var(--accent-gold);
}

.whatsapp-header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.whatsapp-header h3 {
    color: var(--accent-gold);
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 5px;
}

.whatsapp-header p {
    color: var(--text-gray);
    font-size: 14px;
}

.whatsapp-numbers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.whatsapp-contact-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.whatsapp-contact-card:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateX(5px);
}

.wa-icon {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.wa-details {
    display: flex;
    flex-direction: column;
}

.wa-label {
    color: var(--text-gray);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

.wa-number {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-primary);
}

/* ============================================
   NEW PAGES STYLES
   ============================================ */

/* Page Hero - Generic for inner pages */
.page-hero {
    position: relative;
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #061229 0%, #0a1e3f 50%, #061229 0%);
    text-align: center;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-gold);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 185, 14, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(110, 193, 228, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 64px;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-hero p {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 500;
}

.highlight-gold {
    color: var(--accent-gold);
}

/* Content Block - reusable container */
.content-block {
    display: block !important;
    padding: 60px 0;
}

/* Section Title */
.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Story Section */
.about-story {
    background: var(--primary-bg);
}

.story-content {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.story-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: linear-gradient(135deg, #0a1e3f 0%, #061229 100%);
    border: 1px solid rgba(255, 185, 14, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(255, 185, 14, 0.2);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--secondary-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 185, 14, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.feature-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Our Values */
.our-values {
    background: var(--primary-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.1) 0%, transparent 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 30px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.2) 0%, transparent 100%);
}

.value-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: rgba(255, 185, 14, 0.3);
    line-height: 1;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-gray);
    font-size: 14px;
}

/* Partners */
.partners-section {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(255, 185, 14, 0.2);
}

.partners-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 40px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--text-gray);
    transition: all 0.3s ease;
    border: 1px solid #fff;
}

.partner-logo:hover {
    color: var(--accent-gold);
    background: rgba(255, 185, 14, 0.1);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.service-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.service-section.alt-bg {
    background: var(--secondary-bg);
}

.service-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.service-badge {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.service-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.sf-item {
    background: rgba(255, 185, 14, 0.1);
    padding: 10px 25px;
    border-radius: 30px;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
}

.service-sports-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.sport-card {
    background: linear-gradient(135deg, #0a1e3f 0%, #061229 100%);
    border: 1px solid rgba(255, 185, 14, 0.2);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    transition: all 0.3s ease;
}

.sport-card:hover {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 185, 14, 0.3);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.game-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 185, 14, 0.2);
}

.game-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.game-card h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Slot Highlights */
.slot-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.slot-highlight {
    text-align: center;
}

.sh-value {
    display: block;
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-gold);
}

.sh-label {
    color: var(--text-gray);
    font-size: 14px;
    text-transform: uppercase;
}

/* ESports Tags */
.esports-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.esport-tag {
    background: linear-gradient(135deg, #6EC1E4 0%, #0088cc 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

/* VIP Section */
.vip-section {
    background: linear-gradient(135deg, #030916 0%, #061229 50%, #030916 100%);
    padding: 80px 0;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.vip-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 18px;
    margin-top: -20px;
    margin-bottom: 50px;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vip-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.vip-card.featured {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.15) 0%, rgba(255, 185, 14, 0.05) 100%);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.vip-tier {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 25px;
}

.vip-benefit {
    color: var(--text-gray);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.vip-card.featured .vip-benefit {
    color: #fff;
}

/* ============================================
   PROMOTIONS PAGE STYLES
   ============================================ */

.promo-hero {
    background: linear-gradient(135deg, #061229 0%, #1a0a2e 50%, #061229 100%);
}

/* Featured Promo */
.featured-promo {
    background: var(--primary-bg);
    padding: 60px 0;
}

.promo-banner {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.15) 0%, rgba(255, 185, 14, 0.05) 100%);
    border: 2px solid var(--accent-gold);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 185, 14, 0.1) 0%, transparent 70%);
    animation: promoGlow 5s ease-in-out infinite;
}

@keyframes promoGlow {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10%, 10%); }
}

.promo-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.promo-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.promo-amount {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
}

.promo-amount .currency {
    font-size: 36px;
    color: var(--accent-gold);
    vertical-align: top;
}

.promo-amount .amount {
    font-family: var(--font-display);
    font-size: 100px;
    color: var(--accent-gold);
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 185, 14, 0.5);
}

.promo-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.promo-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.pf-item {
    color: #fff;
    font-weight: 600;
}

/* Promotions Grid */
.promotions-grid-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.promo-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, #0a1e3f 0%, #061229 100%);
    border: 1px solid rgba(255, 185, 14, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.promo-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 185, 14, 0.15);
}

.promo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.promo-icon {
    font-size: 36px;
}

.promo-tag {
    background: rgba(255, 185, 14, 0.2);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 800;
}

.promo-card-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.promo-card-value {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.promo-card-desc {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-card-btn {
    display: inline-block;
    background: var(--accent-gold);
    color: #000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.promo-card-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* Loyalty Section */
.loyalty-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.loyalty-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.loyalty-tier {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.loyalty-tier.featured {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.15) 0%, transparent 100%);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.tier-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.tier-name {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.tier-points {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-benefits {
    list-style: none;
}

.tier-benefits li {
    color: var(--text-gray);
    padding: 8px 0;
    font-size: 14px;
}

.loyalty-tier.featured .tier-benefits li {
    color: #fff;
}

/* Promo Terms */
.promo-terms {
    background: var(--secondary-bg);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-terms h3 {
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 20px;
}

.promo-terms ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.promo-terms li {
    color: var(--text-gray);
    font-size: 13px;
    padding-left: 20px;
    position: relative;
}

.promo-terms li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Cards */
/* Contact Cards - Green Pill Redesign */
.contact-cards-section {
    background: linear-gradient(180deg, #061229 0%, #0a1e3f 100%); /* Deep Blue Gradient */
    padding: 60px 0;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 Columns */
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    border-radius: 50px; /* Pill Shape */
    background: linear-gradient(90deg, #25D366 0%, #128C7E 100%); /* Green Gradient */
    padding: 10px; /* Space for the border effect if needed, mostly handled by internal link padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    border-color: transparent; /* Override previous styles */
}

.wa-card-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.wa-icon-circle {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.wa-icon-circle i {
    color: #25D366;
    font-size: 28px;
}

.wa-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.wa-name {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: capitalize;
}

.wa-action {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* Redesign Section Header */
.contact-header-redesign {
    text-align: center;
    margin-bottom: 50px;
}

.contact-note-box {
    margin: 30px auto 0;
    max-width: 800px;
    padding: 20px;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
}

.note-important {
    color: #ff4d4d;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.ch-subtitle {
    display: block;
    color: #ff0000; /* Red */
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.ch-title {
    display: block;
    color: #fff;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 400; /* Font usually carries the weight */
    text-transform: uppercase;
    line-height: 1;
}

/* Remove old styles references by overwriting or ensuring they don't conflict */
.cc-icon, .cc-hours { display: none; }

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 15px; /* Reduce gap */
    }
    
    .ch-title {
        font-size: 32px; /* Smaller title */
    }

    .contact-card {
        padding: 5px; /* Minimal padding */
    }

    .wa-card-link {
        padding: 8px 15px;
    }

    .wa-icon-circle {
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }

    .wa-icon-circle i {
        font-size: 22px;
    }

    .wa-name {
        font-size: 16px;
    }

    .wa-action {
        font-size: 10px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: var(--secondary-bg);
    padding: 80px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.cf-intro {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-page-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 15px rgba(255, 185, 14, 0.2);
}

.contact-page-form select {
    cursor: pointer;
}

.contact-page-form select option {
    background: var(--primary-bg);
    color: #fff;
}

.contact-page-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

/* Support Info Boxes */
.support-info-box {
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.1) 0%, transparent 100%);
    border: 1px solid rgba(255, 185, 14, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
}

.support-info-box h3 {
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 15px;
}

.support-info-box p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.btn-secondary-sm {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary-sm:hover {
    background: var(--accent-gold);
    color: #000;
}

.quick-support-btns {
    display: flex;
    gap: 10px;
}

.qs-btn {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 13px;
    color: #fff;
    transition: all 0.3s ease;
}

.qs-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.qs-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #005f8f);
}

.qs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Section */
.faq-section {
    background: var(--primary-bg);
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-gold);
}

.faq-item h4 {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
}

/* Support Hours */
.support-hours-section {
    background: #000; /* Match new black theme */
    padding: 60px 0;
    border-top: 1px solid #1a1a1a;
}

.support-hours-box {
    background: linear-gradient(135deg, #0a1e3f 0%, #061229 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto; /* Center the box itself */
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.support-hours-box h3 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours-grid {
    display: flex; /* Changed from grid to flex */
    justify-content: center;
    gap: 30px;
}

.hour-item {
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.05); /* Subtle white bg */
    border-radius: 50px; /* Pill shape */
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.hour-item .channel {
    color: #25D366; /* WhatsApp Green */
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.hour-item .hours {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.hour-item .channel {
    display: block;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.hour-item .hours {
    color: var(--accent-gold);
    font-size: 14px;
}

/* ============================================
   RESPONSIVE STYLES FOR NEW PAGES
   ============================================ */

@media (max-width: 1024px) {
    .story-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-sports-grid,
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vip-tiers,
    .loyalty-tiers {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .promo-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hours-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero h1 .highlight-gold {
        white-space: nowrap;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .story-stats,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .service-sports-grid,
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vip-tiers,
    .loyalty-tiers,
    .promo-cards-grid,
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .vip-card.featured,
    .loyalty-tier.featured {
        transform: none;
    }
    
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-page-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-amount .amount {
        font-size: 64px;
    }
    
    .promo-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .slot-highlights {
        flex-direction: column;
        gap: 30px;
    }
    
    .promo-terms ul {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   LOGIN / SIGNUP PAGE STYLES
   ============================================ */

.auth-section {
    min-height: 100vh;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, #061229 0%, #0a1e3f 50%, #061229 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container {
    width: 100%;
    max-width: 480px;
    background: linear-gradient(135deg, rgba(10, 30, 63, 0.9) 0%, rgba(6, 18, 41, 0.95) 100%);
    border: 1px solid rgba(255, 185, 14, 0.3);
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 5px;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: var(--text-gray);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.auth-tab.active {
    background: var(--accent-gold);
    color: #000;
}

.auth-tab:hover:not(.active) {
    color: #fff;
}

/* Auth Form Container */
.auth-form-container {
    animation: fadeIn 0.3s ease;
}

.auth-form-container.hidden {
    display: none;
}

.auth-form-container h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 30px;
}

/* Form Groups */
.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.auth-form label {
    display: block;
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
}

.auth-form input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: all 0.3s ease;
}

.auth-form input:focus {
    border-color: var(--accent-gold);
    outline: none;
    box-shadow: 0 0 20px rgba(255, 185, 14, 0.2);
}

.auth-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me,
.terms-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    cursor: pointer;
}

.remember-me input,
.terms-agree input {
    width: auto;
    accent-color: var(--accent-gold);
}

.forgot-password {
    color: var(--accent-gold);
    font-size: 14px;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.terms-agree a {
    color: var(--accent-gold);
}

/* Auth Button */
.auth-btn {
    width: 100%;
    padding: 18px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.auth-divider span {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 14px;
}

/* Quick Login */
.quick-login {
    text-align: center;
    margin-bottom: 25px;
}

.quick-login p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.quick-login-btns {
    display: flex;
    gap: 15px;
}

.quick-btn {
    flex: 1;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.quick-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #005f8f);
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Auth Switch */
.auth-switch {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
}

.auth-switch a {
    color: var(--accent-gold);
    font-weight: 700;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* Auth Promo Banner */
.auth-promo {
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(255, 185, 14, 0.15) 0%, rgba(255, 185, 14, 0.05) 100%);
    border: 1px solid var(--accent-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.auth-promo .promo-icon {
    font-size: 40px;
}

.auth-promo .promo-text h4 {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 5px;
}

.auth-promo .promo-text p {
    color: #fff;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 520px) {
    .auth-container {
        padding: 30px 20px;
    }
    
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .quick-login-btns {
        flex-direction: column;
    }
}

/* ============================================
   IMAGES STYLING FOR ALL PAGES
   ============================================ */

/* Full Width Images */
.full-width-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid rgba(255, 185, 14, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin: 30px 0;
    transition: all 0.3s ease;
}

.full-width-image:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 15px 50px rgba(255, 185, 14, 0.3);
    transform: scale(1.02);
}

/* Story Image */
.story-image {
    max-width: 900px;
    margin: 40px auto;
}

/* Service Images */
.service-image {
    max-width: 800px;
    margin: 40px auto;
}

/* Promo Visual */
.promo-visual {
    max-width: 600px;
    margin: 30px auto 0;
}

.promo-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 185, 14, 0.4));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Support Image Section */
.support-image-section {
    background: var(--secondary-bg);
    padding: 40px 0;
}

@media (max-width: 768px) {
    .full-width-image {
        margin: 20px 0;
        border-radius: 10px;
    }
}

/* Updated About Page Styles */
.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.story-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 2px solid var(--accent-gold);
}

.story-promo-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-wrap:hover .story-promo-img {
    transform: scale(1.05);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 18px;
}

/* Payment Methods Styles */
.payment-methods {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--primary-bg) 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 185, 14, 0.2);
    border-bottom: 1px solid rgba(255, 185, 14, 0.2);
}

.payments-flex {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.payment-method-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 185, 14, 0.2);
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 180px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-method-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 185, 14, 0.1);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 20px rgba(255, 185, 14, 0.1);
}

.p-icon {
    font-size: 40px;
    filter: drop-shadow(0 0 10px rgba(255, 185, 14, 0.5));
}

.p-img-icon {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 185, 14, 0.3));
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.p-icon-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.p-icon-group .p-img-icon {
    height: 40px; /* Smaller for grouped icons */
    margin-bottom: 0;
}

.payment-method-item:hover .p-img-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 185, 14, 0.6));
}

.p-name {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
    }
    .story-image-wrap {
        order: -1;
    }
}

@media (max-width: 576px) {
    .payment-method-item {
        width: 100%;
        padding: 20px;
    }
}

/* ============================================
   WHATSAPP SUPPORT SECTION STYLES
   ============================================ */

.whatsapp-support {
    background-color: #000;
    padding: 80px 0;
    text-align: center;
    border-top: 2px solid var(--accent-gold);
    border-bottom: 2px solid var(--accent-gold);
}

.wa-top-label {
    color: #ff3b3b;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
    font-size: 18px;
}

.wa-support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.wa-card-item {
    background: linear-gradient(to right, #25D366 0%, #128C7E 100%);
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.3),
        inset 0 -4px 0 rgba(0,0,0,0.2);
    border: 2px solid rgba(255,255,255,0.1);
}

.wa-card-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 10px 25px rgba(37, 211, 102, 0.5),
        inset 0 -2px 0 rgba(0,0,0,0.2);
}

.wa-card-icon {
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.wa-card-icon svg {
    width: 35px;
    height: 35px;
}

.wa-card-text {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.wa-card-name {
    color: #fff;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.2;
}

.wa-card-chat {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.support-footer-text {
    margin-top: 60px;
}

.ask-query {
    color: #ff3b3b;
    font-family: var(--font-primary);
    font-size: 40px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.support-footer-text p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Animations */
@keyframes pulse-wa {
    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);
    }
}

.pulse-animation {
    animation: pulse-wa 2s infinite;
}

@media (max-width: 768px) {
    .wa-support-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .wa-card-name {
        font-size: 18px;
    }
    
    .ask-query {
        font-size: 28px;
    }
    
    .support-footer-text p {
        font-size: 18px;
    }
}

/* WhatsApp Popup Styles New */
.whatsapp-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-popup.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: popupSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popupSlideIn {
    from { transform: scale(0.8) translateY(20px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.popup-header {
    background: #075E54; /* WhatsApp Color */
    padding: 20px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup-logo {
    width: 120px;
    margin-bottom: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}

.popup-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.popup-body {
    padding: 20px;
    max-height: 60vh;
    overflow-y: auto;
    background: #ECE5DD; /* WhatsApp Chat Background color approximate */
}

.popup-info {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 10px;
}

.agent-btn {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #ddd;
}

.agent-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #25D366;
}

.agent-icon {
    font-size: 24px;
}

.agent-details {
    display: flex;
    flex-direction: column;
}

.agent-name {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.agent-status {
    font-size: 11px;
    color: #25D366;
    font-weight: 600;
}

.agent-status::before {
    content: '•';
    margin-right: 3px;
    font-size: 14px;
}

.popup-footer {
    padding: 15px;
    text-align: center;
    font-size: 12px;
    color: #666;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.close-popup:hover {
    color: #eee;
    transform: scale(1.1);
}

/* Scrollbar for popup body */
.popup-body::-webkit-scrollbar {
    width: 6px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

/* Ensure mobile responsiveness */
@media (max-width: 480px) {
    .agents-grid {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
    }
}

/* ========================================= */
/* WhatsApp Popup Overlay Styles            */
/* ========================================= */
.whatsapp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-content {
    background: linear-gradient(135deg, #061229 0%, #0a1e3f 100%);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--accent-gold);
    animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.close-whatsapp-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: var(--accent-gold);
    cursor: pointer;
    background: none;
    border: none;
    z-index: 10;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-whatsapp-popup:hover {
    color: #fff;
    transform: rotate(90deg) scale(1.2);
}

.whatsapp-header {
    background: linear-gradient(135deg, var(--accent-gold), #b8860b);
    padding: 25px 20px;
    border-radius: 15px 15px 0 0;
    text-align: center;
}

.whatsapp-header h3 {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.whatsapp-numbers {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.whatsapp-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.whatsapp-contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.wa-icon {
    font-size: 40px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    border-radius: 50%;
    flex-shrink: 0;
}

.wa-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wa-label {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.wa-number {
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-popup-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .whatsapp-header h3 {
        font-size: 18px;
    }
    
    .whatsapp-numbers {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }
    
    .whatsapp-contact-card {
        padding: 12px;
    }
    
    .wa-icon {
        font-size: 35px;
        width: 45px;
        height: 45px;
    }
    
    .wa-label {
        font-size: 14px;
    }
    
    .wa-number {
        font-size: 12px;
    }
}

/* Scrollbar for popup */
.whatsapp-popup-content::-webkit-scrollbar {
    width: 8px;
}

.whatsapp-popup-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.whatsapp-popup-content::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 10px;
}

.whatsapp-popup-content::-webkit-scrollbar-thumb:hover {
    background: #b8860b;
}

/* Live Casino Image Animations */
.live-casino-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.live-casino-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: casinoGlow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes casinoGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.8;
    }
}

.live-casino-animated {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.live-casino-image-wrapper:hover .live-casino-animated {
    transform: scale(1.05);
    animation: none;
}

.live-casino-image-wrapper:hover .live-casino-glow {
    animation-duration: 2s;
}

.live-casino-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.4), transparent);
    animation: shimmer 3s infinite;
    z-index: 3;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Casino Badge Realistic Styling */
.casino-badge {
    background: linear-gradient(135deg, #d7417e 0%, #FFA500 50%, #FF8C00 100%);
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3),
        inset 0 5px 15px rgba(255, 255, 255, 0.4);
    position: relative;
    animation: casinoBadgePulse 3s ease-in-out infinite;
}

.casino-badge::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4), transparent 50%);
    pointer-events: none;
}

.casino-badge i {
    font-size: 60px !important;
    color: #2C0A0A;
    text-shadow: 
        0 2px 4px rgba(255, 255, 255, 0.8),
        0 0 10px rgba(255, 215, 0, 0.5);
    filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.6));
}

@keyframes casinoBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 10px 40px rgba(0, 0, 0, 0.4),
            inset 0 -5px 15px rgba(0, 0, 0, 0.3),
            inset 0 5px 15px rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.8),
            0 15px 50px rgba(0, 0, 0, 0.5),
            inset 0 -5px 15px rgba(0, 0, 0, 0.3),
            inset 0 5px 15px rgba(255, 255, 255, 0.4);
    }
}

.casino-badge:hover {
    animation: casinoBadgeSpin 1s ease-in-out;
}

@keyframes casinoBadgeSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* Sports Badge Rotating Animation */
.sports-badge {
    overflow: hidden;
    position: relative;
}

.sports-icon-rotator {
    display: inline-block;
    animation: rotateSportsIcons 8s steps(8) infinite;
}

@keyframes rotateSportsIcons {
    0% { content: '🏏'; } /* Cricket */
    12.5% { content: '⚽'; } /* Football */
    25% { content: '🎾'; } /* Tennis */
    37.5% { content: '🏀'; } /* Basketball */
    50% { content: '🏈'; } /* American Football */
    62.5% { content: '🐴'; } /* Horse Racing */
    75% { content: '🐕'; } /* Greyhound */
    87.5% { content: '🤼'; } /* Kabaddi */
    100% { content: '🏏'; } /* Back to Cricket */
}

/* Alternative approach - cycling through with opacity */
.sports-icon-rotator::after {
    content: '🏏';
    display: inline-block;
    animation: cycleSportsContent 8s steps(8) infinite;
}

@keyframes cycleSportsContent {
    0% { content: '🏏'; opacity: 1; } /* Cricket */
    11% { content: '🏏'; opacity: 0; }
    12.5% { content: '⚽'; opacity: 1; } /* Football */
    23.5% { content: '⚽'; opacity: 0; }
    25% { content: '🎾'; opacity: 1; } /* Tennis */
    36% { content: '🎾'; opacity: 0; }
    37.5% { content: '🏀'; opacity: 1; } /* Basketball */
    48.5% { content: '🏀'; opacity: 0; }
    50% { content: '🏈'; opacity: 1; } /* American Football */
    61% { content: '🏈'; opacity: 0; }
    62.5% { content: '🐴'; opacity: 1; } /* Horse Racing */
    73.5% { content: '🐴'; opacity: 0; }
    75% { content: '🐕'; opacity: 1; } /* Greyhound */
    86% { content: '🐕'; opacity: 0; }
    87.5% { content: '🤼'; opacity: 1; } /* Kabaddi */
    99% { content: '🤼'; opacity: 0; }
    100% { content: '🏏'; opacity: 1; } /* Back to Cricket */
}

.sports-badge .sports-icon-rotator {
    font-size: 0; /* Hide the default emoji */
}

