/* 
    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: #000000;
    --primary-light: #111111;
    --secondary: #00e5ff; /* Neon Cyan */
    --accent: #ffd700; /* Gold */
    --accent-glow: rgba(255, 215, 0, 0.3);
    --background: #050505;
    --card-bg: #121212;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --success: #00ff88;
    --danger: #ff3366;
    --border: #222222;
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
    
    /* 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: #000; }
::-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.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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(255, 215, 0, 0.4); } 70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 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: #111; padding: 10px 0; border-bottom: 1px solid #222; }
.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: #fff;
    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(0, 0, 0, 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: #aaa; 
    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; 
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Premium Login/Join Button in Navbar */
nav.main-nav .nav-login-btn {
    background: linear-gradient(135deg, var(--accent) 0%, #ccac00 100%) !important;
    color: #000000 !important;
    border-radius: 30px !important;
    padding: 8px 20px !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2) !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(255, 215, 0, 0.4) !important;
    opacity: 0.95;
    color: #000000 !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(18, 18, 18, 0.8) 0%, rgba(8, 8, 8, 0.9) 100%);
        backdrop-filter: blur(10px);
        color: var(--accent); 
        padding: 14px; 
        text-align: center; 
        font-weight: 800; 
        border: 1px solid rgba(255, 215, 0, 0.2);
        border-radius: 14px;
        cursor: pointer;
        font-size: 13px;
        letter-spacing: 3px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    }
    .nav-mobile-btn:hover, .nav-mobile-btn:active {
        border-color: var(--accent);
        box-shadow: 0 12px 30px rgba(255, 215, 0, 0.15);
        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(5, 5, 5, 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(255,255,255,0.03); 
        border-left: 4px solid transparent;
        font-size: 16px;
        color: #ddd;
        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(255, 215, 0, 0.04) !important;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
        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(255, 215, 0, 0.3) !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: #fff; 
        font-size: 26px; 
        cursor: pointer;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 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, #111, #000);
    border-radius: 30px;
    margin: 40px auto;
    padding: 60px 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    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(0, 229, 255, 0.05) 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 0 20px rgba(239, 68, 68, 0.4);
}
.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: #fff; 
    line-height: 0.9;
    margin: 10px 0;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.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, #121212, #080808);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.03);
    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: rgba(0, 229, 255, 0.2); 
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}
.game-card-luxury h4 { font-size: 20px; font-weight: 800; color: #fff; 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(0,0,0,0.4);
    padding: 18px 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.02);
    margin-top: auto;
}
.result-box .label { font-size: 10px; color: #666; 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: neon-glow 2s infinite; }

/* ===== CHART AREA ===== */
.section-title { font-size: 24px; font-weight: 900; margin-bottom: 20px; text-align: center; color: #fff; }
.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: #000; color: var(--accent); padding: 15px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; border-bottom: 1px solid #1a1a1a; }
.luxury-table td { padding: 12px; border-bottom: 1px solid #1a1a1a; font-size: 15px; font-weight: 700; color: #eee; 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: #000;
    border-right: 2px solid var(--border);
    min-width: 60px;
}
.luxury-table tr:hover { background: #151515; }


/* ===== LUXURY CHART TABLE ===== */
.chart-record-table {
    width: 100%;
    border-collapse: collapse;
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.chart-record-table th {
    background: #000;
    color: var(--accent);
    padding: 15px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #1a1a1a;
}
.chart-record-table td {
    padding: 12px;
    border: 1px solid #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    color: #eee;
}
.chart-record-table .date-col {
    background: #080808;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    width: 120px;
}
.chart-record-table tr:hover td { background: #151515; }
.chart-record-table .result-active { color: var(--secondary) !important; text-shadow: 0 0 10px rgba(0, 229, 255, 0.3); }

/* ===== INNER PAGE HEADER ===== */
.inner-page-header {
    background: linear-gradient(to bottom, #000, #050505);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #1a1a1a;
}
.inner-page-title {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    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: #000; 
    padding: 100px 0 40px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    color: #fff; 
}
.footer-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    margin-bottom: 60px;
}
.footer-col h3 { 
    color: #fff; 
    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: #666; 
    font-size: 14px; 
    font-weight: 600; 
    transition: 0.3s;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 8px; }

.footer-bottom { 
    padding-top: 30px; 
    border-top: 1px solid rgba(255,255,255,0.05); 
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.copyright { color: #333; 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: #111; color: var(--secondary); border-color: var(--secondary); }
.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: #111; border: 1px solid #222; 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(18, 18, 18, 0.75) 0%, rgba(8, 8, 8, 0.85) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    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(0, 229, 255, 0.15);
    box-shadow: 0 25px 55px rgba(0, 229, 255, 0.08);
}
.premium-card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 25px;
}
.premium-card-header h4 {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.premium-input-field {
    background: rgba(0, 0, 0, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !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: rgba(255, 255, 255, 0.35) !important;
    font-weight: 400;
}
.premium-input-field:focus {
    border-color: var(--secondary) !important;
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25) !important;
    background: rgba(0, 229, 255, 0.01) !important;
    outline: none !important;
}
.premium-input-field:disabled, .premium-input-field[readonly] {
    background: rgba(0, 0, 0, 0.7) !important;
    border-color: rgba(255, 255, 255, 0.03) !important;
    color: rgba(255, 255, 255, 0.5) !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%, #0099ff 100%) !important;
    color: #000000 !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(0, 229, 255, 0.15) !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(0, 229, 255, 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%, #ccac00 100%) !important;
    color: #000000 !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(255, 215, 0, 0.15) !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(255, 215, 0, 0.35) !important;
    opacity: 0.95;
}
.premium-button-gold:active {
    transform: translateY(-1px);
}

/* Custom Checkboxes */
.form-check-input {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.form-check-input:focus {
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.25);
    border-color: var(--secondary);
}

/* Statistics cards on Guessing page */
.forum-stats-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    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: rgba(255, 215, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}
.forum-stats-val {
    font-size: 34px;
    font-weight: 900;
    color: var(--accent);
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
    margin-bottom: 5px;
    line-height: 1.1;
}

/* Community guess items list */
.guess-item-premium {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    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: rgba(0, 229, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(4px);
}
.guess-number-glow {
    font-size: 26px;
    font-weight: 900;
    color: var(--secondary);
    background: rgba(0, 229, 255, 0.08);
    padding: 6px 18px;
    border-radius: 14px;
    border: 1px solid rgba(0, 229, 255, 0.18);
    text-shadow: 0 0 12px rgba(0, 229, 255, 0.35);
    display: inline-block;
    line-height: 1;
}

/* Custom notice warnings */
.premium-notice-gold {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.02) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.15) !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.02);
}
.premium-notice-cyan {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.02) 0%, rgba(0, 229, 255, 0.05) 100%);
    border: 1px solid rgba(0, 229, 255, 0.15) !important;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 229, 255, 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(0, 229, 255, 0.3);
}

/* Dynamic CMS / Prose styling */
.prose {
    font-size: 15px;
    line-height: 1.8;
}
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #ffffff;
    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 rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
}
.prose h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    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: 0 0 8px rgba(0, 229, 255, 0.3);
}
.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(255, 255, 255, 0.01);
    border-radius: 10px;
}
.custom-forum-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 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;
    }
}

