:root {
  --void: #030711;
  --night: #071020;
  --panel: rgba(12, 19, 34, 0.82);
  --panel-strong: rgba(17, 25, 43, 0.94);
  --gold: #ffd24a;
  --gold-2: #ff9f1c;
  --red: #ff2b1f;
  --red-2: #b90d12;
  --cyan: #37d7ff;
  --green: #4ee28a;
  --violet: #a978ff;
  --rose: #ff5f8f;
  --cream: #fff6d6;
  --white: #ffffff;
  --muted: #b8c0d4;
  --line: rgba(255, 210, 74, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 210, 74, 0.16), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(255, 43, 31, 0.2), transparent 24%),
    linear-gradient(180deg, #030711 0%, #071020 48%, #030711 100%);
  font-family: Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

.card-icon svg,
.why-icon svg,
.step-badge svg,
.game-icon svg,
.contact-channel svg,
.copy-card i svg,
.copy-button svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tone-gold { --tone: var(--gold); --tone-rgb: 255, 210, 74; }
.tone-red { --tone: var(--red); --tone-rgb: 255, 43, 31; }
.tone-cyan { --tone: var(--cyan); --tone-rgb: 55, 215, 255; }
.tone-green { --tone: var(--green); --tone-rgb: 78, 226, 138; }
.tone-violet { --tone: var(--violet); --tone-rgb: 169, 120, 255; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 max(20px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: rgba(3, 7, 17, 0.78);
  border-bottom: 1px solid rgba(255, 210, 74, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #160b00;
  background: #070911;
  box-shadow: 0 0 22px rgba(255, 210, 74, 0.45);
  font-weight: 950;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small { display: block; line-height: 1.15; }
.brand strong { font-size: 17px; }
.brand small { color: rgba(255,255,255,0.58); font-size: 11px; }

.desktop-nav {
  display: flex;
  gap: 24px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 800;
}

.desktop-nav a { transition: color .2s ease, text-shadow .2s ease; }
.desktop-nav a:hover { color: var(--gold); text-shadow: 0 0 14px rgba(255,210,74,.72); }

.header-cta,
.btn,
.service-card a,
.game-grid a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  font-weight: 950;
}

.header-cta {
  padding: 0 20px;
  color: #180900;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  box-shadow: 0 0 24px rgba(255, 210, 74, 0.38);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,210,74,.24);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.mobile-nav {
  position: fixed;
  z-index: 55;
  top: 72px;
  left: 0;
  right: 0;
  display: none;
  padding: 14px 20px;
  background: rgba(3, 7, 17, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-nav.open {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mobile-nav a {
  padding: 12px;
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 104px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 17%, rgba(255, 210, 74, 0.2), transparent 22%),
    radial-gradient(circle at 20% 75%, rgba(255, 43, 31, 0.2), transparent 25%);
}

.hero-rays {
  position: absolute;
  inset: -20%;
  background:
    conic-gradient(from 230deg at 50% 45%, transparent, rgba(255,210,74,.12), transparent 16%, rgba(255,43,31,.11), transparent 28%);
  animation: slowSpin 22s linear infinite;
  opacity: .86;
}

.spark {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.9) 0 2%, rgba(255,210,74,.8) 5%, rgba(255,43,31,.35) 18%, transparent 58%);
  filter: blur(.2px);
  animation: sparkPulse 3s ease-in-out infinite;
}

.spark-a { top: 112px; right: 6%; }
.spark-b { bottom: 100px; left: 9%; animation-delay: 1s; }

.hero-stack {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-stack.reveal {
  opacity: 1;
  transform: none;
}

.hero-kicker {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid rgba(255,210,74,.38);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(3,7,17,.72);
  box-shadow: 0 0 26px rgba(255,43,31,.18);
  font-weight: 950;
}

.banner-frame {
  position: relative;
  width: min(100%, 940px);
  aspect-ratio: 1280 / 720;
  border: 1px solid rgba(255, 210, 74, 0.42);
  border-radius: 16px;
  background: #050912;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 44px rgba(255, 43, 31, 0.3),
    0 28px 80px rgba(0,0,0,.65);
  overflow: hidden;
  animation: bannerFloat 5.5s ease-in-out infinite;
}

.banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.28) 45%, transparent 52% 100%);
  transform: translateX(-120%);
  animation: shine 4.8s ease-in-out infinite;
  pointer-events: none;
}

.banner-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  max-width: 920px;
  margin-top: 22px;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  color: #fff;
  text-shadow:
    0 3px 0 #170100,
    0 0 18px rgba(255,43,31,.72),
    0 0 34px rgba(255,210,74,.36);
}

.hero-title-typewriter {
  white-space: pre-line;
}

.hero-title-cursor {
  display: inline-block;
  width: 3px;
  height: .9em;
  margin-left: 8px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(255,210,74,.72);
  vertical-align: -0.08em;
  animation: cursorBlink .85s steps(1) infinite;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1.22;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

h3 { margin-bottom: 10px; font-size: 21px; }

.hero-copy p,
.section-heading p,
.glass-card p,
.why-grid p,
.review-row p,
.faq-answer p,
.contact-card p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}


.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn {
  min-width: 180px;
  padding: 0 24px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover,
.glass-card:hover,
.game-grid article:hover,
.why-grid article:hover,
.review-row article:hover {
  transform: translateY(-5px);
}

.btn-primary {
  color: #190900;
  background: linear-gradient(135deg, var(--gold), #fff2a8 54%, var(--gold-2));
  box-shadow: 0 0 24px rgba(255,210,74,.45);
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  box-shadow: inset 0 0 20px rgba(255,255,255,.04);
}

.premium-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(760px, 100%);
  gap: 12px;
  margin-bottom: 80px;
}

.premium-badges article {
  padding: 18px;
  border: 1px solid rgba(255,210,74,.24);
  border-radius: 14px;
  background: rgba(8,14,28,.74);
  box-shadow: inset 0 0 28px rgba(255,210,74,.05), 0 12px 36px rgba(0,0,0,.32);
}

.premium-badges strong,
.premium-badges span { display: block; }
.premium-badges strong { color: var(--gold); font-size: 24px; }
.premium-badges span { color: rgba(255,255,255,.72); font-size: 14px; }

.notice-ticker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px max(20px, calc((100vw - 1160px) / 2));
  border-block: 1px solid rgba(255,210,74,.32);
  background: rgba(3,7,17,.86);
  overflow: hidden;
}

.notice-ticker span {
  flex: 0 0 auto;
  padding: 5px 12px;
  border-radius: 8px;
  color: #1a0900;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.notice-ticker div { overflow: hidden; white-space: nowrap; }
.notice-ticker p {
  display: inline-block;
  min-width: 100%;
  margin: 0;
  color: rgba(255,255,255,.82);
  animation: ticker 24s linear infinite;
}

.section {
  position: relative;
  padding: 104px 0;
  scroll-margin-top: 88px;
}

.section-casino {
  background:
    radial-gradient(circle at 10% 20%, rgba(255,210,74,.1), transparent 25%),
    radial-gradient(circle at 92% 20%, rgba(255,43,31,.12), transparent 24%),
    rgba(255,255,255,.02);
}

#service {
  background:
    radial-gradient(circle at 18% 8%, rgba(55,215,255,.12), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(255,95,143,.12), transparent 24%);
}

#games {
  background:
    radial-gradient(circle at 16% 30%, rgba(78,226,138,.1), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(169,120,255,.12), transparent 24%),
    rgba(255,255,255,.015);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

#service .section-heading {
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.price-update-meta {
  display: inline-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 16px;
  margin: 0 auto 26px;
  border: 1px solid rgba(255,210,74,.2);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,210,74,.09), rgba(55,215,255,.05)),
    rgba(3,7,17,.42);
  box-shadow: inset 0 0 20px rgba(255,255,255,.025);
}

.price-status-light {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255,210,74,.75);
}

.price-update-meta[data-state="success"] .price-status-light {
  background: var(--green);
  box-shadow: 0 0 18px rgba(78,226,138,.72);
}

.price-update-meta[data-state="fallback"] .price-status-light {
  background: var(--red);
  box-shadow: 0 0 18px rgba(255,43,31,.65);
}

.price-update-meta strong {
  color: #fff;
  font-weight: 950;
}

.price-update-meta time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.cell-label,
.cell-chip,
.cell-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  font-weight: 950;
  word-break: keep-all;
}

.cell-label {
  color: #fff;
  background: transparent;
  text-shadow: 0 0 12px rgba(255,43,31,.45);
}

.cell-chip {
  border: 1px solid rgba(255,210,74,.25);
  color: #fff;
  background: rgba(255,255,255,.065);
}

.cell-inquiry {
  color: var(--cyan);
  border-color: rgba(55,215,255,.32);
  background: rgba(55,215,255,.08);
}

.cell-price {
  color: var(--gold);
  background: rgba(255,210,74,.09);
}

.cell-buy-price {
  color: var(--red);
  border-color: rgba(255,43,31,.34);
  background: rgba(255,43,31,.09);
}

.cell-sell-price {
  color: var(--cyan);
  border-color: rgba(55,215,255,.34);
  background: rgba(55,215,255,.09);
}

.cell-note {
  color: var(--green);
  border: 1px solid rgba(78,226,138,.3);
  background: rgba(78,226,138,.08);
}

.tab {
  min-width: 132px;
  height: 44px;
  border: 1px solid rgba(255,210,74,.24);
  border-radius: 10px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  font-weight: 900;
}

.tab.active {
  color: #1a0900;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  box-shadow: 0 0 22px rgba(255,210,74,.36);
}

.price-board {
  overflow: auto;
  border: 1px solid rgba(255,210,74,.25);
  border-radius: 20px;
  background:
    linear-gradient(rgba(55,215,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,210,74,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15,21,38,.96), rgba(5,9,18,.98));
  background-size: 44px 44px, 44px 44px, auto;
  box-shadow: var(--shadow), inset 0 0 38px rgba(255,210,74,.08), 0 0 36px rgba(255,43,31,.1);
}

.price-table {
  display: none;
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.price-table.active { display: table; }

.price-table th {
  padding: 16px;
  color: var(--gold);
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,210,74,.22);
  font-size: 14px;
}

.price-table td {
  padding: 17px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: center;
}

.price-table td:first-child {
  color: #fff;
  font-weight: 950;
  text-shadow: 0 0 12px rgba(255,43,31,.45);
}

.price-table td:nth-child(3) {
  color: var(--red);
  font-weight: 950;
}

.price-table td:nth-child(4) {
  color: var(--cyan);
  font-weight: 950;
}

.mobile-price-cards { display: none; }

.table-note {
  margin: 16px 0 0;
  padding: 15px 18px;
  border: 1px solid rgba(255,210,74,.22);
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  color: #ffe9a0;
  background: rgba(255,210,74,.08);
}

.service-grid,
.game-grid,
.why-grid,
.review-row {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.game-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid {
  grid-template-columns: repeat(6, 1fr);
}
.review-row { grid-template-columns: repeat(4, 1fr); }

.glass-card,
.game-grid article,
.why-grid article,
.review-row article,
.step-lane article,
.contact-card {
  border: 1px solid rgba(255,210,74,.2);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  box-shadow: var(--shadow), inset 0 0 28px rgba(255,255,255,.035);
  backdrop-filter: blur(14px);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.glass-card:hover,
.game-grid article:hover,
.why-grid article:hover,
.review-row article:hover {
  border-color: rgba(255,210,74,.52);
  box-shadow: 0 24px 70px rgba(0,0,0,.5), 0 0 26px rgba(255,43,31,.22);
}

.service-card {
  position: relative;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 100%;
}

.service-card:nth-child(1),
.service-card:nth-child(3) {
  margin-top: 0;
}

.service-card.featured {
  border-color: rgba(255,210,74,.48);
  transform: none;
  box-shadow: var(--shadow), 0 0 42px rgba(255,210,74,.24), inset 0 0 34px rgba(255,210,74,.045);
}

.badge {
  position: absolute;
  top: 16px;
  right: 50%;
  transform: translateX(50%);
  padding: 5px 10px;
  border-radius: 999px;
  color: #190900;
  background: var(--gold);
  font-size: 12px;
  font-weight: 950;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 14px;
  color: var(--tone, var(--gold));
  background:
    radial-gradient(circle at 35% 25%, rgba(255,255,255,.26), transparent 30%),
    rgba(var(--tone-rgb, 255, 210, 74), .12);
  border: 1px solid rgba(var(--tone-rgb, 255, 210, 74), .45);
  box-shadow: 0 0 24px rgba(var(--tone-rgb, 255, 210, 74), .36);
  font-size: 28px;
  font-weight: 950;
}

.service-card ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.service-card li {
  padding: 6px 10px;
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  font-size: 13px;
  font-weight: 800;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-points svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card a,
.game-grid a {
  width: 100%;
  margin-top: auto;
  color: #190900;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
}

.step-lane {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 26px;
  border: 1px solid rgba(255,210,74,.16);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255,210,74,.07), transparent 20%, transparent 80%, rgba(55,215,255,.06)),
    rgba(3,7,17,.32);
}

.step-lane::after {
  content: "";
  position: absolute;
  top: 48px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,210,74,.7), rgba(55,215,255,.65), rgba(78,226,138,.55), transparent);
  filter: blur(5px);
  animation: timelineGlow 3.4s ease-in-out infinite;
}

.method-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: -12px 0 36px;
  flex-wrap: wrap;
}

.method-tab {
  min-width: 178px;
  height: 46px;
  border: 1px solid rgba(255,210,74,.24);
  border-radius: 999px;
  color: rgba(255,255,255,.72);
  background: rgba(255,255,255,.07);
  cursor: pointer;
  font-weight: 950;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.method-tab:hover {
  transform: translateY(-2px);
}

.method-tab.active {
  color: #190900;
  border-color: var(--gold);
  background: linear-gradient(135deg, var(--gold), #fff0a3 54%, var(--gold-2));
  box-shadow: 0 0 26px rgba(255,210,74,.42), 0 0 14px rgba(255,43,31,.22);
}

.method-panel {
  display: none;
}

.method-panel.active {
  display: block;
}

.step-lane::before {
  content: "";
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
  box-shadow: 0 0 18px rgba(255,210,74,.35);
}

.step-lane article {
  position: relative;
  padding: 32px 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.09), transparent 38%),
    rgba(5,9,18,.74);
  text-align: center;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 74px;
  margin: 0 auto 18px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, rgba(255,210,74,.22), rgba(255,210,74,.08) 42%, transparent 70%);
  box-shadow: none;
}

.step-badge i {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: currentColor;
  background: transparent;
  filter: drop-shadow(0 0 12px rgba(255,210,74,.74)) drop-shadow(0 0 26px rgba(255,58,42,.22));
}

.step-badge svg {
  width: 44px;
  height: 44px;
  stroke-width: 2.2;
}

.step-lane h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}

.step-number {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(255,210,74,.36);
  border-radius: 999px;
  color: #120800;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  box-shadow: 0 0 16px rgba(255,210,74,.24);
}

.game-grid article {
  padding: 26px;
  text-align: center;
}

.game-icon {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--tone, var(--gold));
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,.28), transparent 24%),
    rgba(var(--tone-rgb, 255, 210, 74), .12);
  border: 1px solid rgba(var(--tone-rgb, 255, 210, 74), .38);
  box-shadow: 0 0 24px rgba(var(--tone-rgb, 255, 210, 74), .32);
  font-size: 30px;
  font-weight: 950;
}

.game-grid em {
  display: block;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.why-grid article,
.review-row article {
  padding: 24px;
  text-align: center;
}

.why-grid article {
  grid-column: span 2;
  position: relative;
  min-height: 160px;
  padding: 30px 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.08), transparent 42%);
}

.why-grid article:nth-child(2),
.why-grid article:nth-child(5) {
  transform: none;
}

.review-row article:nth-child(even) {
  transform: none;
}

.why-icon {
  position: relative;
  top: auto;
  left: auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border-radius: 14px;
  color: var(--tone, var(--gold));
  background: rgba(var(--tone-rgb, 255, 210, 74), .1);
  border: 1px solid rgba(var(--tone-rgb, 255, 210, 74), .38);
  box-shadow: 0 0 24px rgba(var(--tone-rgb, 255, 210, 74), .24);
  font-size: 24px;
}

.stars {
  display: inline-flex;
  justify-content: center;
  min-width: 110px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255,210,74,.08);
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255,210,74,.42);
}

.guide-section {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,210,74,.16), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(255,43,31,.18), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(55,215,255,.10), transparent 34%),
    linear-gradient(180deg, #050914 0%, #0a1221 48%, #050914 100%);
  border-top: 1px solid rgba(255,210,74,.38);
  border-bottom: 1px solid rgba(255,210,74,.22);
}

.guide-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.guide-heading .eyebrow {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(255,210,74,.45);
}

.guide-heading h2 {
  color: #fff;
  text-shadow: 0 0 26px rgba(255,255,255,.18), 0 5px 0 rgba(0,0,0,.42);
}

.guide-heading p {
  margin: 0 auto;
  color: var(--muted);
}

.guide-stack {
  display: grid;
  gap: 34px;
}

.guide-overview,
.guide-flow,
.guide-bottom-grid {
  display: grid;
  gap: 18px;
}

.guide-overview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 22px;
}

.guide-flow {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 22px;
}

.guide-game-strip {
  display: grid;
  gap: 16px;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255,210,74,.10), transparent 38%),
    radial-gradient(circle at 94% 18%, rgba(55,215,255,.10), transparent 34%),
    rgba(255,255,255,.035);
}

.guide-bottom-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.guide-feature {
  position: relative;
  overflow: hidden;
}

.guide-feature::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -72px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,74,.2), transparent 68%);
  pointer-events: none;
}

.guide-priority {
  background:
    radial-gradient(circle at 100% 0%, rgba(78,226,138,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.guide-block {
  display: grid;
  gap: 16px;
}

.guide-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,210,74,.2);
}

.guide-title span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  border-radius: 9px;
  color: #000;
  background: linear-gradient(135deg, var(--gold), #fff0a3 58%, var(--gold-2));
  box-shadow: 0 0 22px rgba(255,210,74,.34);
  font-size: 13px;
  font-weight: 950;
}

.guide-title h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.25;
}

.guide-title.compact h3 {
  font-size: 21px;
}

.guide-card,
.guide-mini-card,
.guide-check-card,
.guide-alert {
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 54px rgba(0,0,0,.24), inset 0 0 22px rgba(255,255,255,.025);
  backdrop-filter: blur(14px);
}

.guide-card,
.guide-check-card {
  padding: 26px;
}

.guide-card h4,
.guide-mini-card h4,
.guide-check-card h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 17px;
}

.guide-card p,
.guide-mini-card p,
.guide-alert p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.guide-split,
.guide-two,
.guide-three {
  display: grid;
  gap: 16px;
}

.guide-split {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 18px;
}

.guide-split div {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 18px;
  border: 1px solid rgba(255,210,74,.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.18), transparent 45%),
    rgba(255,210,74,.06);
  text-align: center;
}

.guide-split div:nth-child(2) {
  border-color: rgba(78,226,138,.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(78,226,138,.16), transparent 45%),
    rgba(78,226,138,.055);
}

.guide-split i,
.guide-card-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  border-radius: 50%;
  color: var(--tone, var(--gold-2));
  background: rgba(var(--tone-rgb, 255, 159, 28), .11);
}

.guide-split i {
  color: var(--gold-2);
  background: rgba(255,159,28,.12);
}

.guide-split div:nth-child(2) i {
  color: #12a967;
  background: rgba(18,169,103,.12);
}

.guide-split strong,
.guide-split span {
  display: block;
}

.guide-split strong {
  color: #fff;
  font-weight: 950;
}

.guide-split span {
  color: var(--muted);
  font-size: 13px;
}

.guide-two {
  grid-template-columns: repeat(2, 1fr);
}

.guide-three {
  grid-template-columns: repeat(3, 1fr);
}

.guide-mini-card {
  padding: 24px;
}

.guide-mini-card.accent {
  border-left: 4px solid var(--green);
  background:
    radial-gradient(circle at 100% 0%, rgba(78,226,138,.13), transparent 42%),
    linear-gradient(180deg, rgba(78,226,138,.08), rgba(255,255,255,.035));
}

.guide-flow-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255,210,74,.2);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,210,74,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: 0 20px 54px rgba(0,0,0,.22), inset 0 0 22px rgba(255,255,255,.025);
  overflow: hidden;
}

.guide-flow-card.sell {
  border-color: rgba(78,226,138,.22);
  background:
    radial-gradient(circle at 12% 0%, rgba(78,226,138,.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.guide-flow-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guide-step;
}

.guide-flow-card li {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 14px 14px 14px 54px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(3,7,17,.34);
  counter-increment: guide-step;
}

.guide-flow-card li::before {
  content: counter(guide-step, decimal-leading-zero);
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #000;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  font-size: 11px;
  font-weight: 950;
}

.guide-flow-card b {
  color: #fff;
}

.guide-flow-card span {
  color: var(--muted);
  font-size: 14px;
}

.guide-card-icon svg,
.guide-split svg,
.guide-alert svg,
.guide-check-card svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-check-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-check-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  color: var(--muted);
  border-bottom: 1px dashed rgba(255,255,255,.12);
}

.guide-check-card li:last-child {
  border-bottom: 0;
}

.guide-check-card li svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #20bf73;
}

.guide-alert {
  display: flex;
  gap: 14px;
  padding: 20px;
}

.guide-alert i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.guide-alert strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.guide-alert.success {
  border-color: rgba(32,191,115,.32);
  border-left: 4px solid #20bf73;
  background:
    radial-gradient(circle at 0% 0%, rgba(32,191,115,.16), transparent 45%),
    linear-gradient(180deg, rgba(32,191,115,.08), rgba(255,255,255,.035));
}

.guide-alert.success i {
  color: #20bf73;
  background: rgba(32,191,115,.12);
}

.guide-alert.warn {
  border-color: rgba(255,159,28,.34);
  border-left: 4px solid var(--gold-2);
  background:
    radial-gradient(circle at 0% 0%, rgba(255,159,28,.18), transparent 45%),
    linear-gradient(180deg, rgba(255,159,28,.08), rgba(255,255,255,.035));
}

.guide-alert.warn i {
  color: var(--gold-2);
  background: rgba(255,159,28,.13);
}

.faq-list { display: grid; gap: 10px; }

.faq-list {
  padding: 18px;
  border: 1px solid rgba(55,215,255,.14);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(55,215,255,.08), transparent 42%),
    rgba(3,7,17,.48);
  box-shadow: inset 0 0 28px rgba(55,215,255,.035);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 1px solid rgba(255,210,74,.22);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
  cursor: pointer;
  text-align: left;
  font-weight: 950;
}

.faq-question span { color: var(--gold); font-size: 22px; }
.faq-answer { display: none; padding: 0 18px 18px; }
.faq-answer.open { display: block; }

.contact-section {
  background:
    radial-gradient(circle at 12% 78%, rgba(255,43,31,.2), transparent 28%),
    radial-gradient(circle at 82% 28%, rgba(255,210,74,.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: center;
  padding: 42px;
  text-align: center;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,210,74,.14);
  border-radius: 22px;
  pointer-events: none;
}

.contact-left {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 36px 18px;
}

.contact-orbit {
  position: absolute;
  inset: 8px auto auto 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: .8;
}

.contact-orbit::before,
.contact-orbit::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 50%;
  transform: rotate(-18deg) scaleX(1.28);
}

.contact-orbit::after {
  inset: 72px;
  border-color: rgba(55,215,255,.16);
  transform: rotate(22deg) scaleX(1.45);
}

.contact-orbit span {
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255,210,74,.75);
}

.contact-orbit span:nth-child(1) { top: 58px; left: 58px; }
.contact-orbit span:nth-child(2) { top: 98px; right: 36px; background: var(--cyan); box-shadow: 0 0 18px rgba(55,215,255,.7); }
.contact-orbit span:nth-child(3) { bottom: 54px; left: 118px; background: var(--green); box-shadow: 0 0 18px rgba(78,226,138,.7); }

.contact-left > *:not(.contact-orbit) {
  position: relative;
  z-index: 1;
}

.contact-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(100%, 430px);
  margin-top: 24px;
}

.contact-metrics div {
  display: grid;
  gap: 4px;
  padding: 14px 10px;
  border: 1px solid rgba(255,210,74,.2);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.12), transparent 48%),
    rgba(255,255,255,.045);
}

.contact-metrics strong {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(255,210,74,.42);
}

.contact-metrics span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,210,74,.25);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,210,74,.18), transparent 42%),
    linear-gradient(180deg, rgba(12,19,34,.96), rgba(3,7,17,.92));
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.34), inset 0 0 32px rgba(255,255,255,.03);
  overflow: hidden;
}

.contact-channel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255,210,74,.18);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  box-shadow: inset 0 0 20px rgba(255,255,255,.025);
  text-align: left;
}

.contact-channel i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: var(--tone, var(--gold));
  background: rgba(var(--tone-rgb, 255, 210, 74), .12);
  border: 1px solid rgba(var(--tone-rgb, 255, 210, 74), .28);
  font-size: 22px;
}

.contact-channel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
}

.contact-channel strong {
  color: #fff;
  font-size: 20px;
  grid-column: 2;
  line-height: 1.15;
}

.contact-channel.highlight {
  border-color: rgba(78,226,138,.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(78,226,138,.14), transparent 46%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
}

.copy-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  margin-bottom: 10px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.06);
  cursor: pointer;
  text-align: center;
}

.copy-card i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255,210,74,.1);
  border: 1px solid rgba(255,210,74,.22);
}

.copy-card:nth-child(2) i {
  color: var(--cyan);
  background: rgba(55,215,255,.1);
  border-color: rgba(55,215,255,.22);
}

.copy-card.highlight i {
  color: var(--green);
  background: rgba(78,226,138,.1);
  border-color: rgba(78,226,138,.26);
}

.copy-card span,
.copy-card strong { display: block; }
.copy-card span { color: var(--muted); font-size: 12px; font-weight: 900; }
.copy-card strong { font-size: 20px; }
.copy-card.highlight { border-color: rgba(78,226,138,.42); background: rgba(78,226,138,.08); }
.copy-status { min-height: 22px; margin: 8px 0 0; color: var(--gold); font-weight: 900; }

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 96px;
  min-height: 36px;
  border: 0;
  border-radius: 999px;
  color: #170900;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  cursor: pointer;
  font-weight: 950;
}

.copy-button svg {
  width: 16px;
  height: 16px;
}

.floating-cta {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #190900;
  background: linear-gradient(135deg, var(--gold), #fff0a3);
  box-shadow: 0 0 28px rgba(255,210,74,.42);
  font-weight: 950;
}

.mobile-contact-bar { display: none; }

.site-footer {
  padding: 54px 0 94px;
  color: rgba(255,255,255,.68);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,210,74,.08), transparent 26%),
    linear-gradient(180deg, #080d22 0%, #070a1e 100%);
  border-top: 1px solid rgba(255,210,74,.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(0, 2fr);
  gap: 42px 56px;
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 0 24px rgba(255,210,74,.3);
}

.footer-brand strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.footer-brand p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.58);
  font-weight: 800;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer-links section {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
}

.footer-links a,
.footer-links p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  transition: color .2s ease, text-shadow .2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  text-shadow: 0 0 14px rgba(255,210,74,.48);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: center;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.42);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s ease;
}

body.js-ready .reveal {
  opacity: 0.18;
  transform: translateY(18px);
}

body.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes sparkPulse {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes bannerFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.01); }
}

@keyframes shine {
  0%, 35% { transform: translateX(-120%); }
  60%, 100% { transform: translateX(120%); }
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,210,74,.35); }
  50% { box-shadow: 0 0 34px rgba(255,210,74,.68), 0 0 18px rgba(255,43,31,.35); }
}

@keyframes ticker {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}

@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

@keyframes timelineGlow {
  0%, 100% { opacity: .35; transform: scaleX(.92); }
  50% { opacity: .9; transform: scaleX(1); }
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta { display: none; }
  .menu-toggle { display: block; }
  .hero { padding-top: 98px; }
  .service-grid,
  .game-grid,
  .why-grid,
  .review-row,
  .step-lane,
  .contact-card { grid-template-columns: repeat(2, 1fr); }
  .why-grid article {
    grid-column: auto;
  }
  .step-lane::before { display: none; }
  .step-lane::after { display: none; }
  .contact-card { grid-template-columns: 1fr; }
  .service-card:nth-child(1),
  .service-card:nth-child(3),
  .service-card.featured,
  .why-grid article:nth-child(2),
  .why-grid article:nth-child(5),
  .review-row article:nth-child(even) {
    margin-top: 0;
    transform: none;
  }
  .guide-overview,
  .guide-flow,
  .guide-bottom-grid {
    grid-template-columns: 1fr;
  }
  .guide-three { grid-template-columns: repeat(2, 1fr); }
  .price-board {
    overflow: hidden;
  }
  .price-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }
  .price-table th,
  .price-table td {
    padding: 12px 6px;
    font-size: 12px;
    line-height: 1.3;
  }
  .price-table th:nth-child(1),
  .price-table td:nth-child(1) { width: 24%; }
  .price-table th:nth-child(2),
  .price-table td:nth-child(2) { width: 18%; }
  .price-table th:nth-child(3),
  .price-table td:nth-child(3),
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) { width: 22%; }
  .price-table th:nth-child(5),
  .price-table td:nth-child(5) { width: 14%; }
  .cell-label,
  .cell-chip,
  .cell-note {
    min-height: 28px;
    padding: 5px 7px;
    font-size: 11px;
    white-space: normal;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container,
  .narrow { width: min(100% - 28px, 1160px); }
  .site-header { height: 64px; padding: 0 14px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 14px; }
  .brand small { font-size: 10px; }
  .mobile-nav { top: 64px; }
  .hero { min-height: auto; padding-top: 88px; }
  main { padding-bottom: 86px; }
  .hero-kicker { font-size: 13px; }
  .banner-frame { border-radius: 12px; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  .hero-copy p { font-size: 16px; }
  .hero-actions,
  .tabs,
  .method-tabs { flex-direction: column; width: 100%; }
  .btn,
  .tab,
  .method-tab { width: 100%; }
  .premium-badges,
  .service-grid,
  .why-grid,
  .review-row,
  .step-lane,
  .contact-card { grid-template-columns: 1fr; }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 76px;
  }
  .game-grid article {
    min-height: 216px;
    padding: 18px 12px;
    scroll-margin-bottom: 104px;
  }
  .game-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  .game-grid h3 {
    font-size: 18px;
    line-height: 1.25;
  }
  .game-grid p,
  .game-grid em {
    font-size: 13px;
  }
  .game-grid a {
    min-height: 40px;
    font-size: 14px;
  }
  .why-grid article {
    grid-column: auto;
  }
  .premium-badges { margin-bottom: 44px; }
  .section { padding: 72px 0; }
  .price-update-meta {
    width: 100%;
    flex-wrap: wrap;
  }
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .tab {
    width: auto;
    min-width: 0;
    height: 42px;
    padding: 0 8px;
    font-size: 14px;
  }
  .price-board {
    display: block;
    overflow: hidden;
    border-radius: 14px;
  }
  .price-table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }
  .price-table th,
  .price-table td {
    padding: 10px 4px;
    font-size: 11px;
    line-height: 1.25;
  }
  .price-table th:nth-child(1),
  .price-table td:nth-child(1) { width: 24%; }
  .price-table th:nth-child(2),
  .price-table td:nth-child(2) { width: 18%; }
  .price-table th:nth-child(3),
  .price-table td:nth-child(3),
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) { width: 22%; }
  .price-table th:nth-child(5),
  .price-table td:nth-child(5) { width: 14%; }
  .cell-label,
  .cell-chip,
  .cell-note {
    min-height: 26px;
    padding: 5px 6px;
    border-radius: 999px;
    font-size: 10px;
    white-space: normal;
    word-break: keep-all;
  }
  .mobile-price-cards { display: none; }
  .contact-card { padding: 24px; }
  .contact-left {
    padding: 22px 0 8px;
  }
  .contact-orbit {
    width: 220px;
    height: 220px;
    opacity: .55;
  }
  .contact-metrics {
    grid-template-columns: 1fr;
  }
  .contact-points li {
    justify-content: flex-start;
  }
  .contact-channel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .contact-channel strong {
    grid-column: auto;
  }
  .guide-heading {
    margin-bottom: 30px;
  }
  .guide-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .guide-title h3 {
    font-size: 21px;
  }
  .guide-card,
  .guide-check-card,
  .guide-mini-card,
  .guide-alert {
    padding: 20px;
  }
  .guide-split,
  .guide-two,
  .guide-three,
  .guide-overview,
  .guide-flow,
  .guide-bottom-grid {
    grid-template-columns: 1fr;
  }
  .guide-alert {
    flex-direction: column;
    align-items: flex-start;
  }
  .service-card,
  .why-grid article,
  .review-row article,
  .step-lane article {
    padding: 24px 20px;
  }
  .service-card ul {
    gap: 6px;
  }
  .service-card li {
    font-size: 12px;
  }
  .floating-cta { display: none; }
  .mobile-contact-bar {
    position: fixed;
    z-index: 70;
    left: 10px;
    right: 10px;
    bottom: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255,210,74,.26);
    border-radius: 14px;
    background: rgba(3,7,17,.9);
    backdrop-filter: blur(16px);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    border-radius: 10px;
    color: #190900;
    background: var(--gold);
    font-weight: 950;
  }
  .site-footer { padding-bottom: 162px; }
  .footer-grid {
    gap: 28px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .footer-brand {
    grid-template-columns: 46px 1fr;
  }
  .footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   문의 설문폼 (통합 어드민 연동) — 자체완결 스타일
   ============================================================ */
.iq-container { max-width: 820px; margin: 48px auto 0; padding: 0 20px; }
.iq-heading { text-align: center; font-size: 24px; font-weight: 800; margin: 0 0 24px; color: #fff; }
.iq-wrap { width: 100%; }
.iq-form { display: grid; gap: 18px; background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 28px; }
.iq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.iq-field { display: grid; gap: 6px; min-width: 0; }
.iq-field > label { font-size: 14px; font-weight: 700; color: #e7dcc4; }
.iq-field select,
.iq-field .iq-input {
  width: 100%; min-height: 52px; padding: 0 14px;
  border: 1px solid rgba(255,255,255,.18); border-radius: 10px;
  background: #14110b; color: #fff; font: inherit; appearance: none; -webkit-appearance: none;
}
.iq-field select {
  background-image: linear-gradient(45deg, transparent 50%, #c9a34e 50%), linear-gradient(135deg, #c9a34e 50%, transparent 50%);
  background-position: right 18px center, right 12px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat;
  padding-right: 40px; cursor: pointer;
}
.iq-field select:focus, .iq-field .iq-input:focus {
  outline: none; border-color: #c9a34e; box-shadow: 0 0 0 3px rgba(201,163,78,.2);
}
.iq-field .iq-input::placeholder { color: #8a8272; }
.iq-field .iq-input:disabled { opacity: .4; cursor: not-allowed; }
.iq-field[hidden] { display: none; }
.iq-field.iq-err select, .iq-field.iq-err .iq-input { border-color: #e06a5c; }
.iq-submit { display: grid; justify-items: center; gap: 10px; margin-top: 6px; }
.iq-go { width: 100%; min-height: 56px; }
.iq-status { margin: 0; min-height: 18px; font-size: 14px; color: #e06a5c; text-align: center; }
.iq-status.ok { color: #4fd39a; }
.iq-result { padding: 20px; border: 1.5px solid rgba(79,211,154,.35); border-radius: 12px; background: rgba(255,255,255,.02); text-align: center; }
.iq-result[hidden] { display: none; }
.iq-result-head { display: grid; gap: 4px; margin-bottom: 14px; }
.iq-result-head strong { font-size: 18px; color: #4fd39a; }
.iq-result-head span { font-size: 14px; color: #b9b0a0; }
.iq-summary { margin: 0 auto 16px; max-width: 460px; padding: 14px; border: 1px dashed rgba(255,255,255,.2); border-radius: 10px; background: #14110b; color: #fff; font-size: 14px; line-height: 1.9; text-align: left; white-space: pre-wrap; word-break: keep-all; }
.iq-actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
@media (max-width: 640px) { .iq-row { grid-template-columns: 1fr; } }

/* === SEO 멀티페이지 추가: 지도 · 법적 문서 · 히어로 노트 (2026) === */
.map-wrapper{position:relative;width:100%;max-width:100%;overflow:hidden;border-radius:16px}
.map-wrapper iframe{display:block;width:100%;height:400px;border:0;max-width:100%}
.hero-note{margin-top:14px;font-size:15px;opacity:.9}
.hero-note a{text-decoration:underline;text-underline-offset:3px}
.footer-legal{display:flex;flex-wrap:wrap;gap:16px;margin-bottom:14px}
.footer-legal a{text-decoration:underline;text-underline-offset:3px}
.legal-main{padding:120px 0 80px}
.legal-doc{max-width:820px;margin:0 auto}
.legal-doc h1{font-size:clamp(28px,5vw,42px);margin-bottom:8px;line-height:1.25}
.legal-updated{opacity:.7;margin-bottom:32px;font-size:14px}
.legal-doc h2{font-size:20px;margin:30px 0 10px;line-height:1.4}
.legal-doc p{line-height:1.8;margin-bottom:12px}
.legal-doc ul{margin:0 0 16px;padding-left:20px}
.legal-doc li{line-height:1.8;margin-bottom:6px;list-style:disc}
.legal-doc address{font-style:normal}
.legal-doc a{text-decoration:underline;text-underline-offset:3px}
.legal-back{margin-top:40px}
@media (max-width:768px){.legal-main{padding:96px 0 60px}.map-wrapper iframe{height:300px}}

.hero-lead{font-weight:600;font-size:clamp(16px,2.4vw,19px);margin-bottom:8px;opacity:.95}

/* 위치 장소카드 (지도 옆 브랜드 정보) */
.location-card{display:grid;grid-template-columns:minmax(240px,340px) 1fr;gap:24px;align-items:stretch}
.location-info{display:flex;flex-direction:column;gap:10px;padding:24px;border-radius:16px;background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08)}
.loc-name{font-size:22px;font-weight:700;line-height:1.3}
.loc-addr{font-size:16px;opacity:.9}
.loc-meta{list-style:none;padding:0;margin:6px 0 auto;display:flex;flex-direction:column;gap:6px;font-size:14px;opacity:.85}
.location-info .btn{margin-top:12px;align-self:flex-start}
@media (max-width:768px){.location-card{grid-template-columns:1fr}}

#inquiry-form{scroll-margin-top:90px}

/* 게임 서브페이지: 배너 없어 히어로 100vh가 빈 공간 → 콘텐츠 높이로 + 섹션 여백 축소 */
.game-page .hero{min-height:auto;padding-bottom:8px}
.game-page .section{padding:48px 0}
.game-page .hero-stack{gap:18px}
