:root {
  --bg: #120c08;
  --bg-deep: #0a0705;
  --panel: #24160f;
  --panel-2: #2a1a10;
  --line: rgba(201, 168, 108, 0.35);
  --text: #fff6e8;
  --muted: #d2b48c;
  --gold: #ffd54a;
  --gold-deep: #ff8a1f;
  --ember: #e65100;
  --green: #4ade80;
  --max: 1100px;
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Sora", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 7, 5, 0.78);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-icon { width: 40px; height: 40px; border-radius: 11px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 0.95rem; color: var(--gold); }
.brand-text em { font-style: normal; font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; }
.nav { display: flex; align-items: center; gap: 22px; }
.nav a { color: var(--muted); font-size: 0.9rem; font-weight: 500; }
.nav a:hover { color: var(--gold); }
.nav-cta {
  padding: 8px 14px !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #2a1608 !important;
  font-weight: 700 !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 0 72px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 18%, rgba(255, 138, 31, 0.28), transparent 60%),
    linear-gradient(180deg, #2a180c 0%, #120c08 55%, #0a0705 100%);
}
.hero-glow {
  position: absolute;
  inset: 8% 10% auto;
  height: 42%;
  background: radial-gradient(circle, rgba(255, 213, 74, 0.22), transparent 70%);
  filter: blur(8px);
  pointer-events: none;
  animation: pulse 4.5s ease-in-out infinite;
}
.hero-veil {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, var(--bg-deep));
  pointer-events: none;
}
.hero-stage {
  position: relative;
  text-align: center;
  max-width: 720px;
}
.hero-kicker {
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(255, 138, 31, 0.35);
  animation: floaty 3.2s ease-in-out infinite;
}
.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 5.6rem);
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 0.92;
  text-shadow: 0 4px 0 rgba(90, 40, 0, 0.45);
}
.hero-subbrand {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  letter-spacing: 0.22em;
  color: #ffb74d;
}
.hero-lead {
  margin: 18px auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-chips span {
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(36, 22, 15, 0.7);
  padding: 8px 12px;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #2a1608;
  box-shadow: 0 10px 28px rgba(255, 138, 31, 0.35);
}
.btn-ghost {
  border-color: var(--line);
  background: rgba(36, 22, 15, 0.55);
  color: var(--text);
}

/* Sections */
.section { padding: 88px 0; }
.section.is-first { padding-top: 108px; }
.section-head { max-width: 640px; margin-bottom: 28px; }
.eyebrow {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-head h2,
.support h2,
.policy-card h3,
.panel-copy h3 {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  line-height: 1.05;
}
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); }

.gameplay {
  background:
    linear-gradient(180deg, transparent, rgba(255, 138, 31, 0.05)),
    var(--bg);
}

.screen-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.screen-tab {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
}
.screen-tab.is-active {
  color: #2a1608;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: transparent;
}

.panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #2a1a10, #16100b);
  border-radius: 24px;
  padding: 28px;
}
.panel.panel-feature {
  display: block;
  padding: 0;
  overflow: hidden;
  background: #1a120c;
}
.feature-banner {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}
.panel[hidden] { display: none !important; }
.panel-label {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.panel-copy h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 12px; }
.panel-copy p { color: var(--muted); margin-bottom: 16px; }
.ticks { list-style: none; display: grid; gap: 10px; }
.ticks li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 0.94rem;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(255, 213, 74, 0.5);
}

/* Phone mocks — match real app chrome */
.phone { display: flex; justify-content: center; }
.phone-bezel {
  width: min(100%, 272px);
  aspect-ratio: 9 / 19.2;
  border-radius: 30px;
  padding: 8px;
  background: linear-gradient(160deg, #4a3420, #1a120c 60%, #0c0906);
  border: 1px solid rgba(201, 168, 108, 0.35);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
}
.phone-bezel.phone-shot {
  padding: 6px;
  aspect-ratio: auto;
  width: min(100%, 280px);
}
.phone-shot-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}
.phone-ui {
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #120c08;
  display: flex;
  flex-direction: column;
  position: relative;
}
.phone-ui img { display: block; max-width: 100%; pointer-events: none; user-select: none; }

/* —— Mine screen —— */
.phone-mine { background: #1a120c; }
.mine-stage {
  position: relative;
  flex: 1.55;
  min-height: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.28) 0%, transparent 18%, transparent 62%, rgba(0,0,0,0.55) 100%),
    url("../assets/bg_mine_cave.jpg") center top / cover no-repeat;
  overflow: hidden;
}
.mine-balance {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 12px 0 22px;
  border-radius: 999px;
  background: #3a2112;
  border: 1.5px solid #ffc94a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}
.mine-balance img {
  position: absolute;
  left: -10px;
  width: 34px;
  height: 34px;
  object-fit: contain;
}
.mine-balance span {
  color: #ffd700;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.mine-side {
  position: absolute;
  top: 44px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mine-side img { width: 30px; height: 30px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.45)); }
.mine-side img.pulse { animation: pulse 2.2s ease-in-out infinite; }
.mine-side-l { left: 4px; }
.mine-side-l img:nth-child(3) { width: 36px; height: 36px; }
.mine-side-r { right: 4px; align-items: flex-end; }
.mine-side-r > img:first-of-type,
.side-vip img { width: 34px; height: 34px; }
.side-vip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
.side-vip span {
  font-size: 0.48rem;
  font-weight: 800;
  color: #ffd74a;
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
}
.mine-gold {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  object-fit: contain;
}
.mine-gold.main {
  left: 50%;
  top: 48%;
  width: 118%;
  height: 100%;
  transform: translate(-50%, -50%);
  animation: pulse 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 22px rgba(255, 160, 40, 0.4));
}
.mine-gold.scrap {
  z-index: 1;
  opacity: 0.95;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
}
.mine-gold.scrap.s1 {
  left: 34%;
  top: 76%;
  width: 28%;
  transform: translate(-50%, -50%) rotate(-16deg);
}
.mine-gold.scrap.s2 {
  left: 50%;
  top: 80%;
  width: 34%;
  transform: translate(-50%, -50%) rotate(6deg);
}
.mine-gold.scrap.s3 {
  left: 66%;
  top: 76%;
  width: 26%;
  transform: translate(-50%, -50%) rotate(18deg);
}
.mine-digger {
  position: absolute;
  left: calc(var(--fx) * 100%);
  top: calc(var(--fy) * 100%);
  width: calc(32px * var(--s, 1));
  height: auto;
  z-index: 2;
  object-fit: contain;
  transform: translate(-50%, -55%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.55));
  animation: dig 1.15s ease-in-out infinite;
  pointer-events: none;
}
.mine-digger.peak { z-index: 3; }
.mine-digger.free { z-index: 4; }
.mine-digger:nth-child(odd) { animation-delay: 0.2s; }
.mine-digger:nth-child(3n) { animation-delay: 0.4s; }
.mine-digger:nth-child(4n) { animation-delay: 0.55s; }
.mine-btc {
  position: absolute;
  left: calc(var(--fx) * 100%);
  top: calc(var(--fy) * 100%);
  width: 14px;
  z-index: 5;
  transform: translate(-50%, -50%);
  opacity: 0.95;
  animation: floatBtc 2s ease-in-out infinite;
  pointer-events: none;
}
.mine-btc:nth-child(odd) { animation-delay: 0.5s; }
@keyframes floatBtc {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.25; }
  40% { transform: translate(-50%, -12px); opacity: 1; }
}

.mine-hash {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 34px;
  padding: 0 10px 0 6px;
  background: linear-gradient(180deg, #8b5a2b, #6b3e1f);
  border-top: 1px solid #a07040;
  border-bottom: 1px solid #4a2a14;
  box-shadow: inset 0 1px 0 rgba(255, 220, 160, 0.2);
  font-size: 0.62rem;
  position: relative;
}
.mine-hash::before,
.mine-hash::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6a6a6a;
  border: 1px solid #3a3a3a;
  flex-shrink: 0;
}
.mine-hash img { width: 18px; height: 18px; object-fit: contain; }
.mine-hash .hash-label { color: #e8dcc8; font-weight: 600; }
.mine-hash strong { color: #7dffa0; font-weight: 800; margin-right: auto; }
.mine-hash em { color: #ffd74a; font-style: normal; font-weight: 700; }

.mine-crew {
  flex: 0.85;
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 6px 7px 4px;
  background: #c9a06a;
}
.crew-card {
  position: relative;
  aspect-ratio: 3 / 4.4;
  border-radius: 6px;
  overflow: hidden;
}
.crew-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  z-index: 1;
  pointer-events: none;
}
.crew-body {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18% 12% 10%;
  box-sizing: border-box;
}
.crew-stage {
  width: 100%;
  flex: 1;
  min-height: 0;
  border-radius: 8px;
  border: 1.5px solid #b8862d;
  background: linear-gradient(180deg, #5c3c21, #36221e);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  overflow: hidden;
}
.crew-stage img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}
.crew-npc {
  animation: dig 1.4s ease-in-out infinite;
}
.crew-name {
  margin-top: 4px;
  font-size: 0.52rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 2px #1a0e08;
  line-height: 1.1;
}
.crew-gh {
  position: absolute;
  top: 6%;
  left: 8%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.42rem;
  font-weight: 800;
  color: #fff8e0;
  text-shadow: 0 1px 2px #000;
  background: rgba(20, 10, 0, 0.55);
  padding: 1px 4px 1px 2px;
  border-radius: 6px;
  white-space: nowrap;
}
.crew-gh img {
  width: 9px;
  height: 9px;
  object-fit: contain;
}
.crew-timer {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-top: 2px;
  font-size: 0.4rem;
  font-weight: 700;
  color: #fff4d8;
  text-shadow: 0 1px 2px #000;
  white-space: nowrap;
}
.crew-timer img {
  width: 8px;
  height: 8px;
  object-fit: contain;
}

.app-nav {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, #3a2818, #26190e);
  border-top: 1px solid #c9a86c;
  padding: 4px 2px 6px;
}
.app-nav span {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 0 2px;
  border-radius: 8px;
  margin: 0 2px;
  position: relative;
}
.app-nav span img { width: 22px; height: 22px; object-fit: contain; opacity: 0.72; }
.app-nav span.on {
  background: linear-gradient(180deg, #8b5a2b, #5c3818);
  box-shadow: inset 0 0 0 1px rgba(255, 200, 80, 0.45);
}
.app-nav span.on::before {
  content: "";
  position: absolute;
  top: 2px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #ff9a2e;
}
.app-nav span.on img { opacity: 1; }

/* —— Shop screen —— */
.phone-shop {
  background: linear-gradient(180deg, #141820, #0c1016);
  padding: 0;
}
.shop-head {
  padding: 12px 12px 6px;
  flex: 0 0 auto;
}
.shop-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: #5ad6ff;
  margin-bottom: 2px;
}
.shop-head h4 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: #f4f0e8;
  margin: 0 0 4px;
}
.shop-promo {
  font-size: 0.62rem;
  color: #9aa3b2;
  margin: 0;
}
.shop-promo b { color: #ffd74a; }
.shop-grid {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px 10px 8px;
  overflow: hidden;
  align-content: start;
}
.sku-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px 8px;
  border-radius: 12px;
  background: linear-gradient(160deg, #1c2430, #121820);
  border: 1px solid rgba(90, 214, 255, 0.25);
  text-align: center;
}
.sku-card.hot {
  border-color: rgba(255, 213, 74, 0.65);
  box-shadow: 0 0 14px rgba(255, 180, 40, 0.18);
}
.sku-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 0.48rem;
  font-weight: 800;
  color: #1a1208;
  background: #ffd74a;
  padding: 2px 5px;
  border-radius: 4px;
}
.sku-tier {
  align-self: flex-end;
  font-size: 0.5rem;
  font-weight: 800;
  color: #9adfff;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.sku-tier.gold { color: #ffd74a; }
.sku-tier.cyan { color: #5ad6ff; }
.sku-card img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  margin: 2px 0 4px;
}
.sku-card strong {
  font-size: 0.66rem;
  color: #7dffa0;
}
.sku-card em {
  font-size: 0.5rem;
  color: #8a93a3;
  font-style: normal;
  margin-bottom: 4px;
}
.sku-card button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 5px 0;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #1a1208;
  background: linear-gradient(180deg, #ffe082, #ff9a2e);
  cursor: default;
}

/* —— Tasks screen —— */
.phone-tasks {
  background: linear-gradient(180deg, #16120e, #0e0b08);
  display: flex;
  flex-direction: column;
}
.tasks-head {
  padding: 12px 12px 4px;
  flex: 0 0 auto;
}
.tasks-back {
  font-weight: 700;
  font-size: 0.85rem;
  color: #f4f0e8;
  margin: 0 0 4px;
}
.tasks-note {
  margin: 0;
  font-size: 0.58rem;
  color: #5ad6ff;
}
.task-list {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 8px 10px;
  overflow: hidden;
}
.task-card {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border-radius: 12px;
  background: linear-gradient(160deg, #2a1f16, #18120c);
  border: 1px solid rgba(201, 168, 108, 0.28);
}
.task-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.task-card strong {
  display: block;
  font-size: 0.68rem;
  color: #f4f0e8;
  margin-bottom: 2px;
}
.task-card span {
  font-size: 0.58rem;
  color: #7dffa0;
  font-weight: 700;
}
.task-card button {
  border: 0;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 0.55rem;
  font-weight: 800;
  color: #1a1208;
  background: linear-gradient(180deg, #ffe082, #ff9a2e);
  cursor: default;
}
.task-ad {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #ffd74a;
  background: #2a2218;
  border: 1px solid rgba(255, 213, 74, 0.35);
}
.task-card.muted button {
  background: linear-gradient(180deg, #6ec8ff, #3a8fd0);
  color: #061018;
}

/* Policy — slim, matches login legal links */
.policy {
  background: linear-gradient(180deg, #16100b, #0f0b08);
}
.policy-slim {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.policy-slim h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 8px 0 18px;
}
.policy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-weight: 700;
}
.policy-links a {
  color: #f4f0e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.policy-links a:hover { color: var(--gold); }
.policy-links span { color: var(--muted); }
.policy-disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.policy-contact {
  font-size: 0.86rem;
  color: var(--muted);
}
.policy-contact a { color: var(--gold); font-weight: 600; }

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.policy-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 20px;
  padding: 24px;
}
.policy-card h3 { font-size: 1.8rem; margin-bottom: 8px; color: var(--gold); }
.policy-card p { color: var(--muted); margin-bottom: 14px; }
.policy-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--text);
  font-size: 0.92rem;
}
.policy-card li { padding-left: 14px; border-left: 2px solid var(--gold-deep); }
.text-link { color: var(--gold); font-weight: 700; }

/* Support */
.support { background: var(--bg); }
.support-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.support h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.lead { color: var(--muted); margin-bottom: 16px; max-width: 34rem; }
.mail {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 213, 74, 0.4);
}
.support-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #2a1a10, #16100b);
  border-radius: 20px;
  padding: 22px;
}
.support-form label { display: grid; gap: 6px; }
.support-form span { font-size: 0.78rem; color: var(--muted); font-weight: 600; }
.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
  padding: 12px 14px;
  outline: none;
}
.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(255, 213, 74, 0.7);
}
.form-note { color: var(--muted); font-size: 0.78rem; }
.form-note.is-ok { color: var(--green); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
  background: #0a0705;
}
.footer-inner {
  display: grid;
  gap: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand img { border-radius: 10px; }
.footer-brand strong { display: block; color: var(--gold); }
.footer-brand span { color: var(--muted); font-size: 0.82rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--muted); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: #8a7358; font-size: 0.8rem; }

/* Legal pages reuse */
.legal-page {
  padding: 100px 0 60px;
  min-height: 100vh;
  background: var(--bg-deep);
}
.legal-page h1 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  margin: 12px 0;
}
.legal-page h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 1.2rem;
}
.legal-page h3 { margin-top: 16px; margin-bottom: 8px; }
.legal-page p, .legal-page li { color: var(--muted); margin-bottom: 10px; }
.legal-page ul { padding-left: 18px; margin-bottom: 12px; }
.legal-page a { color: var(--gold); }
.back-link { color: var(--muted); font-size: 0.9rem; }
.updated { color: #8a7358; font-size: 0.85rem; margin-bottom: 18px; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.04); opacity: 1; }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes dig {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(-6deg); }
}

@media (max-width: 860px) {
  .panel,
  .policy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
  .phone { order: -1; }
  .nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #1a120c;
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-bottom: 1px solid rgba(201, 168, 108, 0.15); }
  .nav-cta { border-radius: 0 !important; text-align: center; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding-top: 100px; }
}
