/* Vollzette — main site */
:root {
  --bg: #07070b;
  --bg-2: #0b0b12;
  --card: #0e0e16;
  --card-2: #13131d;
  --line: rgba(255, 255, 255, .07);
  --line-2: rgba(255, 255, 255, .13);
  --text: #eef1f7;
  --text-2: #b6bdcc;
  --muted: #7f889b;
  --primary: #e2e8f0;
  --a1: #818cf8;
  --a2: #22d3ee;
  --grad: linear-gradient(120deg, #a5b4fc 0%, #818cf8 35%, #22d3ee 100%);
  --green: #34d399;
  --r: 14px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color-scheme: dark;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: #a5b4fc; text-decoration: none; }
a:hover { color: #c7d2fe; }
img { max-width: 100%; display: block; }
h1, h2, h3 { margin: 0; color: #fff; letter-spacing: -.03em; line-height: 1.1; }
p { margin: 0 0 1em; }
.i { flex: none; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap.narrow { max-width: 860px; }
.center { text-align: center; }
.row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.row.center { justify-content: center; }
.mt { margin-top: 28px; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; color: #000; padding: 8px 12px; border-radius: 8px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 2px solid var(--a1); outline-offset: 3px; border-radius: 6px; }
::selection { background: rgba(129, 140, 248, .35); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 42px; padding: 0 18px; border-radius: 11px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); color: var(--text); font: 600 14.5px var(--font); cursor: pointer; transition: all .18s; white-space: nowrap; }
.btn:hover { border-color: rgba(255, 255, 255, .25); background: rgba(255, 255, 255, .06); color: #fff; }
.btn-primary { background: var(--primary); color: #0b0b12; border-color: var(--primary); }
.btn-primary:hover { background: #fff; color: #0b0b12; box-shadow: 0 10px 34px rgba(226, 232, 240, .2); transform: translateY(-1px); }
.btn-ghost { background: none; border-color: transparent; color: var(--text-2); }
.btn-ghost:hover { background: rgba(255, 255, 255, .05); border-color: transparent; }
.btn-lg { height: 50px; padding: 0 24px; font-size: 15.5px; border-radius: 13px; }
.btn-block { width: 100%; }
.btn[aria-disabled=true] { opacity: .5; cursor: not-allowed; }

/* ---------- Nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background .25s, border-color .25s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(7, 7, 11, .78); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: var(--line); }
.nav-in { height: 68px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 750; font-size: 18px; letter-spacing: -.02em; }
.logo:hover { color: #fff; }
.logo img { border-radius: 9px; }
.links { display: flex; gap: 4px; }
.links a { color: var(--text-2); padding: 8px 12px; border-radius: 9px; font-weight: 500; font-size: 14.5px; }
.links a:hover, .links a.on { color: #fff; background: rgba(255, 255, 255, .05); }
.nav-cta { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.nav-cta .btn { height: 38px; font-size: 14px; }
.burger { display: none; background: none; border: 0; color: #fff; padding: 8px; cursor: pointer; }
.mobile-menu { border-top: 1px solid var(--line); background: rgba(7, 7, 11, .97); padding: 10px 16px 18px; display: grid; }
.mobile-menu a { color: var(--text); padding: 12px 8px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-menu[hidden] { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 150px 0 60px; overflow: hidden; }
.aurora { position: absolute; inset: -20% -10% auto; height: 820px; pointer-events: none; filter: blur(80px); opacity: .55; }
.aurora i { position: absolute; border-radius: 50%; mix-blend-mode: screen; animation: drift 18s ease-in-out infinite; }
.aurora i:nth-child(1) { width: 620px; height: 420px; left: 8%; top: 8%; background: radial-gradient(closest-side, rgba(129, 140, 248, .75), transparent); }
.aurora i:nth-child(2) { width: 560px; height: 380px; right: 6%; top: 0; background: radial-gradient(closest-side, rgba(34, 211, 238, .55), transparent); animation-delay: -6s; animation-duration: 22s; }
.aurora i:nth-child(3) { width: 520px; height: 360px; left: 38%; top: 30%; background: radial-gradient(closest-side, rgba(203, 213, 225, .28), transparent); animation-delay: -11s; animation-duration: 26s; }
.aurora.small { height: 520px; opacity: .4; }
@keyframes drift { 0%, 100% { transform: translate(0, 0) scale(1); } 33% { transform: translate(60px, -30px) scale(1.08); } 66% { transform: translate(-40px, 30px) scale(.94); } }
.grid-bg { position: absolute; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 20%, #000 20%, transparent 75%); }
.hero-in { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.announce { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 10px; border-radius: 99px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); color: var(--text-2); font-size: 13px; margin-bottom: 22px; }
.announce:hover { color: #fff; border-color: rgba(129, 140, 248, .5); }
.announce .i { color: var(--a2); }
.announce span { color: var(--muted); }
.hero h1 { font-size: clamp(40px, 6.2vw, 68px); font-weight: 800; letter-spacing: -.045em; }
.hero h1 .grad { display: inline; background-size: 200% auto; animation: shimmer 6s linear infinite; }
@keyframes shimmer { to { background-position: 200% center; } }
.lead { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); margin: 20px 0 30px; max-width: 580px; }
.hero-points { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-wrap: wrap; gap: 8px 20px; color: var(--muted); font-size: 14px; }
.hero-points li { display: flex; align-items: center; gap: 6px; }
.hero-points .i { color: var(--green); }
.hero-card { position: relative; border-radius: 18px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(20, 20, 32, .92), rgba(12, 12, 20, .92)); box-shadow: 0 40px 120px rgba(0, 0, 0, .6), 0 0 0 1px rgba(129, 140, 248, .08) inset; overflow: hidden; transform: perspective(1200px) rotateY(-6deg) rotateX(3deg); animation: float 7s ease-in-out infinite; }
@keyframes float { 0%, 100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hc-top { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: #2a2a3a; }
.hc-body { padding: 18px; }
.hc-row { display: flex; gap: 12px; align-items: center; }
.hc-row strong { color: #fff; display: block; font-size: 15px; }
.hc-row small { color: var(--muted); font-size: 12.5px; }
.hc-icon { width: 40px; height: 40px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #0b0b12; }
.live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--green); background: rgba(52, 211, 153, .1); border: 1px solid rgba(52, 211, 153, .25); padding: 3px 10px; border-radius: 99px; }
.live i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: ping 2s infinite; }
@keyframes ping { 70% { box-shadow: 0 0 0 7px rgba(52, 211, 153, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); } }
.meters { display: grid; gap: 12px; margin: 20px 0; }
.meters div { display: grid; grid-template-columns: 42px 1fr 90px; gap: 10px; align-items: center; font-size: 12.5px; color: var(--muted); }
.meters em { font-style: normal; text-align: right; color: var(--text-2); }
.m { height: 7px; border-radius: 99px; background: rgba(255, 255, 255, .06); position: relative; overflow: hidden; }
.m::after { content: ""; position: absolute; inset: 0; width: var(--w); border-radius: inherit; background: var(--grad); animation: grow 1.6s cubic-bezier(.2, .8, .2, 1) both, breathe 5s ease-in-out 1.6s infinite; }
@keyframes grow { from { width: 0; } }
@keyframes breathe { 50% { width: calc(var(--w) + 6%); } }
.console { margin: 0; background: #07070c; border: 1px solid var(--line); border-radius: 11px; padding: 14px; font: 12.5px/1.8 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; color: #cbd5e1; white-space: pre-wrap; overflow: hidden; }
.console .t { color: #515a6e; }
.console .ok { color: #a5b4fc; }
.cursor { display: inline-block; width: 7px; height: 14px; background: #a5b4fc; vertical-align: -2px; margin-left: 4px; animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 80px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255, 255, 255, .015); }
.stats div { padding: 24px; text-align: center; border-right: 1px solid var(--line); }
.stats div:last-child { border-right: 0; }
.stats strong { display: block; font-size: 30px; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.stats span { color: var(--muted); font-size: 13.5px; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; position: relative; }
.pt-0 { padding-top: 0; }
.s-head { max-width: 680px; margin-bottom: 44px; }
.s-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.s-head h2, .split-2 h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; }
.s-head p { color: var(--text-2); margin: 14px 0 0; font-size: 17px; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a5b4fc; margin-bottom: 14px; }
.page-hero { position: relative; padding: 150px 0 60px; overflow: hidden; }
.page-hero h1 { font-size: clamp(36px, 5.4vw, 58px); font-weight: 800; letter-spacing: -.04em; }
.page-hero .lead { margin-left: 0; }
.page-hero .center .lead, .page-hero.nf .lead { margin-left: auto; margin-right: auto; }
.page-hero .wrap { position: relative; }

/* ---------- Games ---------- */
.games { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.game { position: relative; display: flex; flex-direction: column; border-radius: var(--r); overflow: hidden; background: var(--card); border: 1px solid var(--line); color: var(--text); transition: transform .25s, border-color .25s, box-shadow .25s; }
.game:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--c) 55%, transparent); box-shadow: 0 24px 60px rgba(0, 0, 0, .5), 0 0 0 1px color-mix(in srgb, var(--c) 25%, transparent); color: var(--text); }
.g-img { aspect-ratio: 16 / 8; overflow: hidden; position: relative; background: var(--card-2); }
.g-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, var(--card)); }
.g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.game:hover .g-img img { transform: scale(1.06); }
.g-body { padding: 4px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.g-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.g-top h3 { font-size: 19px; }
.tag { font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 99px; background: var(--grad); color: #0b0b12; }
.g-body p { color: var(--muted); font-size: 14px; margin: 8px 0 16px; }
.g-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; color: var(--muted); font-size: 14px; }
.g-foot strong { color: #fff; font-size: 17px; }
.go { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--text-2); transition: .2s; }
.game:hover .go { background: var(--primary); color: #0b0b12; border-color: var(--primary); }
.search { position: relative; max-width: 460px; margin-top: 30px; }
.search .i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--muted); }
.search input { width: 100%; height: 52px; border-radius: 14px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); color: #fff; font: 15.5px var(--font); padding: 0 16px 0 46px; transition: border-color .2s, box-shadow .2s; }
.search input:focus { outline: none; border-color: rgba(129, 140, 248, .6); box-shadow: 0 0 0 4px rgba(129, 140, 248, .15); }
.empty-state { text-align: center; color: var(--muted); padding: 40px 0; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.features.four { grid-template-columns: repeat(4, 1fr); }
.feature { padding: 26px; border-radius: var(--r); border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, .005)); transition: border-color .25s, transform .25s; }
.feature:hover { border-color: var(--line-2); transform: translateY(-2px); }
.f-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #c7d2fe; background: rgba(129, 140, 248, .1); border: 1px solid rgba(129, 140, 248, .22); margin-bottom: 18px; }
.feature h3 { font-size: 18px; margin-bottom: 8px; letter-spacing: -.02em; }
.feature p { color: var(--muted); font-size: 14.5px; margin: 0; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: s; }
.steps li { position: relative; padding: 28px; border-radius: var(--r); border: 1px solid var(--line); background: var(--card); }
.steps .n { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--grad); color: #0b0b12; font-weight: 800; margin-bottom: 18px; }
.steps h3 { font-size: 19px; margin-bottom: 6px; }
.steps p { color: var(--muted); margin: 0; font-size: 14.5px; }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.muted-lg { color: var(--text-2); font-size: 17px; margin-top: 16px; }
.ticks { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; color: var(--text-2); }
.ticks li { display: flex; gap: 10px; align-items: center; }
.ticks .i { color: var(--green); }
.vps-teaser { display: grid; gap: 12px; }
.vt { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; border-radius: var(--r); background: var(--card); border: 1px solid var(--line); color: var(--text); transition: .2s; }
.vt:hover { border-color: rgba(129, 140, 248, .45); transform: translateX(4px); color: var(--text); }
.vt strong { color: #fff; display: block; }
.vt small { color: var(--muted); font-size: 13px; }
.vt > span { font-size: 22px; font-weight: 800; color: #fff; }
.vt > span small { font-weight: 500; }

/* ---------- Plans ---------- */
.game-hero { position: relative; padding: 150px 0 70px; overflow: hidden; }
.gh-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .28; filter: saturate(1.1); mask-image: linear-gradient(180deg, #000 30%, transparent); -webkit-mask-image: linear-gradient(180deg, #000 30%, transparent); }
.game-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 20% 30%, color-mix(in srgb, var(--c) 22%, transparent), transparent 70%); }
.game-hero .wrap { position: relative; }
.game-hero h1 { font-size: clamp(36px, 5.2vw, 60px); font-weight: 800; letter-spacing: -.04em; max-width: 760px; }
.crumbs { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: #fff; }
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.plans.one { max-width: 380px; }
.plan, .vps { position: relative; display: flex; flex-direction: column; padding: 26px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); transition: border-color .2s, transform .2s; }
.plan:hover, .vps:hover { border-color: var(--line-2); transform: translateY(-3px); }
.plan.popular, .vps.popular { border-color: rgba(129, 140, 248, .6); background: linear-gradient(180deg, rgba(129, 140, 248, .09), var(--card) 55%); box-shadow: 0 0 0 1px rgba(129, 140, 248, .2), 0 24px 70px rgba(0, 0, 0, .4); }
.badge { position: absolute; top: -12px; left: 24px; font-size: 12px; font-weight: 700; padding: 4px 11px; border-radius: 99px; background: var(--grad); color: #0b0b12; }
.plan h3, .vps h3 { font-size: 18px; }
.plan > .muted { font-size: 14px; margin: 4px 0 0; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 18px 0 4px; }
.price strong { font-size: 40px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.price span { color: var(--muted); }
.specs { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 11px; color: var(--text-2); font-size: 14.5px; flex: 1; }
.specs li { display: flex; align-items: center; gap: 10px; }
.specs .i { color: #a5b4fc; }
.specs b { color: #fff; }
.specs small { color: var(--muted); font-size: 12px; }
.note { color: var(--muted); font-size: 13.5px; margin-top: 26px; display: flex; justify-content: center; gap: 6px; align-items: center; flex-wrap: wrap; }
.note .i { color: var(--green); }
.seg { display: inline-flex; gap: 4px; padding: 4px; border-radius: 13px; border: 1px solid var(--line-2); background: rgba(255, 255, 255, .03); margin-top: 28px; }
.seg button { border: 0; background: none; color: var(--text-2); font: 600 14px var(--font); padding: 9px 16px; border-radius: 9px; cursor: pointer; }
.seg button.on { background: var(--primary); color: #0b0b12; }
.vps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.vps .per { margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--line); border-radius: 13px; background: var(--card); transition: border-color .2s; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: #fff; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.plus { position: relative; width: 14px; height: 14px; flex: none; }
.plus::before, .plus::after { content: ""; position: absolute; left: 0; right: 0; top: 6px; height: 2px; background: var(--muted); border-radius: 2px; transition: transform .25s; }
.plus::after { transform: rotate(90deg); }
details[open] .plus::after { transform: rotate(0); }
.ans { padding: 0 20px 18px; color: var(--text-2); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; text-align: center; padding: 70px 30px; border-radius: 24px; border: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(129, 140, 248, .08), rgba(255, 255, 255, .01)); }
.cta-glow { position: absolute; left: 50%; top: -60%; width: 700px; height: 400px; transform: translateX(-50%); background: radial-gradient(closest-side, rgba(129, 140, 248, .35), transparent); filter: blur(30px); pointer-events: none; }
.cta h2 { position: relative; font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.cta p { position: relative; color: var(--text-2); max-width: 560px; margin: 14px auto 28px; font-size: 17px; }
.cta .row { position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.contact { display: flex; flex-direction: column; padding: 26px; border-radius: var(--r); border: 1px solid var(--line); background: var(--card); color: var(--text); transition: .2s; }
.contact:hover { border-color: rgba(129, 140, 248, .45); transform: translateY(-3px); color: var(--text); }
.contact h3 { font-size: 18px; margin-bottom: 8px; }
.contact p { color: var(--muted); font-size: 14.5px; flex: 1; }
.contact .link { color: #a5b4fc; font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 6px; }

/* ---------- Legal ---------- */
.doc-hero { padding-bottom: 40px; }
.doc { display: grid; grid-template-columns: 240px 1fr; gap: 50px; align-items: start; }
.toc { position: sticky; top: 90px; display: grid; gap: 2px; font-size: 13.5px; }
.toc p { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: 8px; }
.toc a { color: var(--text-2); padding: 6px 10px; border-radius: 8px; border-left: 2px solid transparent; }
.toc a:hover, .toc a.on { color: #fff; background: rgba(255, 255, 255, .04); border-left-color: var(--a1); }
.doc article section { padding: 28px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 90px; }
.doc article section:first-child { padding-top: 0; }
.doc h2 { font-size: 21px; display: flex; gap: 14px; align-items: baseline; margin-bottom: 14px; }
.doc h2 span { font-size: 13px; font-weight: 700; color: #a5b4fc; background: rgba(129, 140, 248, .1); padding: 2px 9px; border-radius: 7px; }
.doc p, .doc li { color: var(--text-2); font-size: 15.5px; line-height: 1.75; }
.doc ul { padding-left: 20px; margin: 0 0 1em; }
.doc li { margin-bottom: 6px; }
.doc li::marker { color: #6366f1; }
.doc strong { color: #fff; }
.big404 { font-size: clamp(90px, 16vw, 160px); font-weight: 900; line-height: 1; margin: 0 0 10px; letter-spacing: -.06em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 64px 0 28px; margin-top: 40px; }
.f-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 36px; }
.f-brand p { color: var(--muted); font-size: 14px; margin: 16px 0 18px; max-width: 300px; }
.f-title { color: #fff; font-weight: 600; font-size: 14px; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { color: var(--muted); font-size: 14px; }
.footer ul a:hover { color: #fff; }
.socials { display: flex; gap: 8px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); background: rgba(255, 255, 255, .02); }
.socials a:hover { color: #fff; border-color: var(--line-2); }
.f-bottom { margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.status-pill { display: inline-flex; align-items: center; gap: 8px; color: var(--text-2); border: 1px solid var(--line); padding: 4px 12px; border-radius: 99px; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }

/* ---------- Motion ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-card { max-width: 520px; transform: none; }
  .games, .features { grid-template-columns: repeat(2, 1fr); }
  .features.four, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .f-grid { grid-template-columns: repeat(3, 1fr); }
  .f-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .links, .hide-sm { display: none !important; }
  .burger { display: inline-flex; }
  .split-2 { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats div:nth-child(2) { border-right: 0; }
  .stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .doc { grid-template-columns: 1fr; }
  .toc { display: none; }
  .section { padding: 64px 0; }
}
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .games, .features, .features.four, .contact-grid { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 120px; }
  .page-hero, .game-hero { padding-top: 120px; }
  .nav-cta .btn-primary { padding: 0 12px; }
  .hero-card { display: none; }
  .cta { padding: 50px 20px; }
  .meters div { grid-template-columns: 38px 1fr 76px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   v2 — motion & polish
   ===================================================================== */
@property --ang { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
body { animation: page-in .5s ease-out both; }
@keyframes page-in { from { opacity: 0; } }
#scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; transform-origin: left; transform: scaleX(0); background: var(--grad); box-shadow: 0 0 10px rgba(129, 140, 248, .7); }

/* Rotating game name */
.rotator { display: inline-grid; vertical-align: bottom; overflow: hidden; height: 1.1em; }
.rotator .rw { display: inline-block; color: #fff; background: linear-gradient(120deg, #fff, #c7d2fe); -webkit-background-clip: text; background-clip: text; color: transparent; animation: word-in .5s cubic-bezier(.2, .8, .2, 1) both; white-space: nowrap; }
.rotator .rw.out { animation: word-out .35s ease-in both; }
@keyframes word-in { from { transform: translateY(100%); opacity: 0; filter: blur(6px); } to { transform: none; opacity: 1; filter: none; } }
@keyframes word-out { to { transform: translateY(-100%); opacity: 0; filter: blur(6px); } }

/* Hero card tilt + live console */
.hero-card.tilt { transition: transform .2s ease-out; will-change: transform; }
.console .line-new { animation: line-in .4s ease-out both; }
@keyframes line-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.m::after { transition: width .9s cubic-bezier(.2, .8, .2, 1); }
.hero-card::before { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(500px circle at var(--gx, 70%) var(--gy, 0%), rgba(129, 140, 248, .14), transparent 45%); }

/* Marquee */
.marquee { position: relative; overflow: hidden; padding: 10px 0 30px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.mq { position: relative; width: 200px; height: 100px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); flex: none; color: #fff; }
.mq img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s, filter .3s; filter: saturate(.85) brightness(.8); }
.mq::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 11, .9)); }
.mq span { position: absolute; left: 12px; bottom: 9px; z-index: 1; font-weight: 700; font-size: 14px; letter-spacing: -.01em; }
.mq:hover img { transform: scale(1.08); filter: none; }
.mq:hover { color: #fff; border-color: var(--line-2); }

/* Spotlight on cards */
.spot, .game, .feature, .plan, .vps, .contact, .vt { --mx: 50%; --my: 50%; }
.spot::after, .feature::after, .contact::after, .plan::after, .vps::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; transition: opacity .3s;
  background: radial-gradient(380px circle at var(--mx) var(--my), rgba(129, 140, 248, .13), transparent 45%);
}
.spot:hover::after, .feature:hover::after, .contact:hover::after, .plan:hover::after, .vps:hover::after { opacity: 1; }
.feature, .contact { position: relative; }

/* Animated ring on popular plans */
.plan.popular::before, .vps.popular::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--ang), transparent 0 50%, #818cf8 68%, #22d3ee 84%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin-ang 4s linear infinite;
}
@keyframes spin-ang { to { --ang: 360deg; } }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .6) 50%, transparent 70%); transform: translateX(-120%); transition: transform .7s; }
.btn-primary:hover::after { transform: translateX(120%); }
.btn:active { transform: scale(.98); }

/* Bento */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.bx { position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .008)); padding: 26px; display: flex; flex-direction: column; gap: 22px; min-height: 280px; transition: border-color .25s; }
.bx:hover { border-color: var(--line-2); }
.bx.span2 { grid-column: span 2; flex-direction: row; align-items: center; }
.bx.span2 .bx-copy { flex: 0 0 38%; }
.bx-copy h3 { font-size: 20px; margin: 14px 0 8px; }
.bx-copy p { color: var(--muted); margin: 0; font-size: 14.5px; }
.bx-ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #c7d2fe; background: rgba(129, 140, 248, .1); border: 1px solid rgba(129, 140, 248, .22); }
.viz { flex: 1; position: relative; min-height: 150px; display: flex; align-items: center; justify-content: center; }
/* deploy timeline */
.viz.deploy { flex-direction: column; align-items: stretch; justify-content: center; gap: 10px; }
.deploy .step { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 12px; border: 1px solid var(--line); background: rgba(7, 7, 11, .6); font-size: 14px; opacity: .25; }
.deploy .step i { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; background: rgba(52, 211, 153, .15); color: var(--green); flex: none; }
.deploy .step em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 12.5px; font-variant-numeric: tabular-nums; }
.in .deploy .step { animation: step-on 6s infinite; }
.in .deploy .s2 { animation-delay: .8s; } .in .deploy .s3 { animation-delay: 1.6s; } .in .deploy .s4 { animation-delay: 2.4s; }
@keyframes step-on { 0% { opacity: .25; transform: translateX(-6px); } 8%, 80% { opacity: 1; transform: none; border-color: rgba(129, 140, 248, .3); } 100% { opacity: .25; } }
.live-dot { background: var(--green) !important; box-shadow: 0 0 0 0 rgba(52, 211, 153, .6); animation: ping 1.6s infinite; }
/* shield */
.viz.shield .core { position: relative; z-index: 1; width: 72px; height: 72px; border-radius: 22px; display: grid; place-items: center; color: #0b0b12; background: var(--grad); box-shadow: 0 10px 40px rgba(129, 140, 248, .45); }
.viz.shield .ring { position: absolute; width: 72px; height: 72px; border-radius: 22px; border: 1px solid rgba(129, 140, 248, .6); animation: ripple 3s ease-out infinite; }
.viz.shield .r2 { animation-delay: 1s; } .viz.shield .r3 { animation-delay: 2s; }
@keyframes ripple { from { transform: scale(1); opacity: .8; } to { transform: scale(2.6); opacity: 0; } }
/* nvme bars */
.viz.nvme { align-items: flex-end; gap: 8px; padding: 0 10px; }
.viz.nvme i { flex: 1; height: var(--h); border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, #22d3ee, rgba(129, 140, 248, .3)); transform-origin: bottom; animation: eq 1.8s ease-in-out var(--d) infinite alternate; }
@keyframes eq { from { transform: scaleY(.35); } to { transform: scaleY(1); } }
/* panel */
.viz.panel { gap: 12px; align-items: stretch; }
.viz.panel .files, .viz.panel .mini-console { flex: 1; border-radius: 12px; border: 1px solid var(--line); background: rgba(7, 7, 11, .6); padding: 12px; font-size: 13px; }
.files div { display: flex; align-items: center; gap: 8px; padding: 6px 8px; border-radius: 7px; color: var(--text-2); }
.files div.hl { background: rgba(129, 140, 248, .12); color: #fff; }
.fi { width: 14px; height: 16px; border-radius: 3px; background: #334155; flex: none; }
.fi.dir { background: #818cf8; border-radius: 3px 6px 3px 3px; }
.viz.panel .mini-console { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.9; }
.mini-console p { margin: 0; opacity: 0; }
.mini-console b { color: #a5b4fc; }
.mini-console .ok { color: var(--green); } .mini-console .dim { color: var(--muted); }
.in .mini-console p { animation: line-in .4s ease-out forwards; }
.in .mini-console p:nth-child(2) { animation-delay: .6s; } .in .mini-console p:nth-child(3) { animation-delay: 1.2s; } .in .mini-console p:nth-child(4) { animation-delay: 1.8s; }
/* upgrade */
.viz.upgrade { gap: 14px; }
.viz.upgrade .chip { padding: 12px 18px; border-radius: 12px; border: 1px solid var(--line-2); font-weight: 800; font-size: 20px; color: #fff; background: rgba(7, 7, 11, .6); }
.viz.upgrade .chip.b { border-color: rgba(129, 140, 248, .6); background: rgba(129, 140, 248, .12); box-shadow: 0 0 30px rgba(129, 140, 248, .25); animation: grow-chip 2.4s ease-in-out infinite; }
.viz.upgrade .arrow { color: #a5b4fc; animation: nudge 1.2s ease-in-out infinite; }
@keyframes grow-chip { 50% { transform: scale(1.08); } }
@keyframes nudge { 50% { transform: translateX(5px); } }
/* chat */
.viz.chat { flex-direction: column; align-items: stretch; gap: 10px; }
.bubble { max-width: 80%; padding: 10px 14px; border-radius: 14px; font-size: 14px; opacity: 0; }
.bubble.me { align-self: flex-end; background: var(--primary); color: #0b0b12; border-bottom-right-radius: 4px; }
.bubble.them { align-self: flex-start; background: rgba(129, 140, 248, .14); border: 1px solid rgba(129, 140, 248, .3); border-bottom-left-radius: 4px; }
.in .bubble { animation: bubble-in .5s cubic-bezier(.3, 1.4, .5, 1) forwards; }
.in .bubble:nth-child(2) { animation-delay: .9s; } .in .bubble:nth-child(3) { animation-delay: 1.8s; }
@keyframes bubble-in { from { opacity: 0; transform: translateY(10px) scale(.95); } to { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bx.span2 { grid-column: span 2; }
}
@media (max-width: 700px) {
  .bento { grid-template-columns: minmax(0, 1fr); }
  .bx.span2 { grid-column: auto; flex-direction: column; align-items: stretch; }
  .bx.span2 .bx-copy { flex: none; }
  .viz.panel { flex-direction: column; }
  .mq { width: 150px; height: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  .mini-console p, .bubble, .deploy .step { opacity: 1 !important; }
  .marquee-track { animation: none; }
}
.console { height: 190px; display: flex; flex-direction: column; justify-content: flex-end; white-space: normal; }
.console > div { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.now { font-size: clamp(16px, 1.8vw, 20px); font-weight: 650; color: var(--text-2); margin: 0 0 12px; letter-spacing: -.01em; }
.now .rotator { height: 1.35em; vertical-align: -.3em; }
.now .rw { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 800; }
.now { line-height: 1.35; }
.now .rotator { vertical-align: top; height: 1.35em; }
.now .rw { line-height: 1.35; }
.now { display: flex; align-items: center; gap: .32em; flex-wrap: wrap; }
.now .rotator { display: inline-flex; align-items: center; vertical-align: baseline; height: 1.4em; }
.now .rw { line-height: 1.4em; }
.pay-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 36px; color: var(--muted); font-size: 13px; }
.pay-row > span:first-child { margin-right: 6px; }
.pay-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 99px; border: 1px solid var(--line); background: rgba(255, 255, 255, .02); color: var(--text-2); font-weight: 600; font-size: 12.5px; }
.pay-badge i { width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; font-style: normal; font-size: 9px; font-weight: 800; color: #fff; background: var(--c); }

/* ---------- Locations ---------- */
.locs { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px; }
.loc-card { position: relative; overflow: hidden; display: flex; flex-direction: column; gap: 16px; padding: 22px; border-radius: 16px; border: 1px solid var(--line); background: var(--card); transition: border-color .25s, transform .25s; }
.loc-card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.loc-card.fastest { border-color: rgba(52, 211, 153, .5); box-shadow: 0 0 0 1px rgba(52, 211, 153, .2), 0 20px 60px rgba(52, 211, 153, .08); }
.lc-top { display: flex; align-items: center; gap: 12px; }
.lc-top img { width: 36px; height: 26px; border-radius: 5px; object-fit: cover; box-shadow: 0 0 0 1px rgba(255, 255, 255, .15); }
.lc-globe { width: 36px; height: 26px; display: grid; place-items: center; border-radius: 5px; background: rgba(255, 255, 255, .05); color: var(--muted); }
.lc-top strong { display: block; color: #fff; font-size: 16px; }
.lc-top small { color: var(--muted); font-size: 13px; }
.lc-ping { display: flex; align-items: baseline; gap: 8px; }
.lc-ping .ms { font-size: 38px; font-weight: 800; letter-spacing: -.04em; color: #fff; font-variant-numeric: tabular-nums; }
.lc-ping .unit { color: var(--muted); font-size: 13px; }
.p-good .ms { color: var(--green); } .p-ok .ms { color: #fbbf24; } .p-bad .ms { color: #f87171; }
.lc-bar { height: 6px; border-radius: 99px; background: rgba(255, 255, 255, .06); overflow: hidden; }
.lc-bar i { display: block; height: 100%; width: 0; border-radius: inherit; background: var(--grad); transition: width 1s cubic-bezier(.2, .8, .2, 1); }
.p-good .lc-bar i { background: linear-gradient(90deg, #34d399, #22d3ee); }
.p-bad .lc-bar i { background: linear-gradient(90deg, #f87171, #fbbf24); }
.lc-foot { display: flex; justify-content: space-between; align-items: center; }
.lc-status { font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 99px; border: 1px solid rgba(52, 211, 153, .3); color: var(--green); background: rgba(52, 211, 153, .07); }
.lc-status.limited { color: #fbbf24; border-color: rgba(251, 191, 36, .3); background: rgba(251, 191, 36, .07); }
.lc-status.full { color: #f87171; border-color: rgba(248, 113, 113, .3); background: rgba(248, 113, 113, .07); }
.lc-best { display: none; font-size: 12px; font-weight: 700; color: var(--green); }
.loc-card.fastest .lc-best { display: inline; }
.ping-summary { display: inline-flex; margin-top: 8px; padding: 8px 14px; border-radius: 99px; border: 1px solid rgba(52, 211, 153, .35); background: rgba(52, 211, 153, .08); color: #d1fae5; font-size: 14px; }
.ping-summary[hidden] { display: none; }
.loc-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.avail-in { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 8px; margin-top: 26px; color: var(--muted); font-size: 13.5px; }
.avail-in img { border-radius: 3px; }
@media (max-width: 860px) { .loc-notes { grid-template-columns: 1fr; } }

/* Live status pill + free trial tag */
.status-pill.degraded i, .status-pill.maintenance i { background: var(--amber, #fbbf24); box-shadow: 0 0 10px var(--amber, #fbbf24); }
.status-pill.maintenance i { background: #60a5fa; box-shadow: 0 0 10px #60a5fa; }
.status-pill.down i { background: #f87171; box-shadow: 0 0 10px #f87171; }
.trial-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: #34d399; background: rgba(52, 211, 153, .08); border: 1px solid rgba(52, 211, 153, .25); padding: 3px 10px; border-radius: 99px; margin: -4px 0 14px; }

/* Currency picker */
.cur-form { display: inline-flex; }
.cur-select { appearance: none; -webkit-appearance: none; background: transparent; color: var(--text-2, #b4bccb); border: 1px solid rgba(255, 255, 255, .12); border-radius: 99px; padding: 7px 12px; font: 600 12.5px inherit; cursor: pointer; }
.cur-select:hover, .cur-select:focus { color: #fff; border-color: rgba(255, 255, 255, .25); outline: none; }
.cur-select option { background: #0e0e16; color: #e8ecf3; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; }

/* Sale banner */
.sale-bar { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 9px 16px; background: linear-gradient(90deg, #7c3aed, #db2777, #f59e0b); color: #fff; font-size: 13.5px; font-weight: 600; text-align: center; position: relative; z-index: 60; }
.sale-bar:hover { color: #fff; filter: brightness(1.08); }
.sale-bar .cd { font: 700 13px ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(0, 0, 0, .25); padding: 3px 10px; border-radius: 99px; }
.price .was { color: #7d879a; font-weight: 500; font-size: .55em; margin-right: 8px; vertical-align: .35em; }

.has-sale .hero, .has-sale .page-hero, .has-sale .game-hero { padding-top: 158px; }
.nav .sale-bar { z-index: auto; }
@media (max-width: 640px) { .has-sale .hero, .has-sale .page-hero, .has-sale .game-hero { padding-top: 180px; } }

/* Game list groups */
.grid-head { margin: 56px 0 18px; }
.grid-head.first { margin-top: 8px; }
.grid-head h2 { font-size: 26px; letter-spacing: -.02em; margin: 0 0 4px; }
.grid-head p { margin: 0; }
