:root {
    --primary: #050a14;
    --secondary: #0f1c2e;
    --neon: #00ff9d;
    --gold: #ffcc00;
    --text-main: #ffffff;
    --text-muted: #b0b0b0;
    --font-main: 'Inter', sans-serif;
}

/* GLOBAL RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    background-color: var(--primary);
    color: var(--text-main);
    font-family: var(--font-main);
    padding-top: 70px;
    padding-bottom: 70px;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(5, 10, 20, 0.98);
    border-bottom: 1px solid rgba(0, 255, 157, 0.2);
    padding: 10px 20px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.logo img { height: 40px; object-fit: contain; }
.menu-btn { font-size: 24px; color: var(--neon); cursor: pointer; }

/* SIDEBAR MENU */
.menu-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8); z-index: 2000; display: none;
}
.side-menu {
    position: fixed; top: 0; left: -280px; width: 280px; height: 100%;
    background: var(--secondary); z-index: 2001;
    transition: 0.3s ease; border-right: 1px solid var(--neon);
    display: flex; flex-direction: column;
}
.side-menu.active { left: 0; }
.menu-header { padding: 20px; background: var(--primary); display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.1); }
.menu-header img { height: 35px; }
.menu-links { overflow-y: auto; flex: 1; }
.menu-links a {
    display: block; padding: 15px 20px; color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.05); font-weight: 500;
}
.menu-links a i { margin-right: 10px; color: var(--neon); width: 25px; text-align: center; }
.menu-links a:hover { background: rgba(0, 255, 157, 0.1); color: var(--neon); padding-left: 25px; }

/* HERO SECTION */
.hero {
    text-align: center; padding: 15px 15px 5px;
    background: linear-gradient(180deg, var(--secondary) 0%, var(--primary) 100%);
}
.hero img {
    width: 100%; border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    box-shadow: 0 0 20px rgba(0, 255, 157, 0.1);
}

/* WHATSAPP STRIP */
.whatsapp-glass {
    margin: 15px; padding: 12px;
    background: linear-gradient(90deg, rgba(37,211,102,0.1), rgba(37,211,102,0.25));
    border: 1px solid rgba(37,211,102,0.4);
    border-radius: 50px;
    display: flex; align-items: center; gap: 15px;
    text-decoration: none; color: #fff;
    position: relative; overflow: hidden;
}
.whatsapp-glass::before {
    content: ""; position: absolute; top: 0; left: -50%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2.5s infinite;
}
@keyframes shine { 100% { left: 150%; } }
.wa-icon-box {
    width: 40px; height: 40px; background: #25D366;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 20px; box-shadow: 0 0 10px #25D366; color: #fff;
}

/* GAMES GRID */
.games-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
    padding: 20px 15px;
}
.game-item { text-align: center; }
.game-icon {
    width: 55px; height: 55px; background: var(--secondary);
    border-radius: 50%; margin: 0 auto 5px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.1); color: var(--gold); font-size: 22px;
    transition: 0.3s;
}
.game-item:hover .game-icon { background: var(--neon); color: #000; transform: translateY(-3px); }
.game-item span { font-size: 11px; color: #ccc; font-weight: 600; display: block; }

/* WITHDRAWAL TICKER (FIXED ANIMATION) */
.withdrawal-section {
    background: var(--secondary);
    padding: 10px 0; margin: 20px 0;
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid #333; border-bottom: 1px solid #333;
}
.ticker-wrap { display: inline-block; white-space: nowrap; }
.ticker-item { 
    display: inline-block; 
    color: var(--gold); font-size: 13px; font-weight: bold; 
    padding-left: 100%;
    animation: marquee 20s linear infinite; 
}
@keyframes marquee { 
    0% { transform: translateX(0); } 
    100% { transform: translateX(-100%); } 
}

/* CONTENT AREA (TEXT ALIGNMENT FIXED) */
.content-area { padding: 25px 20px; color: #ccc; font-size: 14px; line-height: 1.6; border-bottom: 1px solid #111; }
.content-area img { width: 100%; border-radius: 10px; margin: 15px 0; border: 1px solid #333; }
.content-area h2 { color: var(--neon); font-size: 20px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px; text-align: left; }
.content-area h3 { color: #fff; font-size: 16px; margin: 20px 0 10px; border-left: 3px solid var(--gold); padding-left: 10px; text-align: left; }
.content-area p { margin-bottom: 15px; text-align: justify; }
.content-area ul, .content-area ol { padding-left: 20px; margin-bottom: 15px; text-align: left; }
.content-area li { margin-bottom: 5px; }

/* FAQ SECTION */
.faq-section { background: var(--secondary); margin: 20px 15px; padding: 20px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.05); }
.faq-box { margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.faq-question { font-weight: bold; color: #fff; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-answer { display: none; margin-top: 10px; color: #aaa; font-size: 13px; text-align: justify; line-height: 1.5; }
.faq-box.active .faq-answer { display: block; }
.faq-box.active .faq-question { color: var(--neon); }
.faq-icon { transition: 0.3s; }
.faq-box.active .faq-icon { transform: rotate(180deg); }

/* TAGS SECTION */
.tags-section { background: #000; padding: 20px 15px; text-align: center; border-top: 1px solid #222; }
.tags-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.tag-link { font-size: 11px; color: #666; background: #111; padding: 6px 10px; border-radius: 4px; border: 1px solid #222; transition: 0.3s; }
.tag-link:hover { color: var(--neon); border-color: var(--neon); }

/* FOOTER & ICONS */
.site-footer { text-align: center; padding: 20px 20px 90px; background: #02050a; font-size: 12px; color: #666; }
.trust-icons img { 
    height: 35px; margin: 8px; 
    filter: brightness(0) invert(1); /* Makes Black Icons White */
    opacity: 0.9; 
}
.gamble-icons img { height: 30px; margin: 5px; }

/* STICKY FOOTER */
.sticky-footer {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #02050a; padding: 10px 0;
    display: flex; justify-content: space-around; align-items: center;
    border-top: 1px solid rgba(0,255,157,0.2); z-index: 999;
}
.footer-btn { text-align: center; color: #666; font-size: 10px; flex: 1; }
.footer-btn.active { color: var(--neon); }
.footer-btn i { display: block; font-size: 18px; margin-bottom: 4px; }
.whatsapp-float-btn {
    background: #25D366; width: 55px; height: 55px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px; margin-top: -35px; border: 5px solid var(--primary);
    box-shadow: 0 -5px 15px rgba(37,211,102,0.4); animation: pulse 2s infinite;
}