* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Arial, sans-serif; font-size: 13px; background: #f4f4f2; color: #0c0b09; min-height: 100vh; display: flex; flex-direction: column; }

/* ── HEADER ─────────────────────────────────────────── */
header { background: #fff; border-bottom: 1px solid #e0e0e0; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; flex-shrink: 0; }
.logo-area { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.logo-img { height: 48px; width: auto; border-radius: 4px; }
.logo-placeholder { width: 36px; height: 36px; background: #0c0b09; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; }
.logo-link { text-decoration: none; }
.site-title { font-size: 16px; font-weight: 700; color: #0c0b09; }
.site-subtitle { font-size: 11px; color: #999; margin-top: 1px; }
.header-nav { display: flex; gap: 4px; }
.header-nav a { font-size: 12px; font-weight: 600; color: #888; text-decoration: none; padding: 5px 12px; border-radius: 5px; }
.header-nav a:hover { background: #f4f4f2; color: #333; }
.header-nav a.active { background: #a88b2c; color: #fff; }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: #fff; border-top: 1px solid #e8e8e8; padding: 12px 24px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: #bbb; text-align: center; flex-shrink: 0; flex-wrap: wrap; gap: 8px; }
footer a { color: #bbb; text-decoration: none; }
footer a:hover { color: #555; }

/* ── SECTION TITLE ───────────────────────────────────── */
.section-title { font-size: 11px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

/* ════════════════════════════════════════════════════════
   GAMES PAGE
   ════════════════════════════════════════════════════════ */
.filter-bar { background: #fff; border-bottom: 1px solid #e8e8e8; padding: 12px 24px; display: flex; flex-wrap: wrap; gap: 10px; align-items: flex-end; flex-shrink: 0; }
.filter-group { display: flex; flex-direction: column; gap: 3px; }
.filter-group label { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .5px; font-weight: 600; }
select, input[type=text] { background: #f8f8f8; border: 1px solid #ddd; color: #333; border-radius: 5px; padding: 5px 8px; font-size: 12px; outline: none; }
select:focus, input[type=text]:focus { border-color: #aaa; background: #fff; }
input[type=text] { width: 190px; }
.btn-reset { background: #fff; border: 1px solid #ddd; color: #888; border-radius: 5px; padding: 5px 12px; font-size: 11px; cursor: pointer; align-self: flex-end; }
.btn-reset:hover { border-color: #bbb; color: #333; }
.result-count { margin-left: auto; align-self: flex-end; font-size: 11px; color: #aaa; }
.table-wrap { flex: 1; overflow-x: auto; padding: 16px 24px; }
table { width: 100%; border-collapse: collapse; min-width: 860px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.06); }
thead tr { background: #f8f8f8; border-bottom: 2px solid #ececec; }
thead th { padding: 9px 10px; text-align: left; font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; cursor: pointer; user-select: none; font-weight: 600; }
thead th:hover { color: #555; }
.sort-icon { opacity: .35; margin-left: 2px; }
.sort-icon.active { opacity: 1; color: #333; }
tbody tr { border-bottom: 1px solid #f2f2f2; transition: background .1s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: #fafafa; }
tbody td { padding: 9px 10px; vertical-align: top; }
.game-name { font-weight: 700; font-size: 12px; color: #0c0b09; }
.badge { display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 10px; font-weight: 600; white-space: nowrap; }
.v-pandora     { background: #e8f0fe; color: #1a56b0; }
.v-blacktapes  { background: #f0e8ff; color: #5b0096; }
.v-xspace      { background: #fff0e0; color: #c05000; }
.v-timemachine { background: #e0f5ee; color: #0a6640; }
.k-escape   { background: #e8f5e9; color: #2e7d32; }
.k-xperience{ background: #f3e8ff; color: #6b21a8; }
.k-srpg     { background: #fff8e0; color: #92600a; }
.g-horror   { background: #fdecea; color: #a32d2d; }
.g-adventure{ background: #e3f0fc; color: #185fa5; }
.g-action   { background: #fef3e2; color: #854f0b; }
.g-crime    { background: #eeecfd; color: #534ab7; }
.g-breakout { background: #ebf5e0; color: #3b6d11; }
.g-thriller { background: #fefce0; color: #7a6000; }
.g-mystery  { background: #e0f7fa; color: #006064; }
.g-fun      { background: #e0f2e9; color: #1b5e20; }
.g-emotional{ background: #fce4ec; color: #880e4f; }
.g-romance  { background: #fde8ef; color: #b0003a; }
.g-strategy { background: #e0eeff; color: #003c8f; }
.g-minigames{ background: #ede7f6; color: #4527a0; }
.g-default  { background: #f0f0f0; color: #888; }
.npc-yes    { background: #e6f4ea; color: #1e6e34; }
.rating-block { display: flex; flex-direction: column; gap: 3px; }
.rating-row   { display: flex; align-items: center; gap: 5px; }
.rating-label { font-size: 9px; color: #bbb; width: 46px; flex-shrink: 0; }
.dots { display: flex; gap: 3px; }
.dot  { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.d-diff  { background: #555; }
.d-fear  { background: #d94040; }
.d-phys  { background: #3a8fd1; }
.d-empty { background: #e0e0e0; }
.dur  { font-size: 11px; color: #888; white-space: nowrap; }
.loc  { font-size: 11px; color: #777; line-height: 1.4; }
.desc-cell { font-size: 11px; color: #777; line-height: 1.5; max-width: 260px; }
.nil  { color: #ccc; font-size: 11px; }
.no-results { text-align: center; padding: 48px; color: #bbb; font-size: 14px; }
.pg-btn { background: #fff; border: 1px solid #ddd; color: #555; border-radius: 5px; padding: 4px 10px; font-size: 11px; cursor: pointer; }
.pg-btn:hover { border-color: #aaa; color: #111; }
.pg-btn.active { background: #0c0b09; color: #fff; border-color: #0c0b09; }
.pg-btn:disabled { opacity: .4; cursor: default; }

/* ════════════════════════════════════════════════════════
   IMMERSIVE 101 PAGE
   ════════════════════════════════════════════════════════ */
.hero { background: #0c0b09; color: #fff; padding: 52px 24px; text-align: center; }
.hero h1 { font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.hero p { font-size: 14px; color: #aaa; max-width: 520px; margin: 0 auto 28px; line-height: 1.7; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: #a88b2c; color: #0c0b09; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; }
.btn-primary:hover { background: #937f26; }
.btn-secondary { background: transparent; color: #fff; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 700; text-decoration: none; border: 1px solid #555; }
.btn-secondary:hover { border-color: #aaa; }
main { flex: 1; padding: 40px 24px; max-width: 960px; margin: 0 auto; width: 100%; }
.immersive-intro { background: #fff; border-radius: 10px; padding: 32px; box-shadow: 0 1px 4px rgba(0,0,0,.07); margin-bottom: 48px; }
.immersive-intro h2 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.immersive-intro .lead { font-size: 13px; color: #444; line-height: 1.8; margin-bottom: 24px; }
.immersive-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 24px; }
.pillar { background: #f8f8f8; border-radius: 8px; padding: 16px; }
.pillar .pillar-icon { font-size: 22px; margin-bottom: 8px; }
.pillar h4 { font-size: 12px; font-weight: 700; margin-bottom: 4px; color: #0c0b09; }
.pillar p { font-size: 11px; color: #666; line-height: 1.6; }
.immersive-intro .note { font-size: 11px; color: #999; line-height: 1.6; padding-top: 16px; border-top: 1px solid #f0f0f0; }
.immersive-intro .note strong { color: #555; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-bottom: 48px; }
.card { background: #fff; border-radius: 10px; padding: 28px; box-shadow: 0 1px 4px rgba(0,0,0,.07); border-top: 4px solid #ddd; }
.card.escape   { border-top-color: #2e7d32; }
.card.xperience{ border-top-color: #6b21a8; }
.card.srpg     { border-top-color: #92600a; }
.card-icon { font-size: 28px; margin-bottom: 12px; }
.card h2 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.card .card-tag { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; margin-bottom: 12px; }
.card.escape   .card-tag { background: #e8f5e9; color: #2e7d32; }
.card.xperience .card-tag { background: #f3e8ff; color: #6b21a8; }
.card.srpg     .card-tag { background: #fff8e0; color: #92600a; }
.card p { font-size: 12px; color: #555; line-height: 1.7; margin-bottom: 14px; }
.card-meta { display: flex; flex-direction: column; gap: 6px; }
.card-meta-row { display: flex; gap: 8px; align-items: flex-start; font-size: 11px; color: #777; line-height: 1.5; }
.card-meta-row strong { color: #333; min-width: 70px; flex-shrink: 0; }
.compare-wrap { background: #fff; border-radius: 10px; box-shadow: 0 1px 4px rgba(0,0,0,.07); overflow: hidden; margin-bottom: 48px; }
.compare-wrap table { width: 100%; border-collapse: collapse; font-size: 12px; min-width: 0; box-shadow: none; border-radius: 0; }
.compare-wrap thead tr { background: #f8f8f8; }
.compare-wrap th { padding: 10px 14px; text-align: left; font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: .5px; font-weight: 700; border-bottom: 2px solid #ececec; cursor: default; }
.compare-wrap td { padding: 10px 14px; border-bottom: 1px solid #f2f2f2; vertical-align: top; line-height: 1.5; color: #444; }
.compare-wrap tr:last-child td { border-bottom: none; }
.compare-wrap tr:hover td { background: #fafafa; }
.dot-yes { color: #2e7d32; font-weight: 700; }
.dot-no  { color: #bbb; }
.dot-some{ color: #92600a; font-weight: 700; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-card { flex: 1; min-width: 220px; background: #fff; border-radius: 10px; padding: 24px; box-shadow: 0 1px 4px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 10px; }
.cta-card h3 { font-size: 14px; font-weight: 700; }
.cta-card p { font-size: 12px; color: #777; line-height: 1.6; }
.cta-card a { align-self: flex-start; background: #a88b2c; color: #fff; padding: 8px 18px; border-radius: 6px; font-size: 12px; font-weight: 700; text-decoration: none; }
.cta-card a:hover { background: #937f26; }

/* ════════════════════════════════════════════════════════
   QUIZ PAGE
   ════════════════════════════════════════════════════════ */
.quiz-main { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 40px 24px; }
.progress-wrap { width: 100%; max-width: 560px; margin-bottom: 32px; }
.progress-label { display: flex; justify-content: space-between; font-size: 11px; color: #aaa; margin-bottom: 6px; }
.progress-bar { height: 4px; background: #e0e0e0; border-radius: 2px; overflow: hidden; }
.progress-fill { height: 100%; background: #0c0b09; border-radius: 2px; transition: width .3s ease; }
.question-card { background: #fff; border-radius: 12px; padding: 36px; box-shadow: 0 2px 8px rgba(0,0,0,.08); width: 100%; max-width: 560px; }
.question-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 6px; line-height: 1.4; }
.question-card .sub { font-size: 12px; color: #888; margin-bottom: 24px; }
.options { display: flex; flex-direction: column; gap: 10px; }
.opt { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 2px solid #e8e8e8; border-radius: 8px; cursor: pointer; transition: all .15s; user-select: none; }
.opt:hover { border-color: #aaa; background: #fafafa; }
.opt.selected { border-color: #0c0b09; background: #f8f8f8; }
.opt-icon { font-size: 22px; width: 32px; text-align: center; flex-shrink: 0; }
.opt-text { flex: 1; }
.opt-text strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.opt-text span { font-size: 11px; color: #888; }
.opt-check { width: 18px; height: 18px; border: 2px solid #ddd; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.opt.selected .opt-check { background: #0c0b09; border-color: #0c0b09; }
.opt.selected .opt-check::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; display: block; }
.btn-row { display: flex; justify-content: space-between; margin-top: 28px; gap: 10px; }
.btn-back { background: #fff; border: 1px solid #ddd; color: #666; padding: 9px 20px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; }
.btn-back:hover { border-color: #aaa; color: #333; }
.btn-back:disabled { opacity: .3; cursor: default; }
.btn-next { background: #0c0b09; color: #fff; border: none; padding: 9px 24px; border-radius: 6px; font-size: 12px; font-weight: 700; cursor: pointer; margin-left: auto; }
.btn-next:hover { background: #333; }
.btn-next:disabled { opacity: .4; cursor: default; }
#results { display: none; width: 100%; max-width: 900px; }
.results-header { text-align: center; margin-bottom: 28px; }
.results-header h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.results-header p { font-size: 13px; color: #777; }
.results-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 28px; }
.result-card { background: #fff; border-radius: 10px; padding: 20px; box-shadow: 0 1px 4px rgba(0,0,0,.07); border-left: 4px solid #ddd; }
.result-card.top { border-left-color: #0c0b09; }
.rc-top-badge { font-size: 10px; font-weight: 700; color: #fff; background: #0c0b09; padding: 2px 8px; border-radius: 10px; display: inline-block; margin-bottom: 8px; }
.rc-name { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.rc-venue { font-size: 11px; color: #888; margin-bottom: 8px; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.rc-tag { font-size: 10px; padding: 2px 7px; border-radius: 8px; background: #f0f0f0; color: #555; font-weight: 600; }
.rc-desc { font-size: 11px; color: #666; line-height: 1.5; margin-bottom: 10px; }
.rc-meta { display: flex; gap: 12px; font-size: 11px; color: #888; flex-wrap: wrap; }
.rc-meta span strong { color: #333; }
.result-actions { display: flex; gap: 12px; justify-content: center; align-items: center; }
.btn-retry { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 22px; font-size: 12px; font-weight: 700; border-radius: 6px; background: #0c0b09; color: #fff; border: 1px solid #0c0b09; cursor: pointer; }
.btn-retry:hover { background: #333; }
.btn-all { display: inline-flex; align-items: center; justify-content: center; height: 42px; padding: 0 22px; font-size: 12px; font-weight: 700; border-radius: 6px; background: #fff; color: #555; border: 1px solid #ddd; text-decoration: none; }
.btn-all:hover { border-color: #aaa; color: #333; }

/* ════════════════════════════════════════════════════════
   REGISTER PAGE
   ════════════════════════════════════════════════════════ */
.register-main { flex: 1; padding: 40px 24px; max-width: 640px; margin: 0 auto; width: 100%; }
.form-card { background: #fff; border-radius: 10px; padding: 32px; box-shadow: 0 1px 4px rgba(0,0,0,.07); }
.form-card h2 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.form-intro { font-size: 12px; color: #555; line-height: 1.7; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; }
.form-intro strong { color: #0c0b09; }
.field { margin-bottom: 22px; }
.field label { display: block; font-size: 12px; font-weight: 600; color: #333; margin-bottom: 6px; line-height: 1.5; }
.field label .req { color: #c0392b; margin-left: 2px; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field textarea,
.field select { width: 100%; padding: 8px 10px; border: 1px solid #e0e0e0; border-radius: 6px; font-size: 13px; color: #0c0b09; font-family: Arial, sans-serif; background: #fff; outline: none; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: #0c0b09; }
.field input[type="email"].invalid { border-color: #c0392b; }
.field .error-msg { font-size: 11px; color: #c0392b; margin-top: 4px; display: none; }
.field input.invalid + .error-msg { display: block; }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }
.field .hint { font-size: 11px; color: #999; margin-top: 5px; line-height: 1.5; }
.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 8px; margin-top: 4px; }
.checkbox-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: #333; cursor: pointer; }
.checkbox-item input[type="checkbox"] { width: 14px; height: 14px; accent-color: #a88b2c; cursor: pointer; flex-shrink: 0; }
.upload-label { display: inline-flex; align-items: center; gap: 7px; background: #f4f4f2; border: 1px solid #e0e0e0; border-radius: 6px; padding: 8px 14px; font-size: 12px; font-weight: 600; color: #333; cursor: pointer; }
.upload-label:hover { background: #eaeae8; }
input[type="file"] { display: none; }
.file-name { display: inline-block; margin-left: 10px; font-size: 11px; color: #999; }
.form-actions { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid #f0f0f0; }
.btn-submit { background: #a88b2c; color: #fff; border: none; padding: 10px 24px; border-radius: 6px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: Arial, sans-serif; }
.btn-submit:hover { background: #937f26; }
.btn-form-reset { background: none; border: none; font-size: 12px; color: #aaa; cursor: pointer; font-family: Arial, sans-serif; padding: 0; }
.btn-form-reset:hover { color: #555; }

/* ════════════════════════════════════════════════════════
   INDEX / LANDING PAGE (dark theme)
   ════════════════════════════════════════════════════════ */
body.dark { background: #0c0b09; color: #fff; }
body.dark header { background: rgba(12,11,9,0.85); border-bottom: 1px solid rgba(168,139,44,0.2); position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(8px); }
body.dark .site-title { color: #fff; }
body.dark .site-subtitle { color: rgba(255,255,255,0.5); }
body.dark .header-nav a { color: rgba(255,255,255,0.6); }
body.dark .header-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
body.dark footer { background: #080807; border-top-color: rgba(168,139,44,0.15); color: #666; }
body.dark footer a { color: #888; }
body.dark footer a:hover { color: #a88b2c; }
.parallax { position: relative; background-attachment: fixed; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.parallax-overlay { position: absolute; inset: 0; z-index: 1; }
.parallax-content { position: relative; z-index: 2; padding: 40px 24px; max-width: 800px; }
.lp-hero { min-height: 100vh; background-image: url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?auto=format&fit=crop&w=1920&q=80'); background-color: #1a1208; }
.lp-hero .parallax-overlay { background: linear-gradient(to bottom, rgba(12,11,9,0.3) 0%, rgba(12,11,9,0.55) 60%, rgba(12,11,9,0.85) 100%); }
.lp-hero h1 { font-size: clamp(40px, 7vw, 72px); font-weight: 900; line-height: 1.1; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.lp-hero p { font-size: clamp(16px, 2.5vw, 22px); color: rgba(255,255,255,0.85); margin-bottom: 40px; line-height: 1.5; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.lp-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-gold { background: #a88b2c; color: #fff; padding: 14px 36px; border-radius: 6px; font-size: 15px; font-weight: 700; text-decoration: none; }
.btn-gold:hover { background: #937f26; }
.btn-outline { background: transparent; color: #fff; padding: 14px 36px; border-radius: 6px; font-size: 15px; font-weight: 700; text-decoration: none; border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: #fff; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint::after { content: ''; display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); }
.lp-community { min-height: 90vh; background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?auto=format&fit=crop&w=1920&q=80'); background-color: #12100a; }
.lp-community .parallax-overlay { background: rgba(12,11,9,0.6); }
.lp-community .tag { font-size: 13px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: #a88b2c; margin-bottom: 14px; }
.lp-community h2 { font-size: clamp(14px, 2.5vw, 18px); font-weight: 400; color: rgba(255,255,255,0.8); margin-bottom: 4px; }
.lp-community h2 + h2 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; color: #fff; letter-spacing: 1px; margin-bottom: 32px; line-height: 1.05; }
.lp-community p { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.8); line-height: 1.8; max-width: 620px; margin: 0 auto; }
.lp-stats { background: #a88b2c; padding: 48px 24px; }
.lp-stats-inner { max-width: 800px; margin: 0 auto; display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.lp-stat { text-align: center; }
.lp-stat .num { font-size: 42px; font-weight: 900; color: #0c0b09; line-height: 1; }
.lp-stat .label { font-size: 12px; font-weight: 700; color: rgba(12,11,9,0.7); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px; }
.lp-join { min-height: 60vh; background-image: url('https://images.unsplash.com/photo-1543269865-cbf427effbad?auto=format&fit=crop&w=1920&q=80'); background-color: #0c0b09; }
.lp-join .parallax-overlay { background: rgba(12,11,9,0.75); }
.lp-join h2 { font-size: clamp(28px, 5vw, 52px); font-weight: 900; margin-bottom: 16px; }
.lp-join p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.lp-hero-logo { width: 120px; height: auto; border-radius: 0; margin-bottom: 24px; box-shadow: 0 4px 24px rgba(0,0,0,0.5); }
.lp-instagram { background: #111009; border-top: 1px solid rgba(168,139,44,0.2); border-bottom: 1px solid rgba(168,139,44,0.2); padding: 72px 24px; text-align: center; }
.lp-instagram .ig-icon { width: 52px; height: 52px; margin: 0 auto 16px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.lp-instagram .ig-icon svg { width: 28px; height: 28px; fill: #fff; }
.lp-instagram h3 { font-size: clamp(22px, 4vw, 36px); font-weight: 900; color: #fff; margin-bottom: 8px; }
.lp-instagram p { font-size: 15px; color: rgba(255,255,255,0.6); margin-bottom: 28px; line-height: 1.6; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-instagram { display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; padding: 14px 32px; border-radius: 6px; font-size: 15px; font-weight: 700; text-decoration: none; }
.btn-instagram:hover { opacity: .88; }

/* ════════════════════════════════════════════════════════
   HAMBURGER BUTTON (hidden on desktop)
   ════════════════════════════════════════════════════════ */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; flex-shrink: 0; }
.hamburger span { display: block; width: 22px; height: 2px; background: #0c0b09; border-radius: 2px; transition: transform .2s, opacity .2s; }
body.dark .hamburger span { background: #fff; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ════════════════════════════════════════════════════════
   MOBILE  (≤ 768px)
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Header ── */
  header { height: auto; padding: 12px 16px; flex-wrap: wrap; gap: 0; }
  .hamburger { display: flex; }
  .header-nav { display: none; flex-direction: column; width: 100%; gap: 2px; padding: 10px 0 4px; border-top: 1px solid #e0e0e0; margin-top: 10px; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 10px 12px; font-size: 13px; border-radius: 6px; }
  body.dark .header-nav { border-top-color: rgba(168,139,44,0.2); }
  body.dark .header-nav a:hover { background: rgba(255,255,255,0.08); color: #fff; }

  /* ── General ── */
  main { padding: 24px 16px; }
  .section-title { margin-bottom: 16px; }

  /* ── Immersive 101 ── */
  .hero { padding: 36px 16px; }
  .hero h1 { font-size: 22px; }
  .hero p { font-size: 13px; }
  .immersive-intro { padding: 20px 16px; }
  .immersive-pillars { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .card { padding: 20px 16px; }
  .compare-wrap { overflow-x: auto; }
  .cta-row { flex-direction: column; }

  /* ── Quiz ── */
  .question-card { padding: 24px 16px; }
  .opt { padding: 12px 14px; }

  /* ── Register ── */
  .register-main { padding: 24px 16px; }
  .form-card { padding: 24px 16px; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }

  /* ── Landing ── */
  .parallax-content { padding: 80px 20px 40px; }
  .lp-hero-logo { width: 88px; }
  .lp-stats-inner { gap: 28px; }
  .lp-stat .num { font-size: 32px; }
  .scroll-hint { display: none; }
  .lp-instagram { padding: 48px 20px; }
  .btn-gold, .btn-outline { padding: 12px 24px; font-size: 14px; }
  .btn-instagram { padding: 12px 24px; font-size: 14px; }

  /* ── Games — filter bar ── */
  .filter-bar { padding: 12px 16px; gap: 8px; }
  .filter-group { width: calc(50% - 4px); }
  select, input[type=text] { width: 100%; }
  input[type=text] { width: 100%; }
  .result-count { margin-left: 0; width: 100%; }
  .btn-reset { width: 100%; text-align: center; }

  /* ── Games — table → cards ── */
  .table-wrap { padding: 12px 16px; }
  #pagination-top, #pagination-bottom { justify-content: center; }

  table { min-width: 0; box-shadow: none; background: transparent; }
  table, thead, tbody, tr, td { display: block; width: 100%; }
  thead { display: none; }

  tbody tr {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    padding: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,.07);
    border-bottom: none;
  }
  tbody tr:hover { background: #fff; }

  tbody td {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 5px 0;
    border: none;
    font-size: 12px;
  }
  tbody td::before {
    content: attr(data-label);
    font-size: 9px;
    font-weight: 700;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: .5px;
    min-width: 64px;
    flex-shrink: 0;
    padding-top: 3px;
  }
  tbody td[data-label="Deskripsi"] { display: none; }
  .desc-cell { max-width: none; }
  .loc { white-space: normal; }
}

