/* 
    MIDNIGHT LUXURY DESIGN SYSTEM
    Design: Dark Mode / High Contrast / Neon Accents
    Typography: Outfit (Sans-Serif)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --primary: #ffffff;
    --primary-light: #faf8f5;
    --secondary: #b58d3d; /* Luxurious Champagne Gold */
    --accent: #aa7c11; /* Executive Bronze Gold */
    --accent-glow: rgba(170, 124, 17, 0.08);
    --background: #fdfbf7; /* Royal Warm Off-White / Cream */
    --card-bg: #ffffff;
    --text-main: #1c1912; /* Deep Obsidian Charcoal */
    --text-muted: #7d7568; /* Elegant Taupe/Bronze Grey */
    --success: #2e7d32;
    --danger: #c62828;
    --border: #e6dfd3;
    --shadow-lg: 0 15px 35px rgba(28, 25, 18, 0.04);
    
    /* Responsive Spacing */
    --container-padding: 1.5rem;
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--background); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent), var(--secondary)); border-radius: 10px; }

html { scroll-behavior: smooth; }
body { 
    font-family: 'Outfit', sans-serif; 
    background: var(--background); 
    color: var(--text-main); 
    min-height: 100vh; 
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== GLASSMORPHISM UTILITY ===== */
.glass-panel {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 141, 61, 0.12);
    border-radius: 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(170, 124, 17, 0.2); } 70% { box-shadow: 0 0 0 10px rgba(170, 124, 17, 0); } 100% { box-shadow: 0 0 0 0 rgba(170, 124, 17, 0); } }
@keyframes neon-glow { 0%, 100% { text-shadow: 0 0 10px var(--secondary), 0 0 20px var(--secondary); } 50% { text-shadow: 0 0 5px var(--secondary), 0 0 10px var(--secondary); } }

/* ===== TICKER ===== */
.ticker-wrap { background: #f5f1e8; padding: 10px 0; border-bottom: 1px solid var(--border); }
.ticker-text { 
    display: inline-block; 
    white-space: nowrap; 
    animation: ticker 35s linear infinite; 
    font-size: 13px; 
    font-weight: 600; 
    color: var(--accent); 
    padding-left: 100%; 
}

/* ===== HEADER ===== */
header { 
    background: var(--primary); 
    padding: 30px 15px; 
    text-align: center; 
    border-bottom: 1px solid var(--border);
}
.site-title { 
    font-size: clamp(24px, 8vw, 42px); 
    font-weight: 900; 
    letter-spacing: -1px;
    color: var(--text-main);
    text-transform: uppercase;
}
.site-title span { color: var(--accent); }
.site-subtitle { font-size: clamp(9px, 3vw, 12px); color: var(--text-muted); letter-spacing: 3px; text-transform: uppercase; margin-top: 5px; }


/* ===== NAV ===== */
.nav-mobile-btn { display: none; }
nav.main-nav { 
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(10px);
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 15px; 
    padding: 15px; 
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}
nav.main-nav a { 
    font-size: 13px; 
    font-weight: 700; 
    color: var(--text-muted); 
    padding: 8px 15px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
nav.main-nav a:hover, nav.main-nav a.active { 
    color: var(--accent) !important; 
    border-color: var(--accent) !important; 
}

/* Premium Login/Join Button in Navbar */
nav.main-nav .nav-login-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(170, 124, 17, 0.15) !important;
    border: none !important;
    margin-left: 10px;
    align-self: center;
    text-shadow: none !important;
}
nav.main-nav .nav-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(170, 124, 17, 0.25) !important;
    opacity: 0.95;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .nav-mobile-btn { 
        display: flex; 
        align-items: center;
        justify-content: center;
        width: calc(100% - 30px); 
        margin: 15px auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 244, 0.95) 100%);
        backdrop-filter: blur(10px);
        color: var(--accent); 
        padding: 14px; 
        text-align: center; 
        font-weight: 800; 
        border: 1px solid var(--border);
        border-radius: 14px;
        cursor: pointer;
        font-size: 13px;
        letter-spacing: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(28, 25, 18, 0.04);
    }
    .nav-mobile-btn:hover, .nav-mobile-btn:active {
        border-color: var(--accent);
        box-shadow: 0 12px 30px rgba(170, 124, 17, 0.1);
        transform: translateY(-2px);
    }
    
    nav.main-nav { 
        display: flex; 
        flex-direction: column; 
        gap: 0; 
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw !important;
        height: 100vh;
        background: rgba(253, 251, 247, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 9999;
        justify-content: center;
        border-bottom: none;
        overflow-y: auto;
        overflow-x: hidden;
        
        /* Smooth Transition */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    nav.main-nav.active { 
        opacity: 1; 
        pointer-events: auto; 
        transform: translateY(0); 
    }
    
    nav.main-nav .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        height: auto !important;
        padding: 30px 0 !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
    }
    
    nav.main-nav a { 
        width: 100%; 
        text-align: left; 
        padding: 16px 30px !important;
        border-bottom: 1px solid rgba(28, 25, 18, 0.03); 
        border-left: 4px solid transparent;
        font-size: 16px;
        color: var(--text-main);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    nav.main-nav a:hover, nav.main-nav a.active { 
        color: var(--accent) !important; 
        background: rgba(181, 141, 61, 0.04) !important;
        text-shadow: none;
        border-left: 4px solid var(--accent) !important;
        padding-left: 40px !important;
    }
    
    nav.main-nav .nav-login-btn {
        width: auto !important;
        margin: 25px 0 0 30px !important;
        padding: 14px 35px !important;
        border-radius: 14px !important;
        text-align: center;
        align-self: flex-start;
        display: inline-block !important;
    }
    nav.main-nav .nav-login-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(170, 124, 17, 0.2) !important;
    }
    
    nav.main-nav .mobile-nav-brand {
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: 100%;
        text-align: left !important;
    }
    nav.main-nav .mobile-nav-footer {
        padding-left: 30px !important;
        padding-right: 30px !important;
        width: 100%;
        text-align: left !important;
    }
    
    /* Close btn in nav */
    .nav-close { 
        position: fixed; 
        top: 25px; 
        right: 25px; 
        color: var(--text-main); 
        font-size: 26px; 
        cursor: pointer;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(28, 25, 18, 0.03);
        border: 1px solid rgba(28, 25, 18, 0.08);
        border-radius: 50%;
        transition: all 0.3s ease;
        z-index: 10000;
    }
    .nav-close:hover {
        background: rgba(255, 33, 102, 0.1);
        border-color: rgba(255, 33, 102, 0.3);
        color: var(--danger);
        transform: rotate(90deg);
    }
}



/* ===== CONTAINER ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== HERO RESULT (BIG) ===== */
.hero-result-card {
    background: linear-gradient(145deg, #ffffff, #faf8f5);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 900px;
}
.hero-result-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(181, 141, 61, 0.04) 0%, transparent 70%);
    pointer-events: none;
}
.hero-result-card .live-badge {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--danger);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 5px 15px rgba(198, 40, 40, 0.3);
}
.hero-result-card h2 { 
    font-size: clamp(16px, 4vw, 24px); 
    color: var(--accent); 
    margin-bottom: 10px; 
    font-weight: 800; 
    text-transform: uppercase; 
}
.hero-result-card .big-number { 
    font-size: clamp(60px, 15vw, 150px); 
    font-weight: 900; 
    color: var(--text-main); 
    line-height: 0.9;
    margin: 10px 0;
}
.hero-result-card .game-name { 
    font-size: clamp(10px, 3vw, 14px); 
    color: var(--text-muted); 
    font-weight: 700; 
}

@media (max-width: 768px) {
    .hero-result-card { margin: 20px 10px; padding: 50px 15px; border-radius: 20px; }
    .hero-result-card .live-badge { top: 20px; font-size: 9px; }
}

.hero-result-card .game-name { font-size: 14px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 5px; margin-top: 10px; }

/* ===== GAMES GRID ===== */
.games-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 20px; 
    margin: 30px 0;
}
.game-card-luxury {
    background: linear-gradient(145deg, #ffffff, #faf8f5);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.game-card-luxury:hover { 
    border-color: var(--secondary); 
    transform: translateY(-8px) scale(1.02); 
    box-shadow: var(--shadow-lg);
}
.game-card-luxury h4 { font-size: 20px; font-weight: 800; color: var(--text-main); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.game-card-luxury .time { font-size: 11px; color: var(--text-muted); font-weight: 700; margin-bottom: 25px; display: block; letter-spacing: 2px; }
.game-card-luxury .result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(28, 25, 18, 0.02);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(28, 25, 18, 0.03);
    margin-top: auto;
}
.result-box .label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; font-weight: 700; }
.result-box .val { font-size: 32px; font-weight: 900; color: var(--accent); }
.result-box .val.today { color: var(--secondary); animation: none; }

/* ===== CHART AREA ===== */
.section-title { font-size: 24px; font-weight: 900; margin-bottom: 20px; text-align: center; color: var(--text-main); }
.luxury-table-wrap { 
    overflow-x: auto; 
    -webkit-overflow-scrolling: touch; 
    border-radius: 20px; 
    position: relative;
}
.luxury-table { width: 100%; border-collapse: collapse; min-width: 800px; }
.luxury-table th { background: #faf8f5; color: var(--accent); padding: 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid var(--border); }
.luxury-table td { padding: 12px; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 700; color: var(--text-main); text-align: center; }

/* Sticky Day Column for Mobile */
.luxury-table th:first-child, .luxury-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #faf8f5;
    border-right: 2px solid var(--border);
    min-width: 60px;
}
.luxury-table tr:hover { background: rgba(28, 25, 18, 0.02); }


/* ===== LUXURY CHART TABLE ===== */
.chart-record-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.chart-record-table th {
    background: #faf8f5;
    color: var(--accent);
    padding: 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid var(--border);
}
.chart-record-table td {
    padding: 12px;
    border: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-main);
}
.chart-record-table .date-col {
    background: #faf8f5;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    width: 120px;
}
.chart-record-table tr:hover td { background: rgba(28, 25, 18, 0.02); }
.chart-record-table .result-active { color: var(--secondary) !important; text-shadow: none; }

/* ===== INNER PAGE HEADER ===== */
.inner-page-header {
    background: linear-gradient(to bottom, #faf8f5, var(--background));
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.inner-page-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 5px;
}
.breadcrumb-item a { color: var(--secondary); font-weight: 700; }
.breadcrumb-item.active { color: var(--text-muted); }

/* ===== FOOTER ===== */
footer { 
    background: #faf8f5; 
    padding: 100px 0 40px; 
    border-top: 1px solid rgba(181, 141, 61, 0.25); 
    color: var(--text-main); 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px;
}
.footer-col h3 { 
    color: var(--accent); 
    font-size: 20px; 
    font-weight: 900; 
    margin-bottom: 25px; 
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 15px; list-style: none; }
.footer-col ul li a { 
    color: var(--text-muted); 
    font-size: 14px; 
    font-weight: 600; 
    transition: 0.3s;
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 8px; }

.footer-bottom { 
    padding-top: 30px; 
    border-top: 1px solid rgba(181, 141, 61, 0.15); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright { color: var(--text-muted); font-size: 12px; font-weight: 600; }


/* ===== FLOAT BTNS ===== */
.float-btns { 
    position: fixed; 
    bottom: 30px; 
    right: 30px; 
    display: flex; 
    flex-direction: column; 
    gap: 15px; 
    z-index: 2000; 
}
.float-btn { 
    width: 55px; 
    height: 55px; 
    border-radius: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #fff; 
    font-size: 22px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4); 
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .float-btns { bottom: 20px; right: 20px; gap: 10px; }
    .float-btn { width: 48px; height: 48px; font-size: 18px; border-radius: 14px; }
    
    footer { padding: 60px 0 30px; }
    .footer-grid { gap: 30px; margin-bottom: 40px; }
    .footer-col h3 { font-size: 16px; margin-bottom: 15px; }
}

.float-btn:hover { transform: translateY(-5px) scale(1.1); }
.btn-refresh { background: #ffffff; color: var(--secondary); border-color: var(--secondary); box-shadow: 0 10px 25px rgba(28, 25, 18, 0.05); }
.btn-whatsapp { background: #25d366; box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3); }

/* ===== UTILITIES ===== */
.text-muted { color: var(--text-muted) !important; }
.small { font-size: 13px !important; }
.uppercase { text-transform: uppercase; }
.letter-spacing-1 { letter-spacing: 1px; }

/* ===== REUSABLE BOXES ===== */
.notice-box-dark { background: #ffffff; border: 1px solid var(--border); border-radius: 16px; padding: 25px; margin: 30px 0; text-align: center; }
.notice-box-dark h3 { font-size: 18px; color: var(--accent); margin-bottom: 10px; }
.notice-box-dark p { color: var(--text-muted); font-size: 14px; }

/* ===== MIDNIGHT LUXURY REDESIGN STYLES ===== */
.premium-card-dark {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 248, 245, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(28, 25, 18, 0.02);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.premium-card-dark:hover {
    border-color: rgba(181, 141, 61, 0.2);
    box-shadow: 0 25px 55px rgba(181, 141, 61, 0.08);
}
.premium-card-header {
    background: rgba(28, 25, 18, 0.02);
    border-bottom: 1px solid var(--border);
    padding: 20px 25px;
}
.premium-card-header h4 {
    color: var(--text-main);
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.premium-input-field {
    background: #ffffff !important;
    border: 1px solid var(--border) !important;
    color: var(--text-main) !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}
.premium-input-field::placeholder {
    color: var(--text-muted) !important;
    opacity: 0.7;
    font-weight: 400;
}
.premium-input-field:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 15px rgba(181, 141, 61, 0.15) !important;
    background: #ffffff !important;
    outline: none !important;
}
.premium-input-field:disabled, .premium-input-field[readonly] {
    background: #faf8f5 !important;
    border-color: var(--border) !important;
    color: var(--text-muted) !important;
    cursor: not-allowed;
}

.contact-label {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--text-muted);
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s;
}
.premium-input-field:focus + .contact-label,
.premium-input-field:focus ~ .contact-label {
    color: var(--secondary);
}

.premium-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 30px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 25px rgba(181, 141, 61, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}
.premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181, 141, 61, 0.35) !important;
    opacity: 0.95;
}
.premium-btn:active {
    transform: translateY(-1px);
}

.premium-button-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 14px 30px !important;
    font-weight: 800 !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 25px rgba(170, 124, 17, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    cursor: pointer;
}
.premium-button-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(170, 124, 17, 0.3) !important;
    opacity: 0.95;
}
.premium-button-gold:active {
    transform: translateY(-1px);
}

/* Custom Checkboxes */
.form-check-input {
    background-color: #ffffff;
    border: 1px solid var(--border);
}
.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.form-check-input:focus {
    box-shadow: 0 0 10px rgba(181, 141, 61, 0.2);
    border-color: var(--secondary);
}

/* Statistics cards on Guessing page */
.forum-stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.8) 100%);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.forum-stats-card:hover {
    border-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.forum-stats-val {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: none;
    margin-bottom: 5px;
    line-height: 1.1;
}

/* Community guess items list */
.guess-item-premium {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.guess-item-premium:hover {
    border-color: var(--secondary);
    background: #ffffff;
    transform: translateX(4px);
}
.guess-number-glow {
    font-size: 26px;
    font-weight: 900;
    color: var(--secondary);
    background: rgba(181, 141, 61, 0.08);
    padding: 6px 18px;
    border-radius: 14px;
    border: 1px solid rgba(181, 141, 61, 0.18);
    text-shadow: none;
    display: inline-block;
    line-height: 1;
}

/* Custom notice warnings */
.premium-notice-gold {
    background: linear-gradient(135deg, rgba(181, 141, 61, 0.03) 0%, rgba(181, 141, 61, 0.06) 100%);
    border: 1px solid rgba(181, 141, 61, 0.25) !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(181, 141, 61, 0.02);
}
.premium-notice-cyan {
    background: linear-gradient(135deg, rgba(181, 141, 61, 0.03) 0%, rgba(181, 141, 61, 0.06) 100%);
    border: 1px solid rgba(181, 141, 61, 0.25) !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(181, 141, 61, 0.02);
}

/* Custom list items for Privacy page */
.premium-list-item {
    padding: 10px 0;
    display: flex;
    align-items: center;
    color: var(--text-muted);
}
.premium-list-item i {
    color: var(--secondary);
    margin-right: 12px;
    font-size: 14px;
    text-shadow: 0 0 8px rgba(223, 183, 108, 0.3);
}

/* Dynamic CMS / Prose styling */
.prose {
    font-size: 15px;
    line-height: 1.8;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: var(--text-main);
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.prose h2 {
    font-size: 1.5rem;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
    padding-bottom: 8px;
}
.prose h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    border-bottom: 1px solid var(--border);
    padding-bottom: 6px;
}
.prose p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.prose ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.prose ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
}
.prose ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 12px;
    text-shadow: none;
    display: inline-block;
}
.prose ol {
    padding-left: 20px;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}
.prose ol li {
    margin-bottom: 10px;
}
.prose a {
    color: var(--secondary);
    font-weight: 600;
}
.prose a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* Scrollbar beautifier */
.custom-forum-scrollbar::-webkit-scrollbar {
    width: 6px;
}
.custom-forum-scrollbar::-webkit-scrollbar-track {
    background: rgba(28, 25, 18, 0.01);
    border-radius: 10px;
}
.custom-forum-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(28, 25, 18, 0.1);
    border-radius: 10px;
}
.custom-forum-scrollbar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

@media (max-width: 768px) {
    .premium-card-dark {
        border-radius: 16px;
    }
    .premium-input-field {
        padding: 12px 15px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
    .premium-btn, .premium-button-gold {
        padding: 12px 25px !important;
        font-size: 13px !important;
        border-radius: 10px !important;
    }
}

/* ==========================================================================
   ADVANCED LUXURY DASHBOARD LAYOUT STYLES
   ========================================================================== */

/* Search bar styling */
.search-container-glass {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 10px 15px;
    transition: all 0.3s ease;
    max-width: 600px;
    margin: 0 auto 35px;
    box-shadow: 0 10px 25px rgba(28, 25, 18, 0.03);
}
.search-container-glass:focus-within {
    border-color: var(--secondary);
    box-shadow: 0 0 20px rgba(181, 141, 61, 0.15);
    background: #ffffff;
}
.search-input-luxury {
    background: transparent !important;
    border: none !important;
    color: var(--text-main) !important;
    font-weight: 500;
    font-size: 15px;
    outline: none !important;
    box-shadow: none !important;
}
.search-input-luxury::placeholder {
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Stats display widget */
.stats-terminal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 30px auto 0;
}
.stat-terminal-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(181, 141, 61, 0.15);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(28, 25, 18, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.stat-terminal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--secondary));
    opacity: 0.7;
}
.stat-terminal-item:hover {
    transform: translateY(-4px);
    border-color: rgba(181, 141, 61, 0.35);
    box-shadow: 0 15px 35px rgba(181, 141, 61, 0.08);
    background: #ffffff;
}
.stat-icon-wrap {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(181, 141, 61, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 141, 61, 0.1);
    transition: all 0.3s ease;
}
.stat-terminal-item:hover .stat-icon-wrap {
    background: rgba(181, 141, 61, 0.12);
    transform: scale(1.05);
}
.stat-icon {
    font-size: 18px;
    color: var(--accent);
}
.stat-content {
    flex: 1;
}
.stat-terminal-item .value {
    font-size: 16px;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.stat-terminal-item .label {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 4px;
    letter-spacing: 1.5px;
}

/* Pulsing Green/Gold Dot */
.live-dot-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2e7d32;
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4);
    animation: statPulse 2s infinite;
    display: inline-block;
}
@keyframes statPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(46, 125, 50, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
    }
}

/* Redesigned game card layout */
.game-card-dashboard {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 248, 245, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid var(--border);
    border-left: 3px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 10px 30px rgba(28, 25, 18, 0.03);
}
.game-card-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(181, 141, 61, 0.04) 0%, transparent 60%);
    pointer-events: none;
    transition: all 0.4s ease;
}
.game-card-dashboard:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(181, 141, 61, 0.2);
    border-left-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(28, 25, 18, 0.06), 0 0 30px rgba(181, 141, 61, 0.05);
}
.game-card-dashboard h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.game-card-dashboard .time {
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}
.game-card-dashboard .time i {
    color: var(--secondary);
    font-size: 11px;
}

/* Dashboard dials container */
.dials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: auto;
}
.dial-box {
    background: rgba(28, 25, 18, 0.02);
    border: 1px solid rgba(28, 25, 18, 0.04);
    border-radius: 14px;
    padding: 12px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.dial-box .dial-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

/* Circular result badge */
.result-circle-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    transition: all 0.3s ease;
}
.result-circle-badge.yesterday {
    background: #f0ebe0;
    border: 1px solid rgba(28, 25, 18, 0.05);
    color: var(--text-main);
}
.result-circle-badge.today {
    background: linear-gradient(135deg, var(--accent) 0%, #c58b16 100%);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(170, 124, 17, 0.25);
    animation: pulse-gold 2s infinite;
}
.result-circle-badge.today.waiting {
    background: rgba(28, 25, 18, 0.03);
    border: 1px dashed rgba(28, 25, 18, 0.12);
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 700;
    box-shadow: none;
    animation: none;
}

/* History trigger button */
.card-history-link {
    margin-top: 15px;
    font-size: 10px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    opacity: 0.7;
    transition: all 0.3s ease;
}
.game-card-dashboard:hover .card-history-link {
    opacity: 1;
    color: var(--accent);
}

/* Responsive adjustment for stats and dial boxes */
@media (max-width: 576px) {
    .stats-terminal-grid {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 15px;
    }
    .stat-terminal-item {
        padding: 8px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .stat-terminal-item .label {
        margin-top: 0;
    }
    .result-circle-badge {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
}

/* ==========================================================================
   LUXURY HERO RESULT CARD STYLES
   ========================================================================== */
.luxury-hero-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border: 1px solid rgba(181, 141, 61, 0.18);
    border-radius: 28px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(181, 141, 61, 0.05);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    max-width: 750px;
    margin: 0 auto 40px;
}
.luxury-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--accent), var(--secondary), var(--accent));
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.luxury-hero-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(181, 141, 61, 0.1), 0 0 40px rgba(181, 141, 61, 0.06);
    border-color: rgba(181, 141, 61, 0.35);
}
.luxury-live-badge {
    background: #2e7d32;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    animation: liveBadgePulse 2s infinite;
    margin-bottom: 20px;
}
@keyframes liveBadgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(46, 125, 50, 0.5);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    }
}
.luxury-hero-card h2 {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #a87e22 0%, #d8b257 50%, #8c6512 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(181, 141, 61, 0.05);
}
.luxury-hero-card .big-number {
    font-size: clamp(48px, 10vw, 84px);
    font-weight: 900;
    color: #1a1712;
    line-height: 1.1;
    margin: 15px 0;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(26, 23, 18, 0.06);
    transition: all 0.3s ease;
}
.luxury-hero-card:hover .big-number {
    transform: scale(1.02);
    text-shadow: 0 15px 40px rgba(181, 141, 61, 0.15);
}
.luxury-hero-card .declared-subtext {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.luxury-hero-card .declared-subtext::before,
.luxury-hero-card .declared-subtext::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 1px;
    background: linear-gradient(to right, rgba(181, 141, 61, 0), rgba(181, 141, 61, 0.3));
}
.luxury-hero-card .declared-subtext::after {
    background: linear-gradient(135deg, rgba(181, 141, 61, 0), rgba(181, 141, 61, 0.3));
}

/* ==========================================================================
   LUCKY PICK GENERATOR WIDGET STYLES
   ========================================================================== */
.fortune-generator-card {
    background: linear-gradient(135deg, #ffffff 0%, #faf8f5 100%);
    border: 1px solid rgba(181, 141, 61, 0.18);
    border-radius: 28px;
    padding: 35px 25px;
    margin: 40px auto;
    max-width: 750px;
    box-shadow: 0 15px 45px rgba(181, 141, 61, 0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fortune-generator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 55px rgba(181, 141, 61, 0.08);
    border-color: rgba(181, 141, 61, 0.3);
}
.fortune-generator-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #a87e22 0%, #d8b257 50%, #8c6512 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fortune-generator-card p.tagline {
    font-size: 9px;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}
.fortune-balls-wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.fortune-ball {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(181, 141, 61, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: var(--text-main);
    box-shadow: 0 8px 20px rgba(181, 141, 61, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}
.fortune-ball.rolling {
    animation: rotateBall 0.15s linear infinite;
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
    background: #ffffff;
}
@keyframes rotateBall {
    0% { transform: scale(1.05) translateY(-2px) rotate(0deg); }
    50% { transform: scale(1.05) translateY(2px) rotate(180deg); }
    100% { transform: scale(1.05) translateY(-2px) rotate(360deg); }
}
.fortune-ball.glow {
    border-color: var(--secondary);
    color: var(--secondary);
    box-shadow: 0 0 20px rgba(181, 141, 61, 0.15);
    transform: scale(1.1);
}
.fortune-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.fortune-btn-gold {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    border: none;
    color: #ffffff;
    padding: 12px 28px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(170, 124, 17, 0.2);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.fortune-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(170, 124, 17, 0.3);
}
.fortune-btn-outline {
    background: transparent;
    border: 1px solid rgba(181, 141, 61, 0.3);
    color: var(--secondary);
    padding: 12px 28px;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.fortune-btn-outline:hover {
    background: rgba(181, 141, 61, 0.05);
    border-color: var(--secondary);
    transform: translateY(-3px);
}
.fortune-disclaimer {
    font-size: 9px;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 25px;
}


