@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;500;600;700&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
    --royal: #6a0dad;
    --violet: #9b59b6;
    --lavender: #e8daef;
    --midnight: #0c0c14;
    --shadow: #14141f;
    --smoke: #7f8c8d;
}

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

body { font-family: 'Work Sans', sans-serif; background: var(--midnight); color: var(--lavender); line-height: 1.8; }
h1, h2, h3, h4 { font-family: 'Crimson Pro', serif; }

.site-nav { position: fixed; top: 0; width: 100%; background: rgba(12,12,20,0.95); z-index: 1000; border-bottom: 1px solid rgba(106,13,173,0.4); }
.nav-wrap { max-width: 1450px; margin: 0 auto; padding: 20px 30px; display: flex; justify-content: space-between; align-items: center; }

.site-brand { font-family: 'Crimson Pro', serif; font-size: 2.2rem; font-weight: 700; color: var(--violet); text-decoration: none; }

.mobile-nav { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-nav span { display: block; width: 26px; height: 2px; background: var(--violet); margin: 6px 0; }

.nav-items { display: flex; list-style: none; gap: 38px; }
.nav-items a { color: var(--lavender); text-decoration: none; font-weight: 500; }
.nav-items a:hover { color: var(--violet); }

@media (max-width: 850px) {
    .mobile-nav { display: block; z-index: 1001; }
    .nav-items { position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: var(--shadow); flex-direction: column; justify-content: center; align-items: center; gap: 32px; transition: right 0.4s; }
    .nav-items.visible { right: 0; }
    .nav-items a { font-size: 1.25rem; }
}

.banner { min-height: 88vh; display: flex; align-items: center; justify-content: center; padding: 125px 30px 75px; background: radial-gradient(ellipse at 50% 80%, rgba(106,13,173,0.2) 0%, transparent 60%), var(--midnight); text-align: center; }

.banner-inner { max-width: 880px; }
.banner h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-bottom: 25px; line-height: 1.2; }
.banner h1 .royal { color: var(--violet); }
.banner p { font-size: 1.15rem; color: var(--smoke); margin-bottom: 42px; max-width: 700px; margin-left: auto; margin-right: auto; }

.info-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.info-pill { background: rgba(106,13,173,0.2); border: 1px solid var(--royal); padding: 14px 24px; border-radius: 30px; display: flex; align-items: center; gap: 10px; }

.game-stage { padding: 55px 30px; background: var(--shadow); }
.game-holder { max-width: 1200px; margin: 0 auto; border: 2px solid var(--royal); border-radius: 18px; overflow: hidden; box-shadow: 0 20px 50px rgba(106,13,173,0.2); }
.game-screen { width: 100%; height: 600px; border: none; background: #000; }
@media (max-width: 850px) { .game-screen { height: 400px; } }

.segment { padding: 90px 30px; }
.segment.alt { background: var(--shadow); }
.segment-head { text-align: center; margin-bottom: 55px; }
.segment-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 15px; }
.segment-head p { color: var(--smoke); max-width: 580px; margin: 0 auto; }

.boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; max-width: 1200px; margin: 0 auto; }
.box { background: rgba(20,20,31,0.8); padding: 38px 32px; border-radius: 14px; border-top: 3px solid var(--royal); }
.box-icon { font-size: 2.5rem; margin-bottom: 18px; }
.box h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--violet); font-family: 'Crimson Pro', serif; }
.box p { color: var(--smoke); font-size: 0.95rem; }

.body-text { max-width: 850px; margin: 0 auto; }
.body-text p { margin-bottom: 22px; color: var(--smoke); font-size: 1.05rem; }

.bottom-bar { background: #08080f; padding: 52px 30px 28px; border-top: 2px solid var(--royal); }
.bottom-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.bottom-section { margin-bottom: 32px; }
.bottom-section h5 { color: var(--violet); font-family: 'Crimson Pro', serif; font-size: 1.1rem; margin-bottom: 18px; }
.bottom-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; }
.bottom-links a { color: var(--smoke); text-decoration: none; }
.bottom-links a:hover { color: var(--violet); }
.bottom-copy { padding-top: 22px; border-top: 1px solid var(--shadow); color: var(--smoke); font-size: 0.85rem; }

.verify-modal { position: fixed; inset: 0; background: rgba(0,0,0,0.97); display: flex; align-items: center; justify-content: center; z-index: 10000; }
.verify-modal.gone { display: none; }
.verify-card { background: var(--shadow); padding: 52px 45px; border-radius: 18px; text-align: center; max-width: 470px; margin: 20px; border: 2px solid var(--royal); }
.verify-card h2 { font-size: 1.9rem; margin-bottom: 22px; color: var(--violet); font-family: 'Crimson Pro', serif; }
.verify-card p { color: var(--smoke); margin-bottom: 30px; }
.verify-btns { display: flex; gap: 16px; justify-content: center; }
.verify-btn { padding: 15px 38px; border-radius: 30px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; }
.verify-btn.yes { background: var(--royal); color: white; }
.verify-btn.no { background: transparent; border: 2px solid var(--smoke); color: var(--smoke); }
.verify-btn:hover { transform: scale(1.03); }

.intro-section { padding: 130px 30px 68px; background: var(--shadow); text-align: center; }
.intro-section h1 { font-size: clamp(2.1rem, 4.5vw, 3.2rem); margin-bottom: 15px; }
.intro-section p { color: var(--smoke); max-width: 520px; margin: 0 auto; }

.doc-content { max-width: 850px; margin: 0 auto; padding: 65px 30px; }
.doc-content h2 { font-size: 1.5rem; margin: 48px 0 20px; color: var(--violet); font-family: 'Crimson Pro', serif; }
.doc-content p { margin-bottom: 18px; color: var(--smoke); }
.doc-content ul { margin: 18px 0 18px 30px; color: var(--smoke); }
.doc-content li { margin-bottom: 10px; }

.play-area { padding: 108px 30px 58px; }
.play-footer { max-width: 700px; margin: 28px auto 0; text-align: center; color: var(--smoke); }
