/* style.css - File Desain Tampilan */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --color-teal: #14b8a6;
    --color-gold: #fbbf24;
    --text-white: #f8fafc;
    --text-gray: #94a3b8;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    padding-top: 60px;
    padding-bottom: 80px;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; display: block; }
img { width: 100%; display: block; height: auto; }

/* HEADER */
.header {
    position: fixed; top: 0; left: 0; right: 0; height: 60px;
    background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--color-teal);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 15px; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.logo { font-size: 1.2rem; font-weight: 800; color: var(--color-gold); text-shadow: 1px 1px 0 #000; }
.logo span { color: white; }
.btn-login-top {
    background: linear-gradient(to bottom, #2dd4bf, #0f766e);
    padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: bold;
    box-shadow: 0 0 10px rgba(20, 184, 166, 0.3); color: white;
}

/* RUNNING TEXT */
.marquee-box {
    background: var(--bg-card); font-size: 0.75rem; padding: 8px 0;
    border-bottom: 1px solid #334155; overflow: hidden; white-space: nowrap;
}
.marquee-text {
    display: inline-block; animation: slideLeft 15s linear infinite; padding-left: 100%;
}
@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* HERO & BUTTONS */
.hero { width: 100%; border-bottom: 2px solid var(--color-gold); }
.btn-grid { display: grid; grid-template-columns: 1fr 1fr; }
.btn-main {
    padding: 15px; text-align: center; font-weight: 800; font-size: 1rem;
    display: flex; justify-content: center; align-items: center; gap: 8px; cursor: pointer;
}
.btn-gold { background: linear-gradient(to bottom, #fcd34d, #d97706); color: #000; }
.btn-teal { background: linear-gradient(to bottom, #5eead4, #0f766e); color: #fff; }

/* ICONS */
.icon-menu {
    background: #020617; display: flex; justify-content: space-around; padding: 15px;
    border-top: 4px solid var(--bg-card); border-bottom: 4px solid var(--bg-card);
}
.icon-menu i { font-size: 1.5rem; color: #e2e8f0; }

/* JACKPOT */
.jackpot { text-align: center; padding: 20px; background: radial-gradient(circle, #1e293b 0%, #0f172a 100%); }
.jp-label { color: var(--color-teal); font-weight: bold; margin-bottom: 10px; letter-spacing: 1px; }
.jp-value {
    font-family: monospace; font-size: 1.8rem; font-weight: 900;
    color: var(--color-gold); text-shadow: 0 0 10px var(--color-gold);
    border: 2px solid var(--color-gold); display: inline-block;
    padding: 5px 15px; border-radius: 5px; background: #000;
}

/* CONTENT SEO */
.content-area { padding: 20px; color: var(--text-gray); font-size: 0.9rem; text-align: justify; }
.content-area h1 { color: var(--color-gold); font-size: 1.4rem; margin-bottom: 15px; line-height: 1.3; font-weight: 800; }
.content-area h2 { color: var(--color-teal); font-size: 1.1rem; margin-top: 20px; margin-bottom: 10px; font-weight: 700; }
.content-area p { margin-bottom: 15px; }
.content-area strong { color: white; }

/* FAQ STYLE */
.faq-section details { background: #020617; margin-bottom: 10px; border-radius: 5px; border: 1px solid #334155; }
.faq-section summary { padding: 15px; font-weight: bold; cursor: pointer; color: white; outline: none; list-style: none; }
.faq-section summary::after { content: '+'; float: right; color: var(--color-gold); }
.faq-section details[open] summary::after { content: '-'; }
.faq-section .faq-answer { padding: 15px; border-top: 1px solid #334155; font-size: 0.85rem; color: #cbd5e1; }

/* FOOTER */
.footer-nav {
    position: fixed; bottom: 0; left: 0; right: 0; height: 65px;
    background: #115e59; display: flex; justify-content: space-around; align-items: center;
    border-top: 2px solid var(--color-teal); border-top-left-radius: 15px; border-top-right-radius: 15px;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.5); z-index: 999;
}
.nav-item { text-align: center; width: 20%; font-size: 0.65rem; color: #ccfbf1; }
.nav-item i { display: block; font-size: 1.2rem; margin-bottom: 3px; }
.nav-center { position: relative; top: -25px; }
.nav-center .circle {
    width: 55px; height: 55px; background: var(--bg-dark);
    border: 3px solid var(--color-gold); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.5); margin: 0 auto;
}
.nav-center i { color: var(--color-gold); font-size: 1.5rem; margin: 0; }
.copyright { text-align: center; padding: 20px; font-size: 0.7rem; color: #475569; margin-bottom: 20px; }
