:root {
    --bg: #0e0618;
    --surface: #1f0f30;
    --accent: #ff00ff;
    --accent2: #00ffff;
    --text: #faf3ff;
    --muted: #a795c2;
    --font-display: 'Orbitron', system-ui, sans-serif;
    --font-body: 'Exo 2', system-ui, sans-serif;
    --glow-accent: 0 0 10px rgba(255, 0, 255, 0.5), 0 0 20px rgba(255, 0, 255, 0.3);
    --glow-accent2: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    --radius: 12px;
    --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
a { color: var(--accent2); text-decoration: none; transition: 0.3s ease; }
a:hover { color: var(--accent); text-shadow: var(--glow-accent); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.bg-surface { background-color: var(--surface); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--accent);
    color: #fff;
    box-shadow: var(--glow-accent);
}
.btn-primary:hover {
    background-color: #d600d6;
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    color: #fff;
}
.btn-secondary {
    background-color: transparent;
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: var(--glow-accent2);
}
.btn-secondary:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 20px var(--accent2);
}

/* Header */
header {
    background-color: rgba(14, 6, 24, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}
.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}
.logo {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    text-shadow: 0 0 10px var(--accent);
    display: flex;
    align-items: center;
    gap: 10px;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text);
}
.nav-links a:hover { color: var(--accent2); }
.header-ctas { display: flex; gap: 10px; }
.header-ctas .btn { padding: 8px 16px; font-size: 12px; }
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent2);
    font-size: 24px;
    cursor: pointer;
}

/* Hero */
#hero {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image:
        linear-gradient(rgba(255,0,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,0,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid var(--accent2);
    color: var(--accent2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: var(--glow-accent2);
}
#hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 0 0 15px var(--accent), 2px 2px 0px var(--accent2);
}
.hero-sub {
    font-size: 20px;
    color: var(--accent2);
    margin-bottom: 20px;
    font-family: var(--font-display);
}
.hero-intro {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 30px;
    max-width: 90%;
}
.hero-ctas { display: flex; gap: 15px; }

/* Hero Visual - Mirror Ball Motif */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mirror-ball-motif {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #fff, var(--accent) 40%, var(--surface) 80%);
    box-shadow: 0 0 50px var(--accent), inset 0 0 20px #fff;
    position: relative;
    animation: pulse 4s infinite alternate;
}
.mirror-ball-motif::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background-image:
        linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.2) 75%),
        linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 75%, rgba(255,255,255,0.2) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    mix-blend-mode: overlay;
}
.floating-card {
    position: absolute;
    background: rgba(31, 15, 48, 0.8);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent2);
    padding: 15px;
    border-radius: var(--radius);
    box-shadow: var(--glow-accent2);
}
.fc-1 { top: 10%; left: 0; transform: rotate(-10deg); animation: float 6s ease-in-out infinite; }
.fc-2 { bottom: 10%; right: 0; transform: rotate(10deg); animation: float 5s ease-in-out infinite reverse; }

/* Games */
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 32px; color: var(--accent2); text-shadow: var(--glow-accent2); margin-bottom: 15px; }
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.game-card {
    background: var(--surface);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.game-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,0,255,0.1) 0%, transparent 70%);
    opacity: 0; transition: 0.5s;
}
.game-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--glow-accent);
}
.game-card:hover::before { opacity: 1; }
.game-card h3 { font-size: 22px; margin-bottom: 10px; color: #fff; }
.game-card p { color: var(--muted); font-size: 14px; position: relative; z-index: 1; }

/* RTP Live */
#rtp-live {
    background: linear-gradient(90deg, var(--surface) 0%, rgba(255,0,255,0.1) 50%, var(--surface) 100%);
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    text-align: center;
}
#rtp-live h2 { color: var(--accent); text-shadow: var(--glow-accent); margin-bottom: 15px; }
#rtp-live p { max-width: 800px; margin: 0 auto; color: var(--text); font-size: 18px; }

/* Jackpot Strip */
#jackpot {
    background-color: var(--accent);
    padding: 20px 0;
    overflow: hidden;
}
.jackpot-track {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}
.jackpot-item {
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}
.jackpot-item::before {
    content: '★';
    color: var(--surface);
}

/* Provider */
.provider-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.provider-name {
    padding: 15px 30px;
    background: rgba(14, 6, 24, 0.5);
    border: 1px solid var(--muted);
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--muted);
    transition: 0.3s;
}
.provider-name:hover {
    border-color: var(--accent2);
    color: var(--accent2);
    box-shadow: var(--glow-accent2);
}

/* Keunggulan */
.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.keunggulan-card {
    background: rgba(31, 15, 48, 0.5);
    border-left: 4px solid var(--accent2);
    padding: 25px;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.keunggulan-card h3 { font-size: 20px; margin-bottom: 10px; color: #fff; }
.keunggulan-card p { color: var(--muted); font-size: 15px; }

/* Langkah */
.langkah-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step;
}
.langkah-card {
    text-align: center;
    padding: 30px;
    background: var(--bg);
    border: 1px dashed var(--muted);
    border-radius: var(--radius);
    position: relative;
}
.langkah-card::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    top: -20px; left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    box-shadow: var(--glow-accent);
}
.langkah-card h3 { margin-top: 15px; margin-bottom: 10px; color: var(--accent2); }
.langkah-card p { color: var(--muted); }

/* Testimoni */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
    border-top: 2px solid var(--accent);
}
.testi-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text);
    margin-bottom: 20px;
}
.testi-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}
.testi-name { font-family: var(--font-display); font-weight: 700; color: var(--accent2); }
.testi-city { font-size: 12px; color: var(--muted); text-transform: uppercase; }

/* Salah Paham */
.salah-paham-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
.sp-item {
    display: flex;
    flex-direction: column;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
}
.sp-wrong {
    padding: 15px 20px;
    background: rgba(255, 0, 85, 0.1);
    border-left: 4px solid #ff0055;
    color: #ffb3c6;
    font-weight: 600;
}
.sp-right {
    padding: 15px 20px;
    background: rgba(0, 255, 255, 0.05);
    border-left: 4px solid var(--accent2);
    color: var(--text);
}

/* Data Ringkas */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.data-card {
    background: var(--surface);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius);
    border-bottom: 3px solid var(--accent);
}
.data-val {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    text-shadow: var(--glow-accent);
    margin-bottom: 5px;
}
.data-label {
    color: var(--muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Area */
#area { position: relative; }
.area-content { max-width: 800px; margin: 0 auto; text-align: center; }
.eyebrow { color: var(--accent2); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; display: block; }
.area-content h2 { margin-bottom: 20px; font-size: 28px; }
.area-content p { color: var(--muted); margin-bottom: 15px; }
.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.area-tag {
    padding: 5px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text);
}
.area-tag:hover { background: var(--accent); color: #fff; }
.map-fallback {
    width: 100%;
    height: 300px;
    background: rgba(31, 15, 48, 0.8);
    border: 1px solid var(--accent2);
    border-radius: var(--radius);
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent2);
    font-family: var(--font-display);
    position: relative;
    overflow: hidden;
}
.map-fallback::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(0,255,255,0.1) 10%, transparent 50%);
    animation: pulse 3s infinite;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
details {
    background: var(--surface);
    margin-bottom: 15px;
    border-radius: var(--radius);
    overflow: hidden;
}
summary {
    padding: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
summary::-webkit-details-marker { display: none; }
summary::after {
    content: '+';
    color: var(--accent);
    font-size: 24px;
}
details[open] summary::after { content: '-'; }
.faq-answer {
    padding: 0 20px 20px;
    color: var(--muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: -10px;
    padding-top: 20px;
}

/* Footer */
footer {
    background: #000;
    padding: 60px 0 30px;
    border-top: 2px solid var(--accent);
}
.footer-top {
    text-align: center;
    margin-bottom: 40px;
}
.footer-tagline {
    color: var(--muted);
    margin-top: 10px;
    font-size: 16px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.footer-links a {
    color: var(--muted);
    font-size: 14px;
}
.footer-links a:hover { color: var(--accent2); }
.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 14px;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}
@keyframes float {
    0% { transform: translateY(0) rotate(var(--rot)); }
    50% { transform: translateY(-15px) rotate(var(--rot)); }
    100% { transform: translateY(0) rotate(var(--rot)); }
}
.fc-1 { --rot: -10deg; }
.fc-2 { --rot: 10deg; }

/* Responsive */
@media (max-width: 1024px) {
    #hero h1 { font-size: 36px; }
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-intro { margin: 0 auto 30px; }
    .hero-ctas { justify-content: center; flex-direction: column; }
    .hero-visual { height: 300px; margin-top: 40px; }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px; left: 0; width: 100%;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--accent);
    }
    .nav-links.active { display: flex; }
    .header-ctas { display: none; }
    .menu-toggle { display: block; }

    .section-pad { padding: 60px 0; }
    .keunggulan-card { border-left: none; border-top: 4px solid var(--accent2); border-radius: 0 0 var(--radius) var(--radius); }
}
@media (max-width: 390px) {
    #hero h1 { font-size: 28px; }
    .btn { width: 100%; }
    .games-grid, .keunggulan-grid, .langkah-grid, .testi-grid, .data-grid { grid-template-columns: 1fr; }
}


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
