@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Syne:wght@500;600;700;800&display=swap');

:root {
    --bg: #0e0f14;
    --bg-elev: #161822;
    --surface: rgba(22, 24, 34, 0.92);
    --surface-glass: rgba(30, 32, 48, 0.55);
    --line: rgba(61, 90, 254, 0.22);
    --text: #eceff7;
    --muted: #9aa3b8;
    --accent: #3d5afe;
    --accent-dim: rgba(61, 90, 254, 0.35);
    --lime: #c6ff00;
    --lime-dim: rgba(198, 255, 0, 0.25);
    --indigo-deep: #303f9f;
    --warn-bg: linear-gradient(
        90deg,
        rgba(61, 90, 254, 0.18),
        rgba(198, 255, 0, 0.12)
    );
    --warn-border: rgba(198, 255, 0, 0.55);
    --radius-lg: 26px;
    --radius-md: 16px;
    --radius-pill: 999px;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Syne', system-ui, sans-serif;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(
            ellipse 70% 45% at 85% 0%,
            rgba(61, 90, 254, 0.14),
            transparent 55%
        ),
        radial-gradient(
            ellipse 55% 40% at 0% 100%,
            rgba(198, 255, 0, 0.06),
            transparent 50%
        ),
        linear-gradient(180deg, #0e0f14, #12141c 40%, #0e0f14);
}

html:not(.captcha-done) body:has(#captcha-overlay) {
    overflow: hidden;
}

html.captcha-done #captcha-overlay {
    display: none !important;
}

a {
    color: var(--accent);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 100px;
}

/* —— Captcha —— */
.captcha-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(10, 12, 18, 0.9);
    backdrop-filter: blur(12px);
}

.captcha-modal {
    width: min(100%, 400px);
    padding: 28px;
    border-radius: var(--radius-lg);
    background: linear-gradient(165deg, #161822, #101218);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.captcha-modal h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.captcha-modal > p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.slider-captcha-panel {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--line);
    margin-bottom: 14px;
}

.slider-captcha-track-wrap {
    margin-bottom: 18px;
}

.slider-captcha-track {
    position: relative;
    height: 48px;
    border-radius: var(--radius-pill);
    background: rgba(8, 10, 16, 0.95);
    border: 1px solid var(--line);
    cursor: pointer;
}

.slider-captcha-track-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(
        90deg,
        rgba(61, 90, 254, 0.25),
        rgba(198, 255, 0, 0.15)
    );
    pointer-events: none;
}

.slider-captcha-handle {
    position: absolute;
    top: 4px;
    left: 0;
    width: 44px;
    height: 40px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(236, 239, 247, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
    cursor: grab;
    touch-action: none;
}

.slider-captcha-handle.is-ok {
    border-color: var(--lime);
    box-shadow: 0 0 0 2px var(--lime-dim);
}

.slider-captcha-handle:active {
    cursor: grabbing;
}

/* —— Top —— */
.announce {
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    background: linear-gradient(90deg, #3d5afe, #5c6bc0);
    padding: 8px 16px;
    margin: 0 -24px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 24px;
    margin: 0 -24px;
    background: linear-gradient(
        180deg,
        rgba(14, 15, 20, 0.96),
        rgba(14, 15, 20, 0.88)
    );
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.logo-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    text-decoration: none;
}
.logo-mark:hover {
    text-decoration: none;
}
.logo-mark img {
    display: block;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 0.88rem;
    font-weight: 600;
}
.main-nav a {
    color: var(--muted);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.main-nav a:hover,
.main-nav a[aria-current='page'] {
    color: var(--text);
    text-decoration: none;
}

.wallet-pill {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: rgba(8, 10, 18, 0.6);
}
.wallet-pill strong {
    color: var(--lime);
    font-weight: 700;
}

/* —— Warning strips —— */
.alert-hero {
    margin: 22px 0 28px;
    padding: 20px 22px;
    border-radius: var(--radius-md);
    border: 2px solid var(--warn-border);
    background: var(--warn-bg);
    box-shadow:
        0 0 0 1px rgba(61, 90, 254, 0.2),
        0 16px 48px rgba(0, 0, 0, 0.35);
}
.alert-hero .badge-18 {
    display: inline-block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: var(--lime);
    color: #12141c;
    margin-bottom: 12px;
}
.alert-hero .lead-warn {
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
}
.alert-hero .sub-warn {
    color: var(--muted);
    font-size: 0.95rem;
}

.sticky-free-note {
    position: sticky;
    top: 72px;
    z-index: 40;
    margin-bottom: 20px;
    padding: 10px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--lime-dim);
    background: rgba(22, 24, 34, 0.92);
    font-size: 0.82rem;
    text-align: center;
    color: var(--text);
    backdrop-filter: blur(8px);
}
.sticky-free-note strong {
    color: var(--lime);
}

/* —— Hero asymmetric —— */
.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px 40px;
    align-items: start;
    margin-bottom: 64px;
}
@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
}

.hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 14px;
}
.hero-copy .eyebrow::before {
    content: '';
    width: 28px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--lime), var(--accent));
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.35rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-copy .lead {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 36ch;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}
.btn:hover {
    text-decoration: none;
    filter: brightness(1.06);
}

.btn-primary {
    background: linear-gradient(120deg, var(--accent), var(--indigo-deep));
    color: #fff;
    box-shadow: 0 12px 32px rgba(61, 90, 254, 0.35);
}

.btn-ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--text);
}

.hero-glass {
    position: relative;
    padding: 26px;
    border-radius: var(--radius-lg);
    background: var(--surface-glass);
    border: 1px solid var(--line);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
    transform: rotate(-1deg);
}
@media (max-width: 900px) {
    .hero-glass {
        transform: none;
    }
}
.hero-image {
    width: 100%;
    height: auto;
    max-height: min(240px, 38vw);
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    display: block;
}

.hero-glass::after {
    content: '';
    position: absolute;
    top: -1px;
    right: 18%;
    width: 40%;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, transparent, var(--lime), var(--accent));
    opacity: 0.85;
}

.stat-board h3 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 18px;
}

.stat-rows {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.stat-rows .num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--lime);
}
.stat-rows .lbl {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-board .board-note {
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--muted);
}

/* —— Sections —— */
.section {
    margin-bottom: 72px;
}

.section-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}
.section-head .lintu {
    width: 6px;
    min-height: 48px;
    border-radius: 6px;
    background: linear-gradient(180deg, var(--lime), var(--accent));
    margin-top: 4px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bullet-list {
    list-style: none;
    max-width: 720px;
}
.bullet-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    color: var(--muted);
}
.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-dim);
}

/* —— Staggered cards —— */
.cards-stagger {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}
@media (max-width: 720px) {
    .cards-stagger {
        grid-template-columns: 1fr;
    }
}
.cards-stagger .game-card:nth-child(2) {
    margin-top: 28px;
}
.cards-stagger .game-card:nth-child(3) {
    margin-top: -12px;
}
.cards-stagger .game-card:nth-child(4) {
    margin-top: 16px;
}
@media (max-width: 720px) {
    .cards-stagger .game-card {
        margin-top: 0 !important;
    }
}

.game-card {
    display: flex;
    flex-direction: column;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}
.game-card:hover {
    transform: translateY(-3px);
    border-color: rgba(198, 255, 0, 0.35);
}

.game-card .thumb {
    width: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    background: #0a0c10;
}

.game-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 8px;
}
.game-card p {
    color: var(--muted);
    font-size: 0.92rem;
    flex: 1;
    margin-bottom: 16px;
}

/* —— Process —— */
.process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
@media (max-width: 800px) {
    .process-split {
        grid-template-columns: 1fr;
    }
}
.process-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-elev);
    border: 1px solid var(--line);
    border-left: 4px solid var(--accent);
    box-shadow: inset 4px 0 0 -1px var(--lime);
}
.process-panel h3 {
    font-family: var(--font-display);
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.process-panel p {
    color: var(--muted);
    font-size: 0.95rem;
}

/* —— FAQ —— */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
@media (max-width: 800px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
.faq-item {
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(16, 18, 26, 0.85);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
}
.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.faq-item p {
    color: var(--muted);
    font-size: 0.9rem;
}

/* —— Contact —— */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}
@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.form-panel {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
}
.form-panel label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 6px;
}
.form-panel input,
.form-panel textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #0a0c12;
    color: var(--text);
    font-family: inherit;
}
.form-panel textarea {
    min-height: 120px;
    resize: vertical;
}

.side-panels {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.info-box {
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-elev);
    border: 1px solid var(--line);
    font-size: 0.92rem;
    color: var(--muted);
}
.info-box strong {
    color: var(--text);
}

/* —— Footer —— */
.site-footer {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-brand img {
    display: block;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 720px) {
    .footer-cols {
        grid-template-columns: 1fr;
    }
}
.footer-cols h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    color: var(--muted);
}
.footer-cols ul {
    list-style: none;
}
.footer-cols a {
    display: block;
    padding: 4px 0;
    color: var(--text);
    font-size: 0.9rem;
}
.footer-cols a:hover {
    color: var(--lime);
}

.support-strip {
    padding: 22px;
    border-radius: var(--radius-md);
    background: rgba(16, 18, 28, 0.9);
    border: 1px solid var(--line);
    margin-bottom: 24px;
}

.footer-illustration {
    width: 100%;
    max-width: 640px;
    height: auto;
    display: block;
    margin: 0 auto 18px;
    border-radius: var(--radius-md);
    object-fit: contain;
}
.support-strip p {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 16px;
    max-width: 62ch;
}
.rg-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.rg-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    transition: border-color 0.2s ease;
}
.rg-logos a:hover {
    border-color: var(--lime-dim);
    text-decoration: none;
}
.rg-logos img {
    display: block;
    max-height: 44px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}
.rg-extra {
    margin-top: 12px;
}
.rg-extra a {
    font-weight: 600;
    color: var(--accent);
}

.footer-bottom {
    font-size: 0.82rem;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid rgba(61, 90, 254, 0.15);
}

/* —— Inner pages —— */
.page-hero {
    padding: 28px 0 8px;
}
.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 10px;
}
.page-hero p {
    color: var(--muted);
    max-width: 62ch;
}

.prose {
    color: var(--muted);
    max-width: 72ch;
}
.prose p {
    margin-bottom: 14px;
}
.prose h2 {
    font-family: var(--font-display);
    color: var(--text);
    font-size: 1.2rem;
    margin: 28px 0 12px;
}

/* —— Game pages —— */
.game-page {
    padding-bottom: 40px;
}

.game-topbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 20px 0 16px;
}
.game-topbar h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
}

.credits-box {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(8, 10, 16, 0.75);
}
.credits-box .lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.credits-box .val {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lime);
}

.game-stage {
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: linear-gradient(165deg, #161822, #101218);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.game-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 10px;
}

.card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    min-height: 88px;
    margin-bottom: 8px;
}

.playing-card {
    width: 56px;
    height: 80px;
    border-radius: 8px;
    background: #f8f8fc;
    color: #1a1a22;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.playing-card.red {
    color: #c2185b;
}
.playing-card.face-down {
    background: linear-gradient(135deg, #3d5afe, #7c4dff);
    color: transparent;
    position: relative;
}
.playing-card.face-down::after {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.hand-total {
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--lime);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.game-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 8px;
}

.btn-hit {
    background: linear-gradient(120deg, #7c4dff, #3d5afe);
    color: #fff;
}
.btn-stand {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--text);
}

.bet-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(12, 14, 20, 0.85);
    margin-bottom: 12px;
}
.bet-bar label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}
.bet-bar input[type='number'] {
    width: 88px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: #080a10;
    color: var(--text);
    font-family: inherit;
    font-weight: 600;
}
.bet-quick {
    display: flex;
    gap: 6px;
}
.bet-quick button {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #14161f;
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
}
.bet-quick button:hover {
    border-color: var(--accent);
}

.game-help {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
    background: rgba(16, 18, 28, 0.75);
}
.game-help strong {
    color: var(--text);
}

/* Predictor */
.big-num {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 4.5rem);
    font-weight: 800;
    color: var(--lime);
    text-shadow: 0 0 40px rgba(198, 255, 0, 0.25);
    margin: 16px 0;
}

.hilo-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.btn-hi {
    background: #2e7d32;
    color: #fff;
    min-width: 140px;
}
.btn-lo {
    background: #ad1457;
    color: #fff;
    min-width: 140px;
}

/* Dice */
.dice-face {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: linear-gradient(145deg, #5c6bc0, #3949ab);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.dice-row {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin: 20px 0;
}
.dice-q {
    width: 88px;
    height: 88px;
    border-radius: 18px;
    background: linear-gradient(145deg, #3d5afe, #7c4dff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.dice-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 16px 0;
}
.btn-under {
    background: #ad1457;
    color: #fff;
}
.btn-exact {
    background: linear-gradient(120deg, #ff9800, #f57c00);
    color: #12141c;
}
.btn-over {
    background: #2e7d32;
    color: #fff;
}

/* Reels */
.reel-wrap {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin: 20px 0;
}
.reel {
    width: 72px;
    height: 110px;
    border-radius: 12px;
    border: 2px solid rgba(198, 255, 0, 0.45);
    background: #080a10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    overflow: hidden;
}
.reel.spinning {
    animation: pulse 0.35s ease-in-out infinite alternate;
}
@keyframes pulse {
    from {
        opacity: 0.65;
        transform: scale(0.98);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-spin {
    background: linear-gradient(120deg, #ff9800, #3d5afe);
    color: #fff;
    min-width: 200px;
    font-size: 1rem;
}

.status-msg {
    text-align: center;
    min-height: 1.5em;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.92rem;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    font-weight: 600;
}
