/* ========== ROOT VARIABLES ========== */
:root {
    --space-blue: #0a1a2a;
    --space-dark: #050c16;
    --neon-red: #ff073a;
    --neon-blue: #0084ff;
    --accent: #e8f2ff;   /* white-blue: the third American color */
    --text: #ffffff;
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Exo 2', sans-serif;
}

body {
    background: linear-gradient(to bottom, var(--space-dark), var(--space-blue));
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* ========== BACKGROUND EFFECTS ========== */
.space-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -4;
    background: linear-gradient(rgba(5, 12, 22, 0.9), rgba(10, 26, 42, 0.9));
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 15px 10px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 15px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 85px 20px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 120px 5px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 150px 25px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 180px 10px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 220px 18px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 250px 8px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 290px 22px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 320px 12px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 350px 28px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 380px 16px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 200px 60px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 230px 150px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 280px 100px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 300px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 340px 80px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 400px 400px;
    z-index: -3;
    opacity: 0.5;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.nebula {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.2;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 7, 58, 0.4), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(0, 132, 255, 0.4), transparent 30%);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
    width: 100px;
    height: 100px;
    background: var(--neon-red);
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    box-shadow: 0 0 40px var(--neon-red);
}

.floating-element:nth-child(2) {
    width: 70px;
    height: 70px;
    background: var(--neon-blue);
    top: 60%;
    left: 80%;
    animation-duration: 15s;
    animation-delay: -5s;
    box-shadow: 0 0 30px var(--neon-blue);
}

.floating-element:nth-child(3) {
    width: 120px;
    height: 120px;
    background: var(--accent);
    top: 80%;
    left: 15%;
    animation-duration: 25s;
    animation-delay: -10s;
    box-shadow: 0 0 50px var(--accent);
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, 15px) rotate(90deg); }
    50% { transform: translate(0, 30px) rotate(180deg); }
    75% { transform: translate(-20px, 15px) rotate(270deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

/* ========== PROMOTIONS BANNER ========== */
.promotions-banner {
    background: linear-gradient(90deg, rgba(255, 7, 58, 0.9), rgba(0, 132, 255, 0.9));
    padding: 0.8rem 0;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
    backdrop-filter: blur(5px);
}

.promotions-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    white-space: nowrap;
    animation: scroll-promo 20s linear infinite;
}

.promotion {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.promotion i {
    color: var(--accent);
    font-size: 1.5rem;
    text-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes scroll-promo {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ========== HEADER & NAVIGATION ========== */
header {
    background: transparent !important;
    background-image: url('/images/gizmo_banner_1.png?v=3');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 1rem 2rem;
    position: relative;
    top: 0;
    z-index: 100;
    border: none;
    box-shadow: none;
    min-height: 300px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
    background: transparent !important;
    min-height: 300px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gizmo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--text);
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 7, 58, 0.5);
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after, nav a.active::after {
    width: 80%;
    box-shadow: 0 0 10px var(--accent);
}

/* ========== AUTH BUTTONS ========== */
.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Exo 2', sans-serif;
}

.btn-login {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--neon-blue);
    position: relative;
    overflow: hidden;
}

.btn-login:hover {
    background: rgba(0, 132, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.3);
}

.btn-register {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    color: var(--text);
    position: relative;
    overflow: hidden;
}

.btn-register:hover {
    box-shadow: 0 0 20px var(--neon-red);
    transform: translateY(-3px);
}

/* ========== ACCOUNT DROPDOWN ========== */
.account-dropdown {
    position: relative;
}

.account-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--neon-blue);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.account-btn:hover {
    background: rgba(0, 132, 255, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 26, 42, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-blue);
    border-radius: 10px;
    padding: 1rem;
    min-width: 200px;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dropdown-item {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(0, 132, 255, 0.1);
}

.dropdown-divider {
    height: 1px;
    background: var(--neon-blue);
    margin: 0.5rem 0;
}

/* ========== MAIN CONTENT ========== */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(to right, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    border: 2px solid var(--neon-red);
    box-shadow: 0 0 40px rgba(255, 7, 58, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 7, 58, 0.4);
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: #ccc;
    line-height: 1.6;
}

/* ========== GAMES GRID ========== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.05);
    position: relative;
    backdrop-filter: blur(5px);
}

.game-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 7, 58, 0.4);
    transform: translateY(-8px) scale(1.02);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, rgba(10, 26, 42, 0.8), rgba(15, 32, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--accent);
    text-shadow: 0 0 20px var(--accent);
    position: relative;
    overflow: hidden;
}

.game-content {
    padding: 1.8rem;
}

.game-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--accent);
}

.game-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.game-btn:hover {
    box-shadow: 0 0 15px var(--neon-red);
    transform: translateY(-2px);
}

/* ========== MODAL STYLES ========== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-content {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.95), rgba(5, 12, 22, 0.95));
    border-radius: 15px;
    padding: 3rem;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.3);
    backdrop-filter: blur(10px);
    min-width: 400px;
    max-width: 90%;
}

.modal-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-content input {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--neon-blue);
    background-color: rgba(5, 12, 22, 0.7);
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-content input:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

/* ========== PAYMENT METHODS ========== */
.payment-methods {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2.5rem;
    margin: 3rem 0;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.2);
    backdrop-filter: blur(5px);
    text-align: center;
}

.payment-methods h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.payment-icon i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.payment-icon:hover i {
    transform: scale(1.1);
}

/* Original Colors for Payment Icons */
.fa-apple-pay { color: #000000 !important; }
.fa-google-pay { color: #5F6368 !important; }
.fa-paypal { color: #003087 !important; }
.fa-bitcoin { color: #F7931A !important; }
.fa-server { color: #007AFF !important; }
.fa-cloud { color: #00BFFF !important; }
.fa-money-bill-wave { color: #15D4A8 !important; }
.fa-credit-card { color: #FF6B35 !important; }
.fa-wallet { color: #00D632 !important; }
.fa-bolt { color: #FFD700 !important; }
.fa-mobile-alt { color: #333333 !important; }
.fa-exchange-alt { color: #007AFF !important; }

.payment-icon span {
    font-size: 0.9rem;
    color: #ccc;
    font-weight: 500;
}

/* ========== FEATURES ========== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3),
                -5px -5px 15px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    border-color: var(--neon-red);
    box-shadow: 0 0 25px rgba(255, 7, 58, 0.2);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    text-shadow: 0 0 15px var(--accent);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent);
    font-family: 'Orbitron', sans-serif;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(145deg,rgba(5,13,32,.99),rgba(3,9,24,.99));
    border-top: 1px solid var(--border);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    backdrop-filter: blur(5px);
}
/* ── foot-* helper classes (shared footer partial) ── */
.foot-inner{max-width:1200px;margin:0 auto}
.foot-logo{display:flex;align-items:center;justify-content:center;gap:.7rem;margin-bottom:1.1rem}
.foot-logo-img{height:36px !important;width:auto !important;max-height:36px !important;object-fit:contain !important}
.foot-logo-txt{font-family:'Orbitron',sans-serif;font-size:.95rem;font-weight:900;color:var(--blue)}
.foot-social{display:flex;justify-content:center;gap:.7rem;margin-bottom:1.1rem}
.foot-social a{width:34px;height:34px;border-radius:50%;background:rgba(0,132,255,.07);border:1px solid var(--border);color:var(--muted);display:flex;align-items:center;justify-content:center;font-size:.85rem;text-decoration:none;transition:.2s}
.foot-social a:hover{background:rgba(0,132,255,.18);color:var(--blue);border-color:var(--border-b)}
.foot-links{display:flex;justify-content:center;flex-wrap:wrap;gap:.3rem 1rem;margin-bottom:.9rem}
.foot-links a{color:var(--dim);text-decoration:none;font-size:.78rem;transition:.2s}
.foot-links a:hover{color:var(--blue)}
.foot-legal{font-size:.73rem;color:var(--dim);line-height:1.6}
.foot-legal strong{color:var(--muted)}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-text {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: var(--text);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--space-blue);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3),
                -5px -5px 10px rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.4);
}

/* ========== CHAT WIDGETS ========== */
.chat-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    z-index: 9997;
}

.chat-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp {
    background: linear-gradient(45deg, #25D366, #1ebe5e);
}

.facebook {
    background: linear-gradient(45deg, #0084FF, #0066cc);
}

.chat-btn:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 968px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .modal-content {
        min-width: 300px;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 3rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        min-width: 280px;
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .chat-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
}

/* Payment Tabs */
.payment-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    border-bottom: 2px solid var(--neon-blue);
    padding-bottom: 0.5rem;
}

.payment-tab {
    background: transparent;
    border: none;
    color: var(--text);
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.payment-tab.active {
    color: var(--accent);
}

.payment-tab.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}

.payment-tab:hover {
    color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Payment Method Cards */
.payment-method-card {
    background: linear-gradient(145deg, rgba(10, 26, 42, 0.8), rgba(5, 12, 22, 0.8));
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--neon-blue);
    transition: all 0.3s ease;
}

.payment-method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 132, 255, 0.3);
    border-color: var(--accent);
}

/* Platform Tags */
.platform-tag {
    background: rgba(0, 132, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin: 0.2rem;
    border: 1px solid rgba(0, 132, 255, 0.5);
}

/* Form Improvements */
select {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid var(--neon-blue);
    background-color: rgba(5, 12, 22, 0.7);
    color: var(--text);
    font-size: 1rem;
    width: 100%;
}

select:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

.dropdown-item[style*="cursor: default"]:hover {
    background-color: transparent !important;
}

.payment-platform {
    background: rgba(10, 26, 42, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    margin-bottom: 1.5rem;
}

.payment-platform:last-child {
    margin-bottom: 0;
}

.payment-platform h3 {
    color: var(--accent) !important;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 132, 255, 0.3);
}

.glow-text {
    background: linear-gradient(45deg, var(--neon-red), var(--neon-blue), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 132, 255, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 132, 255, 0.8), 0 0 30px rgba(255, 7, 58, 0.4);
    }
}

.featured-game {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 25px rgba(0, 132, 255, 0.4) !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.featured-game:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(0, 132, 255, 0.6) !important;
}

/* Casino Animation Effects */
.casino-effects-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* Money Falling Animation */
.falling-money {
    position: absolute;
    top: -100px;
    font-size: 24px;
    color: #FFD700; /* Gold */
    text-shadow: 0 0 10px #FFD700;
    animation: fall linear forwards;
    pointer-events: none;
    user-select: none;
}

.falling-money.dollar {
    color: #32CD32; /* Lime green */
    text-shadow: 0 0 10px #32CD32;
}

.falling-money.euro {
    color: #4169E1; /* Royal blue */
    text-shadow: 0 0 10px #4169E1;
}

.falling-money.bitcoin {
    color: #F7931A; /* Bitcoin orange */
    text-shadow: 0 0 10px #F7931A;
}

.falling-money.ethereum {
    color: #627EEA; /* Ethereum blue */
    text-shadow: 0 0 10px #627EEA;
}

@keyframes fall {
    to {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Fireworks */
.firework {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    pointer-events: none;
}

.firework::before,
.firework::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: explode 1s ease-out forwards;
}

@keyframes explode {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(30);
        opacity: 0;
    }
}

/* Santa Hat Animation */
.santa-hat {
    position: fixed;
    font-size: 40px;
    animation: floatSanta 15s linear infinite;
    pointer-events: none;
    z-index: 1000;
    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.5));
}

@keyframes floatSanta {
    0% {
        transform: translateX(-100px) translateY(100px) rotate(0deg);
    }
    25% {
        transform: translateX(25vw) translateY(200px) rotate(90deg);
    }
    50% {
        transform: translateX(50vw) translateY(50px) rotate(180deg);
    }
    75% {
        transform: translateX(75vw) translateY(300px) rotate(270deg);
    }
    100% {
        transform: translateX(100vw) translateY(100px) rotate(360deg);
    }
}

/* Slot Machine Reels Animation */
.reel-symbol {
    position: absolute;
    font-size: 20px;
    color: #FFD700;
    text-shadow: 0 0 5px currentColor;
    animation: spinReel 2s linear infinite;
}

@keyframes spinReel {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Winning Confetti */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    animation: confettiFall 3s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Jackpot Flash */
@keyframes jackpotFlash {
    0%, 100% {
        background-color: rgba(255, 215, 0, 0);
    }
    50% {
        background-color: rgba(255, 215, 0, 0.2);
    }
}

.jackpot-flash {
    animation: jackpotFlash 1s infinite;
}

/* Glowing Text Effect */
.casino-glow {
    text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
    from {
        text-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700, 0 0 30px #FFD700;
    }
    to {
        text-shadow: 0 0 20px #FF4500, 0 0 30px #FF4500, 0 0 40px #FF4500;
    }
}

.admin-controls {
    background: rgba(10, 26, 42, 0.5);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 132, 255, 0.3);
}

.search-box input:focus {
    outline: none;
    border-color: var(--neon-red);
    box-shadow: 0 0 10px rgba(255, 7, 58, 0.3);
}

.filter-controls select:focus {
    outline: none;
    border-color: var(--neon-red);
}

.results-info {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-align: right;
}

/* Add to your existing CSS */
#simpleEmojiPicker {
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure emoji button is visible */
#emojiBtn {
    background: rgba(0, 132, 255, 0.15) !important;
    border: 1px solid var(--neon-blue) !important;
    color: var(--accent) !important;
    font-size: 1.5rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
}

#emojiBtn:hover {
    background: rgba(0, 132, 255, 0.3) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 0 15px rgba(0, 132, 255, 0.5) !important;
}

/* ═══════════════════════════════════════════════════════════════
   SPACE BACKGROUND — canvas fills viewport, JS handles drawing
   ═══════════════════════════════════════════════════════════════ */
#spaceCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -10;
    pointer-events: none;
    display: block;
}

/* Override the old static gradient background so canvas shows */
body {
    background: #050c16 !important;
}
.bg-layer, .space-background {
    display: none !important;   /* canvas replaces these */
}

/* ═══════════════════════════════════════════════════════════════
   HAMBURGER BUTTON  (canonical — shared across all pages)
   ═══════════════════════════════════════════════════════════════ */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(7,16,31,0.9);
    border: 2px solid rgba(0,243,255,0.6);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: all .2s;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    flex-shrink: 0;
}
.hamburger:hover {
    background: rgba(0,132,255,.3);
    border-color: #00f3ff;
    box-shadow: 0 4px 20px rgba(0,243,255,0.4);
}
.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #00ffff;
    border-radius: 2px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   NAV DRAWER + OVERLAY  (canonical — shared across all pages)
   ═══════════════════════════════════════════════════════════════ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 1050;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.nav-overlay.open { display: block; }

.nav-drawer {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: min(285px, 82vw);
    background: linear-gradient(180deg, rgba(7,16,31,.99) 0%, rgba(5,10,20,.99) 100%);
    /* Patriotic left-edge: thin red/white/blue stripe */
    border-right: none;
    box-shadow: inset -2px 0 0 rgba(0,132,255,.2),
                2px 0 0 rgba(0,132,255,.08);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .95rem 1.1rem;
    /* Patriotic header: red→blue gradient underline */
    border-bottom: 1px solid transparent;
    background: linear-gradient(rgba(255,7,58,.04), rgba(0,132,255,.04)) padding-box,
                linear-gradient(90deg, rgba(255,7,58,.4), rgba(0,132,255,.4)) border-box;
    border-bottom: 1px solid transparent;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 1;
}
.nav-drawer-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: .85rem;
    font-weight: 800;
    /* Red → white → blue — American flag gradient */
    background: linear-gradient(90deg, #FF073A 0%, #ffffff 50%, #0084FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: .45rem;
}
.nav-drawer-close {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    color: #6a7d94;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .18s;
    touch-action: manipulation;
}
.nav-drawer-close:hover { background: rgba(255,7,58,.15); color: #ff073a; }

.nav-drawer-links {
    padding: .6rem .55rem;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.nav-dl {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .8rem .9rem;
    color: #99a8c0;
    text-decoration: none;
    border-radius: 10px;
    margin-bottom: .18rem;
    font-family: 'Exo 2', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    transition: background .18s, color .18s, transform .18s;
    border: 1px solid transparent;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px; /* touch target */
}
.nav-dl i {
    width: 20px;
    text-align: center;
    font-size: .9rem;
    flex-shrink: 0;
    /* individual icon colors set inline in _nav.php */
}
.nav-dl:hover {
    background: rgba(255,7,58,.09);
    color: #ffffff;
    border-color: rgba(255,7,58,.22);
    transform: translateX(3px);
}
.nav-dl.active {
    background: linear-gradient(90deg, rgba(255,7,58,.1), rgba(0,132,255,.1));
    color: #ffffff;
    border-color: rgba(0,132,255,.25);
}
.nav-dl.active i { color: #00ff88 !important; }
.nav-dl.danger { color: #ff6080; }
.nav-dl.danger i { color: #ff4757 !important; }
.nav-dl.danger:hover { background: rgba(255,7,58,.1); color: #ff073a; }

/* Patriotic divider: red → white → blue gradient */
.nav-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(255,7,58,.3), rgba(255,255,255,.15), rgba(0,132,255,.3));
    margin: .5rem .3rem;
}

.nav-section-label {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4a6078;
    padding: .55rem .9rem .2rem;
}

.live-dot-nav {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #00ff88;
    border-radius: 50%;
    margin-left: 6px;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 6px #00ff88;
    flex-shrink: 0;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: .3; }
}

.nav-drawer-auth {
    padding: .6rem .85rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    flex-shrink: 0;
    border-top: 1px solid transparent;
    background: linear-gradient(rgba(3,9,24,0),rgba(3,9,24,0)) padding-box,
                linear-gradient(90deg,rgba(255,7,58,.3),rgba(0,132,255,.3)) border-box;
    border-top: 1px solid transparent;
}
.nav-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem;
    border-radius: 10px;
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    text-decoration: none;
    transition: all .18s;
    border: none;
    touch-action: manipulation;
    min-height: 44px;
}
.nav-auth-btn.login {
    background: rgba(0,132,255,.08);
    border: 2px solid rgba(0,132,255,.35);
    color: #7eb8ff;
}
.nav-auth-btn.login:hover { background: rgba(0,132,255,.18); color: #fff; }
/* Register: American red-to-blue patriotic button */
.nav-auth-btn.register {
    background: linear-gradient(135deg, #CC0022, #FF073A, #0066CC, #0084FF);
    background-size: 200% 200%;
    animation: gggDrawerRegShimmer 4s ease infinite;
    color: white;
    box-shadow: 0 4px 14px rgba(255,7,58,.3);
}
@keyframes gggDrawerRegShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.nav-auth-btn.register:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,7,58,.45); }

/* ── ACCOUNT DROPDOWN (slim, canonical) ── */
.account-btn { min-width: unset !important; }
.dropdown-menu.enhanced {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    background: linear-gradient(145deg, rgba(10,26,42,.98), rgba(5,10,20,.98));
    border: 1.5px solid rgba(0,132,255,.35);
    border-radius: 14px;
    min-width: 230px;
    box-shadow: 0 16px 40px rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(.97);
    transition: all .22s cubic-bezier(.175,.885,.32,1.275);
    overflow: hidden;
}
.dropdown-menu.enhanced.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.sdd-handle { width: 38px; height: 4px; background: rgba(255,255,255,.18); border-radius: 4px; margin: .75rem auto .2rem; }
.sdd-user { padding: .8rem 1.3rem 1.1rem; text-align: center; border-bottom: 1px solid rgba(255,255,255,.07); }
.sdd-av { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(135deg,#00f3ff,#b300ff); display: flex; align-items: center; justify-content: center; margin: 0 auto .55rem; }
.sdd-av i { font-size: 1.4rem; color: white; }
.sdd-name { font-size: .95rem; font-weight: 700; color: white; margin-bottom: .2rem; font-family:'Exo 2',sans-serif; }
.sdd-role { display: inline-block; padding: .14rem .6rem; border-radius: 20px; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .75rem; }
.sdd-role.user    { background: linear-gradient(135deg,#00ff88,#00cc00); color: #000; }
.sdd-role.admin   { background: linear-gradient(135deg,#FF0000,#FF4500); color: #fff; }
.sdd-role.cashier { background: linear-gradient(135deg,#FFD700,#FFA500); color: #000; }
.sdd-stats { display: flex; align-items: center; justify-content: center; gap: .8rem; background: rgba(0,0,0,.2); border-radius: 10px; padding: .7rem; border: 1px solid rgba(255,255,255,.06); }
.sdd-stat { text-align: center; }
.sdd-stat i { font-size: .8rem; color: #00ff88; display: block; margin-bottom: .18rem; }
.sdd-stat-val { font-family: 'Orbitron',sans-serif; font-size: 1rem; font-weight: 700; color: #00ff88; }
.sdd-stat-lbl { font-size: .65rem; color: #5a6d84; margin-top: .12rem; }
.sdd-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,.08); }
.sdd-foot { padding: .6rem .7rem .8rem; }
.sdd-logout {
    display: flex; align-items: center; justify-content: center; gap: .6rem;
    padding: .72rem; border-radius: 10px;
    background: rgba(255,7,58,.08); border: 1px solid rgba(255,7,58,.2);
    color: #ff6080; text-decoration: none;
    font-family: 'Exo 2',sans-serif; font-weight: 600; font-size: .88rem; transition: .2s;
}
.sdd-logout:hover { background: rgba(255,7,58,.18); color: #ff073a; }
.sdd-logout i { font-size: .9rem; }

/* ── INBOX BELL (header) ── */
.inbox-bell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(0,132,255,.1);
    border: 1.5px solid rgba(0,132,255,.3);
    color: #99a8c0;
    text-decoration: none;
    transition: all .2s;
    flex-shrink: 0;
}
.inbox-bell:hover { background: rgba(0,132,255,.2); color: #00f3ff; }
.inbox-count {
    position: absolute;
    top: -4px; right: -4px;
    background: #ff073a;
    color: white;
    font-size: .6rem;
    font-weight: 700;
    border-radius: 50px;
    padding: .08rem .3rem;
    min-width: 16px;
    text-align: center;
    animation: pulseBadge 1.5s ease-in-out infinite;
}
@keyframes pulseBadge {
    0%,100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE — bigger touch targets, no horizontal scroll
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .account-btn { padding: .42rem .7rem !important; font-size: .8rem !important; gap: .35rem !important; }
    .account-btn span { max-width: 70px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .dropdown-menu.enhanced {
        position: fixed !important;
        bottom: 0 !important; left: 0 !important; right: 0 !important; top: auto !important;
        width: 100% !important; min-width: unset !important;
        border-radius: 18px 18px 0 0 !important;
        transform: translateY(110%) !important;
        max-height: 85vh; overflow-y: auto;
        border: none !important;
        border-top: 2px solid rgba(0,132,255,.3) !important;
    }
    .dropdown-menu.enhanced.show { transform: translateY(0) !important; opacity: 1 !important; visibility: visible !important; }

    .nav-dl { font-size: .88rem; padding: .78rem .85rem; }
    .chat-widgets { bottom: 1rem; right: 1rem; gap: .8rem; }
    .chat-btn { width: 54px; height: 54px; font-size: 1.55rem; }
}
@media (max-width: 480px) {
    .chat-btn { width: 50px; height: 50px; font-size: 1.4rem; }
    .nav-drawer { width: min(300px, 88vw); }
}

/* ═══════════════════════════════════════════════════════════════════════
   FULL-SITE GOLD THEME OVERRIDES — appended last for highest cascade
   Targets hardcoded blue/dark colors that CSS variables can't reach
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Page & section backgrounds ── */
/* Override per-page CSS variables so var(--card), var(--bg) etc. resolve to black in gold theme */
body.gg-theme-gold {
  background: linear-gradient(to bottom, #000000, #050505) !important;
  --card:   rgba(8,8,8,.95)  !important;
  --card2:  rgba(12,12,12,.95) !important;
  --bg:     #000000 !important;
  --bg2:    #050505 !important;
  --border: rgba(255,215,0,0.22) !important;
  --cyan:   #FFD700 !important;
  --neon-blue: #FFD700 !important;
  --neon-purple: #b8860b !important;
}
body.gg-theme-gold .game-card,
body.gg-theme-gold .hero,
body.gg-theme-gold .hero-card,
body.gg-theme-gold .modal-content,
body.gg-theme-gold .modal-content h2,
body.gg-theme-gold .bonus-card,
body.gg-theme-gold .tier-card,
body.gg-theme-gold .stat-card,
body.gg-theme-gold .feature-card,
body.gg-theme-gold .highlight-card,
body.gg-theme-gold .reward-card,
body.gg-theme-gold .promo-card,
body.gg-theme-gold .promo-modal-box,
body.gg-theme-gold .ewyp-card,
body.gg-theme-gold [class*="-card"]:not(.mini-red):not(.mini-blue):not(.mini-gold):not(.pay-card),
body.gg-theme-gold [class*="-panel"],
body.gg-theme-gold [class*="-box"]:not(.auth-box) {
    background: linear-gradient(145deg, rgba(12,12,12,.92), rgba(0,0,0,.96)) !important;
    border-color: rgba(255,215,0,.2) !important;
}
/* ── Page-specific classes not caught by generic selectors ── */
body.gg-theme-gold .card,
body.gg-theme-gold .bal-card,
body.gg-theme-gold .modal-box,
body.gg-theme-gold .auth-modal-box,
body.gg-theme-gold .promo-card,
body.gg-theme-gold .prize-card,
body.gg-theme-gold .lst-card,
body.gg-theme-gold .earn-tbl,
body.gg-theme-gold .hist-tbl,
body.gg-theme-gold .tc,
body.gg-theme-gold .how-step,
body.gg-theme-gold .reward-box,
body.gg-theme-gold .link-card,
body.gg-theme-gold .stat-box,
body.gg-theme-gold .history-section,
body.gg-theme-gold .my-status,
body.gg-theme-gold .tier-card,
body.gg-theme-gold .lb-table-wrap,
body.gg-theme-gold .section-card,
body.gg-theme-gold .plat-card,
body.gg-theme-gold .preq-card,
body.gg-theme-gold .summary-box,
body.gg-theme-gold .shift-info,
body.gg-theme-gold .rankings-table,
body.gg-theme-gold .daily-competition,
body.gg-theme-gold .ann-card,
body.gg-theme-gold .highlight-card,
body.gg-theme-gold .hub-cta,
body.gg-theme-gold .stats-bar {
    background: linear-gradient(145deg, rgba(12,12,12,.92), rgba(0,0,0,.96)) !important;
    border-color: rgba(255,215,0,.2) !important;
}

/* ── Nav drawer + dropdown on every page ── */
body.gg-theme-gold .nav-drawer {
    background: linear-gradient(180deg, rgba(10,10,10,.99), rgba(0,0,0,.99)) !important;
    border-right-color: rgba(255,215,0,.2) !important;
}
body.gg-theme-gold .dropdown-menu,
body.gg-theme-gold .dropdown-menu.enhanced {
    background: linear-gradient(145deg, rgba(10,10,10,.98), rgba(0,0,0,.98)) !important;
    border-color: rgba(255,215,0,.3) !important;
}

/* ── Game cards: gold border ── */
body.gg-theme-gold .game-card {
    border-color: rgba(255,215,0,.3) !important;
}
body.gg-theme-gold .game-card:hover {
    border-color: rgba(255,215,0,.7) !important;
    box-shadow: 0 0 25px rgba(255,180,0,.25) !important;
}

/* ── Category / filter buttons ── */
body.gg-theme-gold .category-btn,
body.gg-theme-gold .filter-btn {
    background: rgba(255,215,0,.06) !important;
    border-color: rgba(255,215,0,.2) !important;
    color: rgba(200,155,40,.8) !important;
}
body.gg-theme-gold .category-btn:hover,
body.gg-theme-gold .category-btn.active,
body.gg-theme-gold .filter-btn:hover,
body.gg-theme-gold .filter-btn.active {
    background: rgba(255,215,0,.15) !important;
    border-color: #FFD700 !important;
    color: #FFD700 !important;
}

/* ── Hero sections on all pages ── */
body.gg-theme-gold .hero,
body.gg-theme-gold .games-hero,
body.gg-theme-gold .loy-hero,
body.gg-theme-gold .vip-hero,
body.gg-theme-gold .about-hero,
body.gg-theme-gold .contact-hero,
body.gg-theme-gold .hiw-hero,
body.gg-theme-gold .vault-hero {
    background: linear-gradient(145deg, rgba(8,8,8,.95), rgba(0,0,0,.98)) !important;
    border-color: rgba(255,215,0,.25) !important;
}

/* ── pay-card: always transparent on all themes */
.pay-card, body.gg-theme-gold .pay-card {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}
body.gg-theme-gold .game-card:hover {
    border-color: rgba(255,215,0,.55) !important;
    box-shadow: 0 0 25px rgba(255,180,0,.2) !important;
}

/* ── Hardcoded blue borders → gold ── */
body.gg-theme-gold .hero { border-color: rgba(255,215,0,.28) !important; box-shadow: 0 0 40px rgba(255,180,0,.1) !important; }
body.gg-theme-gold .modal-content { border-color: rgba(255,215,0,.4) !important; }
body.gg-theme-gold .dropdown-menu, body.gg-theme-gold .dropdown-menu.enhanced {
    background: linear-gradient(145deg, rgba(10,10,10,.98), rgba(0,0,0,.98)) !important;
    border-color: rgba(255,215,0,.3) !important;
}

/* ── Input borders ── */
body.gg-theme-gold input:not([type=checkbox]):not([type=radio]),
body.gg-theme-gold select, body.gg-theme-gold textarea {
    border-color: rgba(255,215,0,.25) !important;
    background: rgba(8,8,8,.85) !important;
}
body.gg-theme-gold input:focus, body.gg-theme-gold select:focus, body.gg-theme-gold textarea:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 3px rgba(255,215,0,.15) !important;
}

/* ── Blue text → gold (headings — color only, no background box) ── */
body.gg-theme-gold .game-title,
body.gg-theme-gold .sec-title,
body.gg-theme-gold [class*="-title"]:not(.auth-notif),
body.gg-theme-gold .hc-title {
    color: #FFD700 !important;
}
/* hero-badge is a pill/badge widget — gets background + border */
body.gg-theme-gold .hero-badge {
    color: #FFD700 !important;
    border-color: rgba(255,215,0,.25) !important;
    background: rgba(255,215,0,.07) !important;
}

/* ── Blue gradient buttons → gold ── */
body.gg-theme-gold .game-btn,
body.gg-theme-gold .btn-register,
body.gg-theme-gold .hc-submit,
body.gg-theme-gold .pay-btn,
body.gg-theme-gold [class*="btn-primary"],
body.gg-theme-gold [class*="btn-play"] {
    background: linear-gradient(135deg, #6b4e00, #FFD700, #b8860b) !important;
    background-size: 200% 200% !important;
    color: #0A0600 !important;
    box-shadow: 0 4px 14px rgba(255,180,0,.3) !important;
}
body.gg-theme-gold .game-btn:hover,
body.gg-theme-gold .hc-submit:hover,
body.gg-theme-gold .pay-btn:hover {
    box-shadow: 0 6px 22px rgba(255,180,0,.5) !important;
    transform: translateY(-2px) !important;
}

/* ── Progress bars ── */
body.gg-theme-gold .progress-fill,
body.gg-theme-gold [class*="progress-fill"],
body.gg-theme-gold [class*="progress-bar"] {
    background: linear-gradient(90deg, #b8860b, #FFD700, #FFA500) !important;
}
body.gg-theme-gold [class*="progress-track"],
body.gg-theme-gold [class*="progress-bg"] { background: rgba(255,215,0,.1) !important; }

/* ── Section separators & dividers ── */
body.gg-theme-gold .sec-sep {
    background: linear-gradient(90deg, transparent, #FFD700, transparent) !important;
}

/* ── Hero badge glow → gold ── */
body.gg-theme-gold .hs-val { color: #FFD700 !important; text-shadow: 0 0 20px rgba(255,180,0,.4) !important; }
body.gg-theme-gold .hero-perk { border-color: rgba(255,215,0,.18) !important; background: rgba(255,215,0,.05) !important; }
body.gg-theme-gold .hero-perk i { color: #FFD700 !important; }
body.gg-theme-gold .hero-title .t2 { background: linear-gradient(135deg,#FFD700,#FFA500,#FFD700) !important; -webkit-background-clip:text !important; -webkit-text-fill-color:transparent !important; background-clip:text !important; }

/* ── Tables ── */
body.gg-theme-gold table { border-color: rgba(255,215,0,.12) !important; }
body.gg-theme-gold th { background: rgba(255,215,0,.07) !important; color: #FFD700 !important; border-color: rgba(255,215,0,.15) !important; }
body.gg-theme-gold td { border-color: rgba(255,215,0,.07) !important; }
body.gg-theme-gold tr:hover td { background: rgba(255,215,0,.04) !important; }

/* ── Footer ── */
body.gg-theme-gold footer { background: rgba(0,0,0,.99) !important; border-top-color: rgba(255,215,0,.15) !important; }
body.gg-theme-gold .foot-logo-txt { color: #FFD700 !important; }
body.gg-theme-gold .foot-social a:hover { background: rgba(255,215,0,.18) !important; color: #FFD700 !important; border-color: rgba(255,215,0,.35) !important; }
body.gg-theme-gold .foot-links a:hover { color: #FFD700 !important; }

/* ── Loading screen ── */
body.gg-theme-gold #gggLoading { background: linear-gradient(135deg,#000000,#050505) !important; }
body.gg-theme-gold .ggg-load-logo { color: #FFD700 !important; text-shadow: 0 0 30px rgba(255,180,0,.6) !important; }
body.gg-theme-gold .ggg-load-fill { background: linear-gradient(90deg, #b8860b, #FFD700, #FFA500) !important; }

/* ── Hero registration form card ── */
body.gg-theme-gold .hero-card {
    background: linear-gradient(145deg, rgba(10,10,10,.97), rgba(0,0,0,.99)) !important;
    border-color: rgba(255,215,0,.4) !important;
    box-shadow: 0 0 50px rgba(255,180,0,.06) !important;
}
body.gg-theme-gold .hc-form input {
    background: rgba(255,215,0,.04) !important;
    border-color: rgba(255,215,0,.18) !important;
}
body.gg-theme-gold .hc-form input:focus {
    border-color: #FFD700 !important;
    box-shadow: 0 0 0 3px rgba(255,215,0,.15) !important;
}

/* ── Background grid tint → amber ── */
body.gg-theme-gold .hero-bg { background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(255,180,0,0.10),transparent),
    radial-gradient(ellipse 50% 50% at 85% 55%, rgba(255,140,0,0.06),transparent),
    linear-gradient(160deg, #000000 0%, #050505 50%, #000000 100%) !important;
}
body.gg-theme-gold .hero-bg-grid {
    background-image: linear-gradient(rgba(255,215,0,.03) 1px,transparent 1px),
                      linear-gradient(90deg,rgba(255,215,0,.03) 1px,transparent 1px) !important;
}

/* ════ PAGE-SPECIFIC: Gold theme — Leaderboard ════ */
body.gg-theme-gold .lb-table-wrap {
  background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.97)) !important;
  border: 1.5px solid rgba(255,215,0,.18) !important;
}
body.gg-theme-gold .lb-head { color: rgba(255,180,0,.48) !important; border-bottom-color: rgba(255,215,0,.10) !important; }
body.gg-theme-gold .lb-row { border-bottom-color: rgba(255,215,0,.06) !important; }
body.gg-theme-gold .lb-row:hover { background: rgba(255,215,0,.035) !important; }
body.gg-theme-gold .lb-row.me { background: rgba(255,215,0,.07) !important; border: 1px solid rgba(255,215,0,.28) !important; border-radius: 8px !important; margin: .3rem !important; }
body.gg-theme-gold .player-name { color: #d4b060 !important; }
body.gg-theme-gold .metric-val { color: #FFD700 !important; }
body.gg-theme-gold .pts-val { color: rgba(180,140,40,.65) !important; }
body.gg-theme-gold .rank-other { background: rgba(255,215,0,.08) !important; color: rgba(200,155,40,.80) !important; }
body.gg-theme-gold .reset-info { color: rgba(150,110,30,.6) !important; }
body.gg-theme-gold .my-rank-banner { background: rgba(255,215,0,.07) !important; border-color: rgba(255,215,0,.25) !important; }
body.gg-theme-gold .prize-card { background: linear-gradient(145deg,rgba(12,12,12,.88),rgba(0,0,0,.92)) !important; }
body.gg-theme-gold .prize-reward { color: rgba(180,145,55,.7) !important; }
body.gg-theme-gold .prize-reward strong { color: #d4b860 !important; }
/* ════ PAGE-SPECIFIC: Gold theme — How It Works ════ */
body.gg-theme-gold .step-card {
  background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important;
  border-color: rgba(255,215,0,.14) !important;
}
body.gg-theme-gold .step-card:hover { border-color: rgba(255,215,0,.30) !important; box-shadow: 0 8px 32px rgba(255,180,0,.12) !important; }
body.gg-theme-gold .hiw-badge { background: rgba(255,215,0,.08) !important; border-color: rgba(255,215,0,.35) !important; color: #FFD700 !important; }
body.gg-theme-gold .loyalty-banner { background: rgba(255,215,0,.05) !important; border-color: rgba(255,215,0,.2) !important; }
body.gg-theme-gold .loy-item { background: rgba(255,215,0,.05) !important; border-color: rgba(255,215,0,.12) !important; }
body.gg-theme-gold .hiw-cta { background: linear-gradient(145deg,rgba(12,12,12,.9),rgba(0,0,0,.95)) !important; border-color: rgba(255,215,0,.2) !important; }
body.gg-theme-gold .pchip { background: rgba(255,215,0,.06) !important; border-color: rgba(255,215,0,.15) !important; color: rgba(200,155,40,.8) !important; }
body.gg-theme-gold .sup-item { background: rgba(255,215,0,.04) !important; border-color: rgba(255,215,0,.1) !important; color: #b8a060 !important; }
/* ════ PAGE-SPECIFIC: Gold theme — Promotions ════ */
body.gg-theme-gold .filter-btn { background: rgba(255,215,0,.06) !important; border-color: rgba(255,215,0,.18) !important; color: rgba(200,155,40,.8) !important; }
body.gg-theme-gold .filter-btn:hover, body.gg-theme-gold .filter-btn.active { background: rgba(255,215,0,.14) !important; border-color: #FFD700 !important; color: #FFD700 !important; }

/* ════════════════════════════════════════════════════════════════════
   LIGHT THEME — silver / gray / white — site-wide overrides
   ════════════════════════════════════════════════════════════════════ */
body.gg-theme-light { background: linear-gradient(160deg,#cdd1da 0%,#c8cdd8 40%,#ccd0d9 100%) !important; color: #4a5568 !important; }

/* ── Light theme: neutralise every background / decorative layer ── */
body.gg-theme-light #spaceCanvas,
body.gg-theme-light .stars,
body.gg-theme-light .nebula,
body.gg-theme-light .space-background,
body.gg-theme-light .bg-layer,
body.gg-theme-light .floating-element,
body.gg-theme-light .casino-effects-container,
body.gg-theme-light #casinoFx,
body.gg-theme-light .hero-video,
body.gg-theme-light .hero-bg,
body.gg-theme-light .hero-bg-grid { pointer-events: none !important; }
/* Loading overlay: skip entirely in light theme — invisible against light bg but blocks clicks */
body.gg-theme-light #gggLoading {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
body.gg-theme-light::before,
body.gg-theme-light::after { content: none !important; pointer-events: none !important; }

/* ── Section backgrounds ── */
body.gg-theme-light .pay-section { background: rgba(74,85,104,.08) !important; border-color: rgba(74,85,104,.18) !important; }
body.gg-theme-light .ewyp-card { background: #e2e6ec !important; border-color: rgba(74,85,104,.20) !important; }
body.gg-theme-light .mini-red { background: rgba(220,50,70,.08) !important; border-color: rgba(220,50,70,.22) !important; }
body.gg-theme-light .mini-blue { background: rgba(74,85,104,.10) !important; border-color: rgba(74,85,104,.22) !important; }
body.gg-theme-light .mini-gold { background: rgba(74,85,104,.10) !important; border-color: rgba(74,85,104,.22) !important; }

/* ── Hero overlay ── */
body.gg-theme-light .hero-video { opacity: .18 !important; filter: saturate(.5) brightness(1.2) grayscale(.4) !important; }
body.gg-theme-light .hero-bg {
    background:
        linear-gradient(to bottom, rgba(244,245,247,.90) 0%, rgba(237,238,242,.50) 40%, rgba(244,245,247,.90) 100%),
        radial-gradient(ellipse 70% 60% at 15% 40%, rgba(74,85,104,.10), transparent),
        radial-gradient(ellipse 50% 50% at 85% 55%, rgba(113,128,150,.07), transparent) !important;
}
body.gg-theme-light .hero-bg-grid {
    background-image: linear-gradient(rgba(74,85,104,.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(74,85,104,.03) 1px, transparent 1px) !important;
}
body.gg-theme-light .hero-title .t1 { color: #1a202c !important; }
body.gg-theme-light .hero-title .t2 {
    background: linear-gradient(135deg,#2d3748,#718096) !important;
    -webkit-background-clip: text !important; background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: none !important;
}
body.gg-theme-light .hero-sub { color: #718096 !important; }

/* ── Promo rotator ── */
body.gg-theme-light .promo-wrap { background: #e2e6ec !important; border-color: rgba(74,85,104,.22) !important; box-shadow: 0 4px 24px rgba(0,0,0,.10) !important; }
body.gg-theme-light .promo-slide img { background: #d8dce5 !important; }
body.gg-theme-light .promo-dot { background: rgba(74,85,104,.30) !important; }
body.gg-theme-light .promo-dot.act { background: #4a5568 !important; }
body.gg-theme-light .promo-arrow { background: rgba(226,230,236,.98) !important; border-color: rgba(74,85,104,.25) !important; color: #4a5568 !important; box-shadow: 0 2px 10px rgba(0,0,0,.12) !important; }

/* ── EWYP ── */
body.gg-theme-light .ewyp-section { background: transparent; }
body.gg-theme-light .ewyp-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.1) !important; }
body.gg-theme-light .ewyp-card h3 { color: #1a202c !important; }
body.gg-theme-light .ewyp-card p { color: #718096 !important; }
body.gg-theme-light .ewyp-row { color: #4a5568 !important; }
body.gg-theme-light .ewyp-row i { color: #4a5568 !important; }
body.gg-theme-light .mini-val { color: #2d3748 !important; font-weight: 700; }
body.gg-theme-light .mini-card h4 { color: #1a202c !important; }
body.gg-theme-light .mini-card p { color: #718096 !important; }

/* ── Stats ── */
body.gg-theme-light .stat-card { background: #e2e6ec !important; border-color: rgba(74,85,104,.20) !important; }

/* ── Modals ── */
body.gg-theme-light .modal-overlay { background: rgba(0,0,0,.35) !important; }
body.gg-theme-light .modal-content { background: #e2e6ec !important; border-color: rgba(74,85,104,.22) !important; color: #1a202c !important; }
body.gg-theme-light .modal-content h2 { color: #1a202c !important; background: transparent !important; }

/* ── Platform ticker ── */
body.gg-theme-light #platformTick { background: rgba(210,215,224,.92) !important; border-color: rgba(74,85,104,.15) !important; }
body.gg-theme-light #platformTick::before { background: linear-gradient(to right,rgba(205,209,218,1),transparent) !important; }
body.gg-theme-light #platformTick::after  { background: linear-gradient(to left,rgba(205,209,218,1),transparent) !important; }
body.gg-theme-light .pt-item { color: #4a5568 !important; }
body.gg-theme-light .pt-badge { color: #718096 !important; }
body.gg-theme-light .pt-avail { background: rgba(0,168,102,.12) !important; color: #00a866 !important; }

/* ── Dropdown ── */
body.gg-theme-light .dropdown-menu { background: #e2e6ec !important; border-color: rgba(74,85,104,.20) !important; box-shadow: 0 8px 30px rgba(0,0,0,.15) !important; }
body.gg-theme-light .dropdown-divider { background: rgba(74,85,104,.14) !important; }

/* ── General text ── */
body.gg-theme-light, body.gg-theme-light p, body.gg-theme-light span,
body.gg-theme-light li, body.gg-theme-light label { color: #4a5568; }
body.gg-theme-light h1,body.gg-theme-light h2,body.gg-theme-light h3,
body.gg-theme-light h4,body.gg-theme-light h5,body.gg-theme-light h6 { color: #1a202c; }

/* ════ PAGE-SPECIFIC: Leaderboard ════ */
body.gg-theme-light .lb-table-wrap {
  background: #d8dce5 !important;
  border: 1.5px solid rgba(74,85,104,.22) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.10) !important;
}
body.gg-theme-light .lb-head { color: #718096 !important; border-bottom-color: rgba(74,85,104,.15) !important; }
body.gg-theme-light .lb-row { border-bottom-color: rgba(74,85,104,.10) !important; }
body.gg-theme-light .lb-row:hover { background: rgba(74,85,104,.07) !important; }
/* kill the blue "me" row */
body.gg-theme-light .lb-row.me { background: rgba(74,85,104,.12) !important; border: 1px solid rgba(74,85,104,.35) !important; border-radius: 8px !important; margin: .3rem !important; }
body.gg-theme-light .player-name { color: #1a202c !important; }
body.gg-theme-light .metric-val { color: #2d3748 !important; }
body.gg-theme-light .pts-val { color: #718096 !important; }
body.gg-theme-light .rank-other { background: rgba(74,85,104,.14) !important; color: #4a5568 !important; }
body.gg-theme-light .reset-info { color: #a0aec0 !important; }
/* kill the blue "my rank" banner */
body.gg-theme-light .my-rank-banner { background: rgba(74,85,104,.10) !important; border-color: rgba(74,85,104,.30) !important; }
body.gg-theme-light .prize-card { background: #dde1e8 !important; }
body.gg-theme-light .prize-card.p1 { border-color: rgba(184,152,48,.55) !important; }
body.gg-theme-light .prize-card.p2 { border-color: rgba(160,160,160,.55) !important; }
body.gg-theme-light .prize-card.p3 { border-color: rgba(160,90,35,.45) !important; }
body.gg-theme-light .prize-reward { color: #718096 !important; }
body.gg-theme-light .prize-reward strong { color: #1a202c !important; }
body.gg-theme-light .page-hero { background: #d8dce5 !important; border-color: rgba(74,85,104,.22) !important; }
body.gg-theme-light .page-hero h1 { background: linear-gradient(135deg,#2d3748,#718096) !important; -webkit-background-clip:text !important; background-clip:text !important; color:transparent !important; }
body.gg-theme-light .page-hero p { color: #718096 !important; }
/* kill any remaining blue/cyan accent colors on this page */
body.gg-theme-light [style*="color:#00ffff"],
body.gg-theme-light [style*="color: #00ffff"],
body.gg-theme-light [style*="color:#0084ff"],
body.gg-theme-light [style*="color: #0084ff"] { color: #4a5568 !important; }

/* ════ PAGE-SPECIFIC: How It Works ════ */
body.gg-theme-light .hiw-hero {
  background: linear-gradient(180deg,rgba(210,215,224,.98),rgba(200,205,216,.98)) !important;
  border-color: rgba(74,85,104,.25) !important;
}
body.gg-theme-light .hiw-hero::before { background: rgba(205,210,220,.88) !important; border-bottom-color: rgba(74,85,104,.15) !important; }
body.gg-theme-light .hiw-badge { background: rgba(74,85,104,.12) !important; border-color: rgba(74,85,104,.35) !important; color: #4a5568 !important; box-shadow: none !important; }
body.gg-theme-light .step-card {
  background: #e2e6ec !important;
  border-color: rgba(74,85,104,.20) !important;
  box-shadow: 0 4px 24px rgba(0,0,0,.10) !important;
}
body.gg-theme-light .step-card:hover { background: #dde2e9 !important; box-shadow: 0 8px 32px rgba(0,0,0,.15) !important; }
body.gg-theme-light .step-num { background: #d0d5de !important; }
body.gg-theme-light .pchip { background: rgba(74,85,104,.10) !important; border-color: rgba(74,85,104,.20) !important; color: #718096 !important; }
body.gg-theme-light .loyalty-banner { background: rgba(74,85,104,.08) !important; border-color: rgba(74,85,104,.22) !important; }
body.gg-theme-light .loy-item { background: rgba(74,85,104,.09) !important; border-color: rgba(74,85,104,.16) !important; }
body.gg-theme-light .hiw-cta { background: #e2e6ec !important; border-color: rgba(74,85,104,.20) !important; }
body.gg-theme-light .btn-outline { border-color: rgba(74,85,104,.45) !important; color: #4a5568 !important; }
body.gg-theme-light .sup-item { background: rgba(74,85,104,.08) !important; border-color: rgba(74,85,104,.14) !important; color: #4a5568 !important; }

/* ════ PAGE-SPECIFIC: Promotions ════ */
body.gg-theme-light .promo-card {
  background: #e2e6ec !important;
  border-color: rgba(74,85,104,.20) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.09) !important;
}
body.gg-theme-light .promo-card:hover { background: #dde2e9 !important; box-shadow: 0 8px 30px rgba(0,0,0,.15) !important; transform: translateY(-4px); }
body.gg-theme-light .filter-btn { background: rgba(74,85,104,.09) !important; border-color: rgba(74,85,104,.20) !important; color: #718096 !important; }
body.gg-theme-light .filter-btn:hover, body.gg-theme-light .filter-btn.active { background: rgba(74,85,104,.18) !important; border-color: #4a5568 !important; color: #2d3748 !important; }
/* ════════════════════════════════════════════════════════════════════
   NEON BLOOM THEME — balanced pink + green — site-wide
   class: gg-theme-bloom
   Pink: #ff2d78 (hot pink)  Green: #00ff88 (neon green)
   Green = default borders/titles/values; Pink = hover/highlight/buttons
   ════════════════════════════════════════════════════════════════════ */

body.gg-theme-bloom { background: linear-gradient(to bottom, #07000f, #000a07) !important; }

body.gg-theme-bloom .game-card,
body.gg-theme-bloom .hero,
body.gg-theme-bloom .hero-card,
body.gg-theme-bloom .modal-content,
body.gg-theme-bloom .modal-content h2,
body.gg-theme-bloom .bonus-card,
body.gg-theme-bloom .tier-card,
body.gg-theme-bloom .stat-card,
body.gg-theme-bloom .feature-card,
body.gg-theme-bloom .highlight-card,
body.gg-theme-bloom .reward-card,
body.gg-theme-bloom .promo-card,
body.gg-theme-bloom .promo-modal-box,
body.gg-theme-bloom .ewyp-card,
body.gg-theme-bloom [class*="-card"]:not(.mini-red):not(.mini-blue):not(.mini-gold):not(.pay-card),
body.gg-theme-bloom [class*="-panel"],
body.gg-theme-bloom [class*="-box"]:not(.auth-box) {
    background: linear-gradient(145deg, rgba(18,0,12,.90), rgba(0,10,6,.93)) !important;
    border-color: rgba(255,45,120,.18) !important;
}
body.gg-theme-bloom .game-card:hover {
    border-color: rgba(255,45,120,.55) !important;
    box-shadow: 0 0 25px rgba(255,45,120,.18), 0 0 12px rgba(37,211,102,.10) !important;
}

/* ── Hero / modal borders ── */
body.gg-theme-bloom .hero { border-color: rgba(255,45,120,.28) !important; box-shadow: 0 0 40px rgba(255,45,120,.10) !important; }
body.gg-theme-bloom .modal-content { border-color: rgba(255,45,120,.35) !important; }
body.gg-theme-bloom .dropdown-menu, body.gg-theme-bloom .dropdown-menu.enhanced {
    background: linear-gradient(145deg, rgba(14,0,9,.98), rgba(0,8,4,.98)) !important;
    border-color: rgba(255,45,120,.25) !important;
}

/* ── Inputs ── */
body.gg-theme-bloom input:not([type=checkbox]):not([type=radio]),
body.gg-theme-bloom select, body.gg-theme-bloom textarea {
    border-color: rgba(255,45,120,.22) !important;
    background: rgba(12,0,8,.7) !important;
}
body.gg-theme-bloom input:focus, body.gg-theme-bloom select:focus, body.gg-theme-bloom textarea:focus {
    border-color: #ff2d78 !important;
    box-shadow: 0 0 0 3px rgba(255,45,120,.15) !important;
}

/* ── Titles — pink ── */
body.gg-theme-bloom .game-title,
body.gg-theme-bloom .sec-title,
body.gg-theme-bloom [class*="-title"]:not(.auth-notif),
body.gg-theme-bloom .hc-title { color: #ff2d78 !important; }

body.gg-theme-bloom .hero-badge {
    color: #ff2d78 !important;
    border-color: rgba(255,45,120,.25) !important;
    background: rgba(255,45,120,.07) !important;
}

/* ── Buttons — pink→WA green gradient ── */
body.gg-theme-bloom .game-btn,
body.gg-theme-bloom .btn-register,
body.gg-theme-bloom .hc-submit,
body.gg-theme-bloom .pay-btn,
body.gg-theme-bloom [class*="btn-primary"],
body.gg-theme-bloom [class*="btn-play"] {
    background: linear-gradient(135deg, #c4006e, #ff2d78, #25D366) !important;
    background-size: 200% 200% !important;
    color: #07000f !important;
    box-shadow: 0 4px 14px rgba(255,45,120,.3) !important;
}
body.gg-theme-bloom .game-btn:hover,
body.gg-theme-bloom .hc-submit:hover,
body.gg-theme-bloom .pay-btn:hover {
    box-shadow: 0 6px 22px rgba(255,45,120,.5) !important;
    transform: translateY(-2px) !important;
}

/* ── Progress bars — WA green ── */
body.gg-theme-bloom .progress-fill,
body.gg-theme-bloom [class*="progress-fill"],
body.gg-theme-bloom [class*="progress-bar"] {
    background: linear-gradient(90deg, #128C7E, #25D366, #00ff88) !important;
}
body.gg-theme-bloom [class*="progress-track"],
body.gg-theme-bloom [class*="progress-bg"] { background: rgba(37,211,102,.10) !important; }

/* ── Section separators ── */
body.gg-theme-bloom .sec-sep {
    background: linear-gradient(90deg, transparent, #ff2d78, #25D366, transparent) !important;
}

/* ── Hero accents ── */
body.gg-theme-bloom .hs-val { color: #25D366 !important; text-shadow: 0 0 20px rgba(37,211,102,.4) !important; }
body.gg-theme-bloom .hero-perk { border-color: rgba(255,45,120,.18) !important; background: rgba(255,45,120,.05) !important; }
body.gg-theme-bloom .hero-perk i { color: #25D366 !important; }
body.gg-theme-bloom .hero-title .t2 {
    background: linear-gradient(135deg, #ff2d78, #ff79a8, #25D366) !important;
    -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important;
}

/* ── Tables ── */
body.gg-theme-bloom table { border-color: rgba(255,45,120,.10) !important; }
body.gg-theme-bloom th { background: rgba(255,45,120,.07) !important; color: #ff2d78 !important; border-color: rgba(255,45,120,.12) !important; }
body.gg-theme-bloom td { border-color: rgba(255,45,120,.06) !important; }
body.gg-theme-bloom tr:hover td { background: rgba(255,45,120,.03) !important; }

/* ── Footer ── */
body.gg-theme-bloom footer { background: rgba(5,0,3,.98) !important; border-top-color: rgba(255,45,120,.15) !important; }
body.gg-theme-bloom .foot-logo-txt { color: #ff2d78 !important; }
body.gg-theme-bloom .foot-social a:hover { background: rgba(255,45,120,.15) !important; color: #ff2d78 !important; border-color: rgba(255,45,120,.35) !important; }
body.gg-theme-bloom .foot-links a:hover { color: #25D366 !important; }

/* ── Loading screen ── */
body.gg-theme-bloom #gggLoading { background: linear-gradient(135deg, #07000f, #000a07) !important; }
body.gg-theme-bloom .ggg-load-logo { color: #ff2d78 !important; text-shadow: 0 0 30px rgba(255,45,120,.6) !important; }
body.gg-theme-bloom .ggg-load-fill { background: linear-gradient(90deg, #c4006e, #ff2d78, #25D366) !important; }

/* ── Hero registration card ── */
body.gg-theme-bloom .hero-card {
    background: linear-gradient(145deg, rgba(15,0,10,.97), rgba(0,8,5,.99)) !important;
    border-color: rgba(255,45,120,.35) !important;
    box-shadow: 0 0 50px rgba(255,45,120,.06) !important;
}
body.gg-theme-bloom .hc-form input {
    background: rgba(255,45,120,.04) !important;
    border-color: rgba(255,45,120,.18) !important;
}
body.gg-theme-bloom .hc-form input:focus {
    border-color: #ff2d78 !important;
    box-shadow: 0 0 0 3px rgba(255,45,120,.15) !important;
}

/* ── Background grid ── */
body.gg-theme-bloom .hero-bg {
    background:
        radial-gradient(ellipse 70% 60% at 15% 40%, rgba(255,45,120,.14), transparent),
        radial-gradient(ellipse 50% 50% at 85% 55%, rgba(37,211,102,.08), transparent),
        linear-gradient(160deg, #07000f 0%, #050008 50%, #000a07 100%) !important;
}
body.gg-theme-bloom .hero-bg-grid {
    background-image: linear-gradient(rgba(255,45,120,.025) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(37,211,102,.020) 1px, transparent 1px) !important;
}

/* ── Platform cards ── */
body.gg-theme-bloom .pc {
    background: linear-gradient(145deg, rgba(18,0,12,.92), rgba(0,10,6,.95)) !important;
    border-color: rgba(255,45,120,.15) !important;
}
body.gg-theme-bloom .pc::before { background: radial-gradient(ellipse at 50% 0%, rgba(255,45,120,.10), transparent 70%) !important; }
body.gg-theme-bloom .pc:hover { border-color: rgba(255,45,120,.45) !important; box-shadow: 0 8px 32px rgba(255,45,120,.18) !important; }
body.gg-theme-bloom .pc-img { filter: drop-shadow(0 4px 18px rgba(255,45,120,.28)) !important; }
body.gg-theme-bloom .pc:hover .pc-img { filter: drop-shadow(0 8px 26px rgba(255,45,120,.5)) !important; }
body.gg-theme-bloom .pc-btn.av { background: linear-gradient(135deg, #c4006e, #ff2d78) !important; color: #fff !important; }
body.gg-theme-bloom .pc-ribbon.new { background: linear-gradient(90deg, #128C7E, #25D366) !important; color: #07000f !important; }
body.gg-theme-bloom .pc-badge.av { background: rgba(37,211,102,.15) !important; color: #25D366 !important; border-color: rgba(37,211,102,.30) !important; }

/* ════ PAGE-SPECIFIC: Bloom — Leaderboard ════ */
body.gg-theme-bloom .lb-table-wrap {
    background: linear-gradient(145deg, rgba(18,0,12,.92), rgba(0,10,6,.97)) !important;
    border: 1.5px solid rgba(255,45,120,.15) !important;
}
body.gg-theme-bloom .lb-head { color: rgba(255,45,120,.50) !important; border-bottom-color: rgba(255,45,120,.10) !important; }
body.gg-theme-bloom .lb-row { border-bottom-color: rgba(255,45,120,.06) !important; }
body.gg-theme-bloom .lb-row:hover { background: rgba(255,45,120,.03) !important; }
body.gg-theme-bloom .lb-row.me { background: rgba(255,45,120,.07) !important; border: 1px solid rgba(255,45,120,.28) !important; border-radius: 8px !important; margin: .3rem !important; }
body.gg-theme-bloom .player-name { color: #ff79a8 !important; }
body.gg-theme-bloom .metric-val { color: #25D366 !important; }
body.gg-theme-bloom .pts-val { color: rgba(255,45,120,.60) !important; }
body.gg-theme-bloom .rank-other { background: rgba(255,45,120,.08) !important; color: rgba(255,100,150,.80) !important; }
body.gg-theme-bloom .my-rank-banner { background: rgba(255,45,120,.07) !important; border-color: rgba(255,45,120,.25) !important; }
body.gg-theme-bloom .reset-info { color: rgba(255,100,150,.50) !important; }
body.gg-theme-bloom .prize-card { background: linear-gradient(145deg, rgba(15,0,10,.88), rgba(0,8,5,.92)) !important; }
body.gg-theme-bloom .prize-reward { color: rgba(255,45,120,.65) !important; }
body.gg-theme-bloom .prize-reward strong { color: #ff79a8 !important; }

/* ════ PAGE-SPECIFIC: Bloom — How It Works ════ */
body.gg-theme-bloom .step-card {
    background: linear-gradient(145deg, rgba(18,0,12,.92), rgba(0,10,6,.96)) !important;
    border-color: rgba(255,45,120,.14) !important;
}
body.gg-theme-bloom .step-card:hover { border-color: rgba(255,45,120,.32) !important; box-shadow: 0 8px 32px rgba(255,45,120,.12) !important; }
body.gg-theme-bloom .hiw-badge { background: rgba(255,45,120,.08) !important; border-color: rgba(255,45,120,.35) !important; color: #ff2d78 !important; }
body.gg-theme-bloom .loyalty-banner { background: rgba(37,211,102,.04) !important; border-color: rgba(37,211,102,.18) !important; }
body.gg-theme-bloom .loy-item { background: rgba(37,211,102,.04) !important; border-color: rgba(37,211,102,.10) !important; }
body.gg-theme-bloom .hiw-cta { background: linear-gradient(145deg, rgba(18,0,12,.9), rgba(0,10,6,.95)) !important; border-color: rgba(255,45,120,.20) !important; }
body.gg-theme-bloom .pchip { background: rgba(255,45,120,.06) !important; border-color: rgba(255,45,120,.15) !important; color: rgba(255,100,150,.80) !important; }
body.gg-theme-bloom .sup-item { background: rgba(37,211,102,.04) !important; border-color: rgba(37,211,102,.10) !important; color: #25D366 !important; }

/* ════ PAGE-SPECIFIC: Bloom — Promotions ════ */
body.gg-theme-bloom .filter-btn { background: rgba(255,45,120,.06) !important; border-color: rgba(255,45,120,.18) !important; color: rgba(255,100,150,.80) !important; }
body.gg-theme-bloom .filter-btn:hover, body.gg-theme-bloom .filter-btn.active { background: rgba(255,45,120,.14) !important; border-color: #ff2d78 !important; color: #ff2d78 !important; }


/* ═══════════════════════════════════════════════════════════════════
   GOLD THEME — UNIVERSAL TEXT COLOR SYSTEM
   Base: cream-gold inheritance. Headings: bright gold.
   Blue-gray tones overridden. Exceptions: green $, loyalty, icons.
   ═══════════════════════════════════════════════════════════════════ */

/* 1. Base inheritance — all un-styled text becomes cream-gold */
body.gg-theme-gold { color: #f0dfa0; }

/* 2. Headings → bright gold */
body.gg-theme-gold h1, body.gg-theme-gold h2, body.gg-theme-gold h3,
body.gg-theme-gold h4, body.gg-theme-gold h5, body.gg-theme-gold h6 { color: #FFD700 !important; }

/* 3. Common text elements → cream-gold (overrides page class colors) */
body.gg-theme-gold p { color: #f0dfa0 !important; }
body.gg-theme-gold label { color: #f0dfa0 !important; }
body.gg-theme-gold td { color: #f0dfa0 !important; }
body.gg-theme-gold th { color: #9a8050 !important; }
body.gg-theme-gold li { color: #f0dfa0 !important; }
body.gg-theme-gold strong { color: inherit; }
body.gg-theme-gold small { color: #9a8050 !important; }

/* 4. Nav drawer links */
body.gg-theme-gold .nav-dl { color: #f0dfa0 !important; }
body.gg-theme-gold .nav-section-label { color: rgba(255,180,0,.55) !important; }

/* 5. Anchor text (not buttons) */
body.gg-theme-gold a:not([class*="btn"]):not([class*="button"]):not(.ggg-btn):not(.nav-auth-btn) { color: #f0dfa0 !important; }
body.gg-theme-gold a:not([class*="btn"]):hover { color: #FFD700 !important; }

/* 6. Muted / secondary text → dimmed gold */
body.gg-theme-gold .ggg-muted,
body.gg-theme-gold .sec-sub,
body.gg-theme-gold .hs-lbl,
body.gg-theme-gold .foot-copy,
body.gg-theme-gold [class*="-sub"]:not([class*="btn"]):not([class*="submit"]):not([class*="nav"]),
body.gg-theme-gold [class*="-desc"]:not([class*="btn"]),
body.gg-theme-gold [class*="-meta"],
body.gg-theme-gold [class*="muted"],
body.gg-theme-gold [class*="-caption"],
body.gg-theme-gold [class*="-hint"] { color: #9a8050 !important; }

/* 7. Inline style: blue-gray tones → muted gold (text elements, not icons) */
body.gg-theme-gold [style*="color:#5a6d84"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#6a7d94"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#7a8ea8"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#3d5068"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#8090a8"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#3a5068"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#4a5d74"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#99a8c0"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#c0ccd8"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#e0e4f0"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#d8e4f0"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#a0b4c8"]:not(i):not(svg) { color: #9a8050 !important; }

/* 8. Inline style: blue/cyan/purple → gold (text, not icons) */
body.gg-theme-gold [style*="color:#0084ff"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#0084FF"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#00f3ff"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#9945ff"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#627eea"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#b300ff"]:not(i):not(svg):not(button),
body.gg-theme-gold [style*="color:#2196f3"]:not(i):not(svg):not(button) { color: #FFD700 !important; }

/* 9. Inline style: white/light text → cream-gold (text, not icons) */
body.gg-theme-gold [style*="color:#fff"]:not(i):not(svg):not(button):not([class*="btn"]),
body.gg-theme-gold [style*="color:#ffffff"]:not(i):not(svg):not(button):not([class*="btn"]),
body.gg-theme-gold [style*="color:#e8edf5"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#e8eaf0"]:not(i):not(svg),
body.gg-theme-gold [style*="color:#e0e4f0"]:not(i):not(svg) { color: #f0dfa0 !important; }

/* 10. EXCEPTIONS — re-apply after broad overrides (later = wins on equal specificity) */
/* Green $ balance amounts — KEEP GREEN */
body.gg-theme-gold .ggg-user-bal { color: #00FF88 !important; }
body.gg-theme-gold .hbc-bal-val  { color: #00FF88 !important; }
body.gg-theme-gold [class*="bal-val"]    { color: #00FF88 !important; }
body.gg-theme-gold [class*="balance-amount"] { color: #00FF88 !important; }
body.gg-theme-gold [style*="color:#00ff88"] { color: #00ff88 !important; }
body.gg-theme-gold [style*="color:#00FF88"] { color: #00FF88 !important; }
body.gg-theme-gold [style*="color:#00cc66"] { color: #00cc66 !important; }
body.gg-theme-gold [style*="color:#4caf50"] { color: #4caf50 !important; }

/* Loyalty yellow — KEEP */
body.gg-theme-gold [style*="color:#FFD700"] { color: #FFD700 !important; }
body.gg-theme-gold [style*="color:#ffd700"] { color: #FFD700 !important; }
body.gg-theme-gold [style*="color:#ff9900"] { color: #ff9900 !important; }
body.gg-theme-gold [style*="color:#FFA500"] { color: #FFA500 !important; }

/* VIP rank metals — KEEP */
body.gg-theme-gold [style*="color:#CD7F32"] { color: #CD7F32 !important; }
body.gg-theme-gold [style*="color:#C0C0C0"] { color: #C0C0C0 !important; }

/* Red errors/warnings — KEEP */
body.gg-theme-gold [style*="color:#ff073a"] { color: #ff073a !important; }
body.gg-theme-gold [style*="color:#ff4757"] { color: #ff4757 !important; }

/* Crypto icon colors — KEEP */
body.gg-theme-gold [style*="color:#f7931a"] { color: #f7931a !important; }
body.gg-theme-gold [style*="color:#627eea"].crypto { color: #627eea !important; }
body.gg-theme-gold [style*="color:#9945ff"].crypto { color: #9945ff !important; }

/* Button text — keep as-is (buttons have their own themed text) */
body.gg-theme-gold button,
body.gg-theme-gold [class*="btn"]:not([class*="-lbl"]):not([class*="-text"]) { color: inherit; }


/* ═══════════════════════════════════════════════════════════════════
   UNIVERSAL BUTTON THEME SYSTEM
   All primary/action buttons use var(--gg-btn-bg) / var(--gg-btn-text).
   CSS variables are defined per theme in _topnav.php:
     :root (dark)         → blue gradient
     body.gg-theme-gold   → gold shimmer
     body.gg-theme-bloom  → pink→green
     body.gg-theme-light  → gray
   Adding a class here = automatically themed for ALL themes at once.
   Keep: WhatsApp green, danger red, close buttons.
   ═══════════════════════════════════════════════════════════════════ */

/* ── PRIMARY / ACTION BUTTONS ── */
.btn-register,
.btn-primary,
.hc-submit,
.pc-btn.av,
.auth-btn-primary,
.game-btn,
.play-btn-new,
.dep-confirm-btn,
[class*="btn-primary"]:not([class*="btn-primary-outline"]),
[class*="btn-play"],
[class*="btn-submit"],
[class*="btn-send"],
[class*="btn-confirm"] {
    background: var(--gg-btn-bg) !important;
    background-size: 200% 200% !important;
    color: var(--gg-btn-text) !important;
    box-shadow: var(--gg-btn-shadow) !important;
    border: none !important;
    animation: gggShimmer 4s ease infinite !important;
}
.btn-register:hover, .btn-primary:hover, .hc-submit:hover,
.pc-btn.av:hover, .auth-btn-primary:hover, .game-btn:hover,
[class*="btn-primary"]:hover, [class*="btn-play"]:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.1) !important;
}

/* ── GHOST / OUTLINE BUTTONS ── */
.btn-login,
.btn-ghost,
.btn-outline,
.auth-btn-ghost,
.mth-btn,
.nav-auth-btn.login {
    background: var(--gg-accent-soft) !important;
    border-color: var(--gg-btn-ghost-b) !important;
    color: var(--gg-btn-ghost-t) !important;
}
.btn-login:hover, .btn-ghost:hover, .btn-outline:hover,
.auth-btn-ghost:hover, .mth-btn:hover, .nav-auth-btn.login:hover {
    background: var(--gg-accent-soft) !important;
    border-color: var(--gg-accent) !important;
    color: var(--gg-accent) !important;
    filter: brightness(1.15) !important;
}

/* ── CHIP / FILTER BUTTONS ── */
.category-btn,
.filter-btn,
.tab-btn,
[class*="chip-btn"],
[class*="tag-btn"] {
    background: var(--gg-accent-soft) !important;
    border-color: var(--gg-border) !important;
    color: var(--gg-accent) !important;
}
.category-btn:hover, .category-btn.active,
.filter-btn:hover, .filter-btn.active,
.tab-btn:hover, .tab-btn.active {
    background: var(--gg-btn-bg) !important;
    color: var(--gg-btn-text) !important;
    border-color: transparent !important;
}

/* ── NAV DRAWER AUTH BUTTONS ── */
.nav-auth-btn.register {
    background: var(--gg-btn-bg) !important;
    color: var(--gg-btn-text) !important;
    box-shadow: var(--gg-btn-shadow) !important;
}

/* ── GENERAL .btn BASE CLASS ── */
.btn {
    background: var(--gg-btn-bg);
    color: var(--gg-btn-text);
    box-shadow: var(--gg-btn-shadow);
}

/* ── EXCEPTIONS: keep functional/status button colors ── */
/* WhatsApp — always green */
.btn-wa { background: #25D366 !important; color: #fff !important; box-shadow: 0 4px 14px rgba(37,211,102,.35) !important; }
/* Danger / delete */
.btn-red, .btn-danger, .btn-close,
[class*="btn-danger"], [class*="btn-delete"] {
    background: linear-gradient(135deg,#cc0020,#ff073a) !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(255,7,58,.3) !important;
}
/* Success (non-primary green action) */
.btn-success { background: linear-gradient(135deg,#00a866,#00ff88) !important; color: #000 !important; }
/* Warning */
.btn-warn { background: linear-gradient(135deg,#b8860b,#FFD700) !important; color: #000 !important; }
/* Facebook */
.auth-btn-facebook { background: #1877f2 !important; color: #fff !important; }
/* Disabled */
.pc-btn.dis,
[disabled], [class*="btn"][disabled] {
    background: var(--gg-accent-soft) !important;
    color: var(--gg-dim) !important;
    cursor: default !important;
    box-shadow: none !important;
    animation: none !important;
}


/* ═══════════════════════════════════════════════════════════════════
   GOLD THEME — MISSING PAGE-SPECIFIC OVERRIDES
   Classes not caught by previous blocks. Covers all 15+ pages.
   ═══════════════════════════════════════════════════════════════════ */

/* ── Promotions banner (appears on most pages) ── */
body.gg-theme-gold .promotions-banner {
  background: linear-gradient(135deg,#0a0800,#050400) !important;
  border-bottom-color: rgba(255,215,0,.25) !important;
}
/* ── Page hero sections (promotions, about, contact, etc.) ── */
body.gg-theme-gold .page-hero,
body.gg-theme-gold .hub-hero,
body.gg-theme-gold .about-hero,
body.gg-theme-gold .contact-hero,
body.gg-theme-gold .hiw-hero,
body.gg-theme-gold .vault-hero,
body.gg-theme-gold .loy-hero,
body.gg-theme-gold .vip-hero,
body.gg-theme-gold .games-hero,
body.gg-theme-gold .rankings-hero,
body.gg-theme-gold .txn-hero,
body.gg-theme-gold .profile-hero,
body.gg-theme-gold .ref-hero {
  background: linear-gradient(145deg,rgba(8,8,8,.95),rgba(0,0,0,.98)) !important;
  border-color: rgba(255,215,0,.25) !important;
}
/* ── Pay section on index ── */
body.gg-theme-gold .pay-section {
  background: rgba(5,4,0,.8) !important;
  border-color: rgba(255,215,0,.15) !important;
}
/* ── About page specific ── */
body.gg-theme-gold .about-stat-card,
body.gg-theme-gold .mission-card,
body.gg-theme-gold .about-cta {
  background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important;
  border-color: rgba(255,215,0,.2) !important;
}
/* ── Rankings page cards ── */
body.gg-theme-gold .rank-card,
body.gg-theme-gold .rank-row,
body.gg-theme-gold .rankings-table,
body.gg-theme-gold .daily-competition { background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important; border-color: rgba(255,215,0,.18) !important; }
/* ── Vault page ── */
body.gg-theme-gold .vault-card,
body.gg-theme-gold .vault-section { background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important; border-color: rgba(255,215,0,.2) !important; }
/* ── Profile page ── */
body.gg-theme-gold .profile-card,
body.gg-theme-gold .profile-section { background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important; border-color: rgba(255,215,0,.2) !important; }
/* ── My Transactions ── */
body.gg-theme-gold .txn-card,
body.gg-theme-gold .txn-row { background: rgba(8,8,8,.95) !important; border-color: rgba(255,215,0,.15) !important; }
/* ── Gamehub specific ── */
body.gg-theme-gold .hub-card,
body.gg-theme-gold .gh-card,
body.gg-theme-gold .game-hub-card { background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important; border-color: rgba(255,215,0,.2) !important; }
/* ── Modals ── */
body.gg-theme-gold .modal,
body.gg-theme-gold .modal-overlay { background: rgba(0,0,0,.92) !important; }
body.gg-theme-gold .modal-box,
body.gg-theme-gold .modal-inner,
body.gg-theme-gold .modal-content,
body.gg-theme-gold .auth-modal-box,
body.gg-theme-gold .pp-modal,
body.gg-theme-gold [class*="modal-box"],
body.gg-theme-gold [class*="modal-inner"] { background: linear-gradient(145deg,rgba(12,12,12,.95),rgba(0,0,0,.98)) !important; border-color: rgba(255,215,0,.3) !important; }
/* ── Dropdown menus (all pages) ── */
body.gg-theme-gold .dropdown-menu,
body.gg-theme-gold .dropdown-menu.enhanced,
body.gg-theme-gold [class*="dropdown-menu"] { background: linear-gradient(145deg,rgba(10,10,10,.99),rgba(0,0,0,.99)) !important; border-color: rgba(255,215,0,.3) !important; }

/* ── ATTRIBUTE SELECTORS: catch ALL hardcoded blue inline backgrounds ── */
/* These cover any element with style="background:rgba(10,26,42...)" etc. */
body.gg-theme-gold [style*="rgba(10,26,42"],
body.gg-theme-gold [style*="rgba(5,12,22"],
body.gg-theme-gold [style*="rgba(7,16,31"],
body.gg-theme-gold [style*="rgba(13,30,53"],
body.gg-theme-gold [style*="rgba(3,9,24"],
body.gg-theme-gold [style*="#0a1a2a"],
body.gg-theme-gold [style*="#07101f"],
body.gg-theme-gold [style*="#0d1e35"],
body.gg-theme-gold [style*="#0A1628"],
body.gg-theme-gold [style*="#07111f"],
body.gg-theme-gold [style*="#030918"],
body.gg-theme-gold [style*="#050D20"],
body.gg-theme-gold [style*="#0a1628"],
body.gg-theme-gold [style*="#0A0700"] {
  background: linear-gradient(145deg,rgba(12,12,12,.92),rgba(0,0,0,.96)) !important;
  border-color: rgba(255,215,0,.2) !important;
}

/* ── CSS VARIABLE OVERRIDES: cover any page using var(--card) var(--bg) etc. ── */
body.gg-theme-gold {
  --card:    rgba(8,8,8,.97)  !important;
  --card2:   rgba(12,12,12,.97) !important;
  --bg:      #000000 !important;
  --bg2:     #050505 !important;
  --bg3:     #080808 !important;
  --panel:   rgba(8,8,8,.95)  !important;
  --surface: rgba(12,12,12,.95) !important;
  --border:  rgba(255,215,0,0.22) !important;
  --border-color: rgba(255,215,0,0.22) !important;
  --cyan:    #FFD700 !important;
  --accent:  #FFD700 !important;
  --neon-blue: #FFD700 !important;
  --neon-purple: #b8860b !important;
  --purple:  #b8860b !important;
  --blue:    #FFD700 !important;
  --primary: #FFD700 !important;
  --text:    #f0dfa0 !important;
  --text-color: #f0dfa0 !important;
  --muted:   #9a8050 !important;
  --dim:     rgba(255,215,0,.42) !important;
  --color-primary: #FFD700 !important;
  --color-text: #f0dfa0 !important;
}


/* ═══════════════════════════════════════════════════════════════════
   BLOOM THEME — PAGE-SPECIFIC + ATTRIBUTE SELECTOR OVERRIDES
   ═══════════════════════════════════════════════════════════════════ */
body.gg-theme-bloom .promotions-banner { background: linear-gradient(135deg,rgba(9,0,6,.97),rgba(0,5,3,.97)) !important; border-bottom-color: rgba(255,45,120,.25) !important; }
body.gg-theme-bloom .page-hero, body.gg-theme-bloom .hub-hero,
body.gg-theme-bloom .about-hero, body.gg-theme-bloom .contact-hero,
body.gg-theme-bloom .txn-hero, body.gg-theme-bloom .profile-hero,
body.gg-theme-bloom .rankings-hero, body.gg-theme-bloom .ref-hero { background: linear-gradient(145deg,rgba(16,0,11,.95),rgba(0,8,5,.98)) !important; border-color: rgba(255,45,120,.25) !important; }
body.gg-theme-bloom .pay-section { background: rgba(5,0,3,.85) !important; border-color: rgba(255,45,120,.15) !important; }
body.gg-theme-bloom .about-stat-card, body.gg-theme-bloom .mission-card, body.gg-theme-bloom .about-cta,
body.gg-theme-bloom .hub-card, body.gg-theme-bloom .vault-card, body.gg-theme-bloom .profile-card,
body.gg-theme-bloom .rank-card, body.gg-theme-bloom .txn-card,
body.gg-theme-bloom .dropdown-menu, body.gg-theme-bloom .dropdown-menu.enhanced,
body.gg-theme-bloom [class*="modal-box"], body.gg-theme-bloom .modal-content { background: linear-gradient(145deg,rgba(14,0,10,.92),rgba(0,8,5,.96)) !important; border-color: rgba(255,45,120,.2) !important; }
body.gg-theme-bloom [style*="rgba(10,26,42"], body.gg-theme-bloom [style*="rgba(5,12,22"],
body.gg-theme-bloom [style*="rgba(7,16,31"], body.gg-theme-bloom [style*="rgba(13,30,53"],
body.gg-theme-bloom [style*="#0a1a2a"], body.gg-theme-bloom [style*="#07101f"],
body.gg-theme-bloom [style*="#0d1e35"], body.gg-theme-bloom [style*="#07111f"],
body.gg-theme-bloom [style*="#030918"] { background: linear-gradient(145deg,rgba(14,0,10,.92),rgba(0,8,5,.96)) !important; border-color: rgba(255,45,120,.2) !important; }
body.gg-theme-bloom { --card:rgba(8,0,6,.97) !important; --bg:#07000f !important; --bg2:#000a07 !important; --border:rgba(255,45,120,.22) !important; --cyan:#ff2d78 !important; --accent:#ff2d78 !important; --neon-blue:#ff2d78 !important; --neon-purple:#25D366 !important; --text:#f0d8e8 !important; --muted:#906070 !important; }

/* ═══════════════════════════════════════════════════════════════════
   LIGHT THEME — PAGE-SPECIFIC + ATTRIBUTE SELECTOR OVERRIDES
   ═══════════════════════════════════════════════════════════════════ */
body.gg-theme-light .promotions-banner { background: rgba(245,246,248,.95) !important; border-bottom-color: rgba(74,85,104,.15) !important; }
body.gg-theme-light .page-hero, body.gg-theme-light .hub-hero,
body.gg-theme-light .about-hero, body.gg-theme-light .contact-hero,
body.gg-theme-light .txn-hero, body.gg-theme-light .profile-hero,
body.gg-theme-light .rankings-hero, body.gg-theme-light .ref-hero { background: linear-gradient(145deg,#d6dae3,#cdd1da) !important; border-color: rgba(74,85,104,.2) !important; }
body.gg-theme-light .pay-section { background: rgba(220,224,232,.8) !important; border-color: rgba(74,85,104,.15) !important; }
body.gg-theme-light .about-stat-card, body.gg-theme-light .mission-card, body.gg-theme-light .about-cta,
body.gg-theme-light .hub-card, body.gg-theme-light .vault-card, body.gg-theme-light .profile-card,
body.gg-theme-light .rank-card, body.gg-theme-light .txn-card,
body.gg-theme-light .dropdown-menu, body.gg-theme-light .dropdown-menu.enhanced,
body.gg-theme-light [class*="modal-box"], body.gg-theme-light .modal-content { background: #e2e6ec !important; border-color: rgba(74,85,104,.2) !important; color: #1a202c !important; }
body.gg-theme-light [style*="rgba(10,26,42"], body.gg-theme-light [style*="rgba(5,12,22"],
body.gg-theme-light [style*="rgba(7,16,31"], body.gg-theme-light [style*="rgba(13,30,53"],
body.gg-theme-light [style*="#0a1a2a"], body.gg-theme-light [style*="#07101f"],
body.gg-theme-light [style*="#0d1e35"], body.gg-theme-light [style*="#07111f"],
body.gg-theme-light [style*="#030918"] { background: #e2e6ec !important; border-color: rgba(74,85,104,.2) !important; }
body.gg-theme-light { --card:#e2e6ec !important; --bg:#cdd1da !important; --bg2:#c8cdd8 !important; --border:rgba(74,85,104,.2) !important; --cyan:#4a5568 !important; --accent:#4a5568 !important; --neon-blue:#4a5568 !important; --text:#1a202c !important; --muted:#718096 !important; }
