@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ===== KeyDrop palette ===== */
:root {
  --bg: #17161f;
  --bg-2: #131219;
  --header: #100f17;
  --card: #201f2b;
  --line: #2b2a38;
  --purple: #8b5cf6;
  --purple-2: #a855f7;
  --steam: #86c232;
  --steam-2: #5c9a2e;
  --gold: #f5c451;
  --text: #ffffff;
  --muted: #9a9ab2;
  --online: #57c04a;
  /* rarity top colors */
  --r-blue: #4b69ff;
  --r-purple: #8847ff;
  --r-pink: #d32ce6;
  --r-red: #eb4b4b;
  --r-gold: #ffd700;

  --radius: 14px;
  --wrap: 1240px;
  --shadow: 0 16px 44px rgba(0,0,0,.55);
  --glow-purple: 0 14px 40px rgba(139,92,246,.35);
  --grad-purple: linear-gradient(120deg, var(--purple), var(--purple-2));
  --grad-steam: linear-gradient(120deg, var(--steam), var(--steam-2));
  --grad-gold: linear-gradient(120deg, #ffd873, var(--gold));
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Montserrat', system-ui, Arial, sans-serif;
  background:
    radial-gradient(1200px 680px at 82% -12%, rgba(139,92,246,.16), transparent 55%),
    radial-gradient(1000px 620px at -5% 4%, rgba(168,85,247,.12), transparent 52%),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Rajdhani', sans-serif; line-height: 1.14; font-weight: 700; letter-spacing: .3px; }

a { color: var(--purple-2); text-decoration: none; transition: color .2s; }
a:hover { color: var(--purple); }

img { max-width: 100%; display: block; }

p { margin: 0 0 14px; }
ul, ol { margin: 0 0 16px 20px; }
li { margin-bottom: 8px; }

:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

.section { padding: 60px 0; }
.section--tight { padding: 40px 0; }

.eyebrow {
  display: inline-block; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; font-size: 13px;
  color: var(--purple-2); margin-bottom: 10px;
}

.section-head { margin-bottom: 30px; max-width: 820px; }
.section-head h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 10px; }
.section-head p { color: var(--muted); font-size: 16px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 16px;
  letter-spacing: .5px; padding: 12px 22px; border-radius: 11px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  text-transform: uppercase;
}
.btn-primary { background: var(--grad-purple); color: #fff; box-shadow: 0 10px 26px rgba(139,92,246,.34); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(168,85,247,.5); }
.btn-steam { background: var(--grad-steam); color: #10230a; box-shadow: 0 10px 24px rgba(134,194,50,.30); }
.btn-steam:hover { color: #10230a; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(134,194,50,.46); }
.btn-gold { background: var(--grad-gold); color: #201a00; box-shadow: 0 10px 24px rgba(245,196,81,.34); }
.btn-gold:hover { color: #201a00; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245,196,81,.5); }
.btn-secondary { background: rgba(255,255,255,.03); color: var(--text); border-color: var(--line); }
.btn-secondary:hover { color: #fff; border-color: var(--purple); box-shadow: 0 0 0 1px rgba(139,92,246,.4); }
.btn-ghost { background: rgba(139,92,246,.10); color: var(--purple-2); border-color: rgba(139,92,246,.4); }
.btn-ghost:hover { background: rgba(139,92,246,.2); color: #fff; }
.btn-sm { padding: 9px 16px; font-size: 14px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16,15,23,.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; gap: 14px; height: 64px; }
.brand { display: flex; align-items: center; gap: 9px; flex-shrink: 0; }
.brand__logo { height: 30px; width: auto; }

/* main nav: single row, no wrap */
.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; flex-wrap: nowrap; }
.nav > a, .nav__more-btn {
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
  color: var(--muted); font-weight: 600; font-size: 13.5px; padding: 8px 10px; border-radius: 9px;
  cursor: pointer; user-select: none; transition: color .18s, background .18s;
}
.nav > a svg, .nav__more-btn svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .82; }
.nav > a:hover, .nav__more-btn:hover { color: #fff; background: rgba(139,92,246,.14); }
.nav > a[aria-current="page"] { color: var(--gold); background: rgba(245,196,81,.12); }
.nav > a[aria-current="page"] svg { opacity: 1; }

/* "Ещё" dropdown (checkbox, no JS) */
.nav__more { position: relative; }
.more-toggle { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.nav__more-btn .caret {
  width: 6px; height: 6px; border: solid currentColor; border-width: 0 2px 2px 0;
  transform: rotate(45deg); margin: -3px 0 0 3px; transition: transform .2s;
}
.more-toggle:checked ~ .nav__more-btn .caret { transform: rotate(-135deg); margin-top: 2px; }
.nav__dropdown {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 210px;
  background: var(--header); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow); padding: 8px; z-index: 60;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s;
}
.nav__dropdown::before {
  content: ''; position: absolute; top: -5px; right: 26px; width: 10px; height: 10px;
  background: var(--header); border-left: 1px solid var(--line); border-top: 1px solid var(--line); transform: rotate(45deg);
}
.more-toggle:checked ~ .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a {
  display: flex; align-items: center; gap: 9px; padding: 9px 12px; border-radius: 8px;
  color: var(--muted); font-weight: 600; font-size: 13.5px; white-space: nowrap;
}
.nav__dropdown a svg { width: 16px; height: 16px; flex-shrink: 0; opacity: .8; }
.nav__dropdown a:hover, .nav__dropdown a[aria-current="page"] { color: #fff; background: rgba(139,92,246,.16); }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: 6px; flex-shrink: 0; }
.header-actions::before {
  content: "\2699"; font-size: 20px; color: var(--muted); line-height: 1;
  cursor: pointer; transition: color .2s, transform .3s;
}
.header-actions:hover::before { color: var(--purple-2); transform: rotate(45deg); }
.lang-badge {
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; color: var(--purple-2);
  border: 1px solid var(--line); padding: 6px 10px; border-radius: 8px; letter-spacing: 1px;
}

.menu-toggle { display: none; }
.menu-btn { display: none; cursor: pointer; padding: 8px; border: 1px solid var(--line); border-radius: 8px; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after {
  content: ''; display: block; width: 22px; height: 2px; background: var(--text); position: relative;
}
.menu-btn span::before { position: absolute; top: -7px; }
.menu-btn span::after { position: absolute; top: 7px; }

/* ===== Live drops strip ===== */
.livebar { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 10px 0; }
.livebar__inner { display: flex; align-items: center; gap: 14px; }
.live-label {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; color: var(--online);
  white-space: nowrap; background: rgba(87,192,74,.1); border: 1px solid rgba(87,192,74,.35);
  padding: 7px 12px; border-radius: 9px;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--online); box-shadow: 0 0 10px var(--online); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.live-track { overflow-x: hidden; flex: 1; -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent); }
.live-strip { display: flex; gap: 10px; width: max-content; animation: marquee 36s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.drop {
  position: relative; display: flex; align-items: center; gap: 10px; background: var(--card);
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 13px 7px 8px; white-space: nowrap;
  --rar: var(--r-purple);
}
.drop::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rar); border-radius: 10px 10px 0 0; }
.live-strip .drop:nth-child(6n+1) { --rar: var(--r-blue); }
.live-strip .drop:nth-child(6n+2) { --rar: var(--r-red); }
.live-strip .drop:nth-child(6n+3) { --rar: var(--r-purple); }
.live-strip .drop:nth-child(6n+4) { --rar: var(--r-pink); }
.live-strip .drop:nth-child(6n+5) { --rar: var(--r-gold); }
.live-strip .drop:nth-child(6n+6) { --rar: var(--r-blue); }
.drop img { width: 40px; height: 40px; object-fit: contain; background: rgba(0,0,0,.28); border-radius: 8px; padding: 3px; }
.drop b { font-size: 12px; color: var(--text); font-weight: 600; }
.drop small { display: block; color: var(--muted); font-size: 11px; }
.drop .price { color: var(--gold); font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 13px; }

/* ===== Hero ===== */
.hero { position: relative; padding: 56px 0 50px; border-bottom: 1px solid var(--line); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 40px; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(245,196,81,.14);
  border: 1px solid rgba(245,196,81,.4); color: var(--gold); padding: 6px 14px; border-radius: 999px;
  font-weight: 600; font-size: 13px; margin-bottom: 18px;
}
.hero h1 { font-size: clamp(32px, 5.2vw, 56px); margin-bottom: 16px; }
.hero h1 span { background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { color: var(--muted); font-size: 18px; max-width: 560px; margin-bottom: 26px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero__mini { display: flex; flex-wrap: wrap; gap: 22px; color: var(--muted); font-size: 14px; }
.hero__mini b { color: var(--text); font-family: 'Rajdhani', sans-serif; font-size: 20px; display: block; }

.hero__media {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(139,92,246,.4); box-shadow: var(--glow-purple);
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.hero__overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: flex-start; justify-content: flex-end; gap: 12px; padding: 20px;
  background: linear-gradient(180deg, transparent 45%, rgba(16,15,23,.72));
}
.countdown {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 15px; letter-spacing: 1px; color: #fff;
  background: rgba(16,15,23,.72); border: 1px solid rgba(245,196,81,.5);
  padding: 7px 13px; border-radius: 10px;
}
.countdown b { color: var(--gold); }
/* legacy hero tag (inner pages) */
.hero__tag {
  position: absolute; left: 16px; bottom: 16px; background: rgba(16,15,23,.82); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 10px; font-size: 13px; color: var(--text);
}
.hero__tag b { color: var(--gold); }

/* ===== Gold / accent panel ===== */
.goldarea {
  position: relative; background: linear-gradient(120deg, rgba(139,92,246,.16), rgba(168,85,247,.08)), var(--card);
  border: 1px solid rgba(139,92,246,.4); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.goldarea h2 { font-size: clamp(24px, 3.6vw, 34px); color: #fff; margin-bottom: 8px; }
.goldarea h2 span { color: var(--gold); }
.goldarea p { color: var(--muted); margin: 0; max-width: 640px; }
.goldarea img { border-radius: 10px; border: 1px solid var(--line); background: rgba(0,0,0,.25); object-fit: contain; }

/* ===== Grids / cards ===== */
.grid { display: grid; gap: 20px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative; --rar: var(--r-purple);
  background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: transform .18s, border-color .2s, box-shadow .2s;
}
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--rar); z-index: 3; }
.grid .card:nth-child(5n+1) { --rar: var(--r-blue); }
.grid .card:nth-child(5n+2) { --rar: var(--r-purple); }
.grid .card:nth-child(5n+3) { --rar: var(--r-pink); }
.grid .card:nth-child(5n+4) { --rar: var(--r-red); }
.grid .card:nth-child(5n+5) { --rar: var(--r-gold); }
.card:hover { transform: translateY(-5px); border-color: rgba(139,92,246,.6); box-shadow: var(--glow-purple); }
.card__media {
  position: relative;
  background: radial-gradient(circle at 50% 38%, color-mix(in srgb, var(--rar) 26%, transparent), transparent 66%), var(--bg-2);
  padding: 20px 18px 14px;
}
.card__media img { width: 100%; height: 132px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(0,0,0,.5)); }
.card__badge {
  position: absolute; top: 12px; left: 12px; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: .5px; padding: 4px 9px; border-radius: 6px;
  background: rgba(16,15,23,.72); border: 1px solid var(--line); color: var(--muted);
}
.card__badge--free { background: rgba(134,194,50,.16); border-color: rgba(134,194,50,.5); color: var(--steam); }
.card__badge--gold { background: rgba(245,196,81,.16); border-color: rgba(245,196,81,.5); color: var(--gold); }
/* price pill top-right */
.card__price {
  position: absolute; top: 12px; right: 12px; z-index: 4;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 14px;
  background: var(--grad-gold); color: #201a00; padding: 5px 11px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.card__price--free { background: var(--grad-steam); color: #10230a; }
.card__body { padding: 6px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 4px; }
.card__name { font-family: 'Rajdhani', sans-serif; font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.card__desc { font-size: 13px; color: var(--muted); margin-bottom: 14px; flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.card__foot .btn { flex: 1; }

/* ===== Gold / premium individuality (this site = Gold Area / Premium) ===== */
/* premium & gold cards get a warm gold-tinted frame */
.card--premium {
  border-color: rgba(245,196,81,.42);
  background: linear-gradient(180deg, rgba(245,196,81,.10), var(--card) 42%, var(--bg-2));
  box-shadow: 0 10px 30px rgba(245,196,81,.10);
}
.card--premium:hover { border-color: rgba(245,196,81,.75); box-shadow: 0 16px 40px rgba(245,196,81,.22); }
.card--premium::before { background: var(--grad-gold); }
.card--premium .card__cat { color: var(--gold); }

/* corner "Gold Event" ribbon */
.ribbon {
  position: absolute; top: 16px; right: -46px; z-index: 6;
  transform: rotate(45deg); background: var(--grad-gold); color: #241c00;
  font-family: 'Rajdhani', sans-serif; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  font-size: 12px; padding: 6px 52px; box-shadow: 0 8px 20px rgba(245,196,81,.4);
}

/* gold event band on the homepage */
.gold-event {
  position: relative; overflow: hidden;
  background: linear-gradient(120deg, rgba(245,196,81,.16), rgba(139,92,246,.14)), var(--card);
  border: 1px solid rgba(245,196,81,.45); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: 0 14px 40px rgba(245,196,81,.12);
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
}
.gold-event::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: -60%; width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.14), transparent);
  transform: skewX(-18deg); animation: shine 5.5s ease-in-out infinite;
}
@keyframes shine { 0%,60% { left: -60%; } 100% { left: 140%; } }
.gold-event__ico {
  width: 54px; height: 54px; flex-shrink: 0; border-radius: 14px; background: var(--grad-gold);
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 10px 24px rgba(245,196,81,.4);
}
.gold-event__txt { flex: 1; min-width: 220px; }
.gold-event__txt b { font-family: 'Rajdhani', sans-serif; font-size: 22px; color: var(--gold); display: block; letter-spacing: .5px; }
.gold-event__txt span { color: var(--muted); font-size: 14px; }
.gold-event .btn { flex-shrink: 0; }
.gold-event .countdown { border-color: rgba(245,196,81,.55); }
@media (max-width: 560px){ .gold-event { flex-direction: column; align-items: flex-start; text-align: left; } }

/* ===== Feature / steps / stats ===== */
.panelbox { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  position: relative; background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: border-color .2s, transform .18s;
}
.feature:hover { border-color: rgba(139,92,246,.5); transform: translateY(-3px); }
.feature::after {
  content: "\2192"; position: absolute; top: 22px; right: 22px; color: var(--purple-2);
  font-size: 18px; opacity: .6; transition: transform .2s, opacity .2s;
}
.feature:hover::after { transform: translateX(4px); opacity: 1; }
.feature__ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--grad-purple); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 20px; margin-bottom: 14px; box-shadow: 0 8px 20px rgba(139,92,246,.35);
}
.feature h3 { font-size: 20px; margin-bottom: 8px; color: #fff; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: s; }
.step { background: linear-gradient(180deg, var(--card), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; position: relative; }
.step::before {
  counter-increment: s; content: counter(s); position: absolute; top: -14px; left: 20px;
  width: 34px; height: 34px; border-radius: 9px; background: var(--grad-purple); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700;
  box-shadow: 0 6px 16px rgba(139,92,246,.4);
}
.step h3 { font-size: 18px; margin: 8px 0 6px; color: #fff; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat { text-align: center; background: linear-gradient(180deg, var(--card), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 16px; }
.stat b { display: block; font-family: 'Rajdhani', sans-serif; font-size: 40px; background: var(--grad-purple); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { color: var(--muted); font-size: 14px; }

/* ===== FAQ ===== */
.faq { max-width: 900px; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq summary {
  cursor: pointer; padding: 18px 52px 18px 20px; font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 18px; color: #fff; position: relative; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  font-size: 24px; color: var(--purple-2); font-family: 'Rajdhani', sans-serif;
}
.faq details[open] summary::after { content: '\2212'; }
.faq details[open] summary { color: var(--purple-2); }
.faq details p { padding: 0 20px 18px; color: var(--muted); margin: 0; }

/* ===== Prose ===== */
.prose { max-width: 900px; }
.prose h2 { font-size: clamp(24px, 3.4vw, 32px); margin: 34px 0 14px; color: #fff; }
.prose h3 { font-size: 21px; margin: 24px 0 10px; color: var(--purple-2); }
.prose p, .prose li { color: #c7cddb; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }

.seo-block { background: var(--bg-2); border-top: 1px solid var(--line); }
.seo-block .prose { max-width: 1000px; }

.crumbs { font-size: 13px; color: var(--muted); padding: 18px 0 0; }
.crumbs ol { list-style: none; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.crumbs li::after { content: '/'; margin-left: 8px; color: var(--line); }
.crumbs li:last-child::after { content: ''; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--purple-2); }

.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a {
  background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px;
  font-size: 14px; color: var(--text); font-weight: 600;
}
.related-links a:hover { border-color: var(--purple); color: var(--purple-2); }

/* ===== CTA / trust / note ===== */
.cta-band {
  background: linear-gradient(120deg, rgba(139,92,246,.2), rgba(168,85,247,.1)), var(--card);
  border: 1px solid rgba(139,92,246,.45); border-radius: var(--radius); padding: 34px; text-align: center; box-shadow: var(--shadow);
}
.cta-band h2 { font-size: clamp(24px, 3.6vw, 34px); color: #fff; margin-bottom: 10px; }
.cta-band p { color: var(--muted); max-width: 620px; margin: 0 auto 20px; }

.note {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: 10px; padding: 18px 20px; color: var(--muted); font-size: 14px;
}

/* ===== Footer ===== */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 50px 0 24px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-col h4 { font-size: 16px; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: var(--purple-2); }
.footer-about p { color: var(--muted); font-size: 14px; max-width: 320px; }
.footer-brand { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.footer-brand .brand__logo { height: 26px; width: auto; }
.pay-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chip { border: 1px solid var(--line); border-radius: 8px; padding: 6px 11px; font-size: 12px; color: var(--muted); background: var(--card); }
.footer-disc { border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: 13px; }
.footer-disc p { margin-bottom: 10px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }

/* ===== Modal ===== */
.modal {
  display: none; position: fixed; inset: 0; z-index: 100; align-items: center; justify-content: center;
  background: rgba(6,5,10,.82); backdrop-filter: blur(6px); padding: 20px;
}
.modal:target { display: flex; }
.modal__box {
  position: relative; width: 100%; max-width: 460px; background: linear-gradient(180deg, var(--card), var(--bg-2));
  border: 1px solid rgba(139,92,246,.5); border-radius: 18px; padding: 34px 28px 28px; box-shadow: 0 24px 64px rgba(0,0,0,.72); text-align: center;
}
.modal__close { position: absolute; top: 14px; right: 18px; font-size: 26px; line-height: 1; color: var(--muted); }
.modal__close:hover { color: var(--purple-2); }
.modal__icon {
  width: 58px; height: 58px; margin: 0 auto 16px; border-radius: 14px; background: var(--grad-purple);
  color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Rajdhani', sans-serif; font-weight: 700; font-size: 22px;
  box-shadow: 0 10px 26px rgba(139,92,246,.4);
}
.modal__box h2 { font-size: 26px; color: #fff; margin-bottom: 10px; }
.modal__box > p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.checkline { display: flex; align-items: flex-start; gap: 10px; text-align: left; font-size: 13px; color: var(--text); margin-bottom: 12px; }
.checkline input { margin-top: 3px; accent-color: var(--purple); width: 17px; height: 17px; flex-shrink: 0; }
.modal__actions { display: flex; gap: 12px; margin-top: 18px; }
.modal__actions .btn { flex: 1; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .feature-grid, .steps, .stats { grid-template-columns: repeat(2, 1fr); }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 660px; }
}
/* nav collapses to burger before it can crowd the row */
@media (max-width: 1040px) {
  .menu-btn { display: block; margin-left: auto; order: 3; }
  .header-actions { order: 2; }
  .nav {
    position: fixed; inset: 64px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--header); border-bottom: 1px solid var(--line); padding: 8px 16px 16px;
    margin: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; box-shadow: var(--shadow);
  }
  .nav > a, .nav__dropdown a { padding: 13px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav > a svg, .nav__dropdown a svg { width: 17px; height: 17px; }
  .menu-toggle:checked ~ .nav { max-height: 760px; overflow: auto; }
  /* the "Ещё" group flattens into the burger list */
  .nav__more { position: static; width: 100%; }
  .nav__more-btn { display: none; }
  .nav__dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    background: none; border: 0; box-shadow: none; padding: 0; min-width: 0; gap: 0;
  }
  .nav__dropdown::before { display: none; }
}
@media (max-width: 820px) {
  .goldarea { grid-template-columns: 1fr; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .livebar__inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .live-track { width: 100%; }
}
@media (max-width: 520px) {
  .section { padding: 42px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr 1fr; }
  .feature-grid, .steps, .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .modal__actions { flex-direction: column; }
  .hero__cta .btn { flex: 1; }
  .card__media img { height: 108px; }
}
@media (max-width: 380px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}
