/* ============================================================
   games2heart – Shared Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@700;800&display=swap');

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

:root {
  --green: #22c55e;
  --green-dark: #15a34a;
  --green-light: #4ade80;
  --green-dim: rgba(34,197,94,0.08);
  --green-dim2: rgba(34,197,94,0.14);
  --green-border: rgba(34,197,94,0.20);
  --green-border2: rgba(34,197,94,0.35);

  --bg:    #080d08;
  --bg2:   #0c130c;
  --bg3:   #101810;
  --bg4:   #141f14;

  --text:  #e2ece2;
  --text2: #b8d0b8;
  --muted: #6b916b;
  --muted2: #527552;

  --border: rgba(255,255,255,0.055);
  --border2: rgba(255,255,255,0.10);

  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;

  --font: 'Plus Jakarta Sans', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Noise overlay ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.018;
  pointer-events: none;
  z-index: 9999;
}

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.5px; }

/* ── Navigation ─────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  height: 66px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(8,13,8,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: -0.3px;
}
.logo b { color: var(--green); font-style: italic; }

.nav-links {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: .855rem; font-weight: 600;
  transition: color .15s;
  letter-spacing: 0.1px;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex; align-items: center; gap: .3rem; cursor: pointer;
}
.nav-arrow { transition: transform .2s; opacity: .6; flex-shrink: 0; }
.nav-dropdown.open .nav-arrow { transform: rotate(180deg); opacity: 1; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 268px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: .45rem;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 200;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute; top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px; height: 9px;
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  border-top: 1px solid var(--border2);
}
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem .85rem; border-radius: 9px;
  text-decoration: none; transition: background .14s;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,.04); }
.nav-dropdown-icon {
  width: 36px; height: 36px;
  background: var(--green-dim2);
  border: 1px solid var(--green-border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.nav-dropdown-title { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .1rem; }
.nav-dropdown-desc { font-size: .74rem; color: var(--muted); line-height: 1.4; }

/* Login dropdown */
.nav-login { position: relative; }
.nav-login-btn {
  display: flex; align-items: center; gap: .4rem;
  background: var(--green-dim2);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: .855rem; font-weight: 700;
  padding: .42rem 1.1rem; border-radius: 7px;
  cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s;
  font-family: var(--font);
  letter-spacing: 0.1px;
}
.nav-login-btn:hover {
  background: rgba(34,197,94,0.22);
  border-color: var(--green-border2);
}
.nav-login.open .nav-login-btn .nav-arrow { transform: rotate(180deg); }

.login-dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  width: 238px;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  padding: .45rem;
  opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  transform: translateY(-8px);
  z-index: 200;
  box-shadow: var(--shadow-lg);
}
.login-dropdown-menu::before {
  content: ''; position: absolute; top: -5px; right: 18px;
  transform: rotate(45deg); width: 9px; height: 9px;
  background: var(--bg2);
  border-left: 1px solid var(--border2);
  border-top: 1px solid var(--border2);
}
.nav-login.open .login-dropdown-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.login-dropdown-item {
  display: flex; align-items: center; gap: .85rem;
  padding: .7rem .85rem; border-radius: 9px;
  text-decoration: none; transition: background .14s;
}
.login-dropdown-item:hover { background: rgba(255,255,255,.04); }
.login-dropdown-icon {
  width: 36px; height: 36px;
  background: var(--green-dim2);
  border: 1px solid var(--green-border);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); flex-shrink: 0;
}
.login-dropdown-title { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: .1rem; }
.login-dropdown-desc { font-size: .74rem; color: var(--muted); line-height: 1.4; }
.login-divider { height: 1px; background: var(--border); margin: .3rem .5rem; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-green {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--green); color: #000;
  font-family: var(--font); font-weight: 800; font-size: .925rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  text-decoration: none; border: none; cursor: pointer;
  transition: background .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 0 0 0 rgba(34,197,94,0);
  letter-spacing: 0.1px;
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(34,197,94,0.28);
}
.btn-green:active { transform: translateY(0); }

.btn-outline {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1px solid var(--border2); color: var(--text2);
  font-family: var(--font); font-weight: 600; font-size: .925rem;
  padding: .7rem 1.6rem; border-radius: var(--radius-sm);
  text-decoration: none; background: transparent; cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.btn-outline:hover { border-color: var(--muted2); color: var(--text); background: rgba(255,255,255,.025); }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 5rem 5%; }
.s-label {
  font-size: .72rem; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green);
  margin-bottom: .7rem; display: block;
}
h2.s-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff; margin-bottom: .8rem;
}
p.s-sub { color: var(--muted); font-size: .95rem; line-height: 1.75; max-width: 480px; margin-bottom: 3rem; }

/* ── Stats bar ──────────────────────────────────────────── */
.stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat {
  flex: 1; min-width: 140px;
  padding: 1.75rem 2rem; text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--green); line-height: 1;
}
.stat-l { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1.2px; margin-top: .35rem; font-weight: 600; }

/* ── Tags / badges ──────────────────────────────────────── */
.hero-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--green-dim2);
  border: 1px solid var(--green-border);
  color: var(--green);
  font-size: .72rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}

.mc-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.mc-tag {
  font-size: .74rem; font-weight: 700;
  color: var(--muted); background: var(--bg3);
  border: 1px solid var(--border);
  padding: .25rem .7rem; border-radius: 50px;
  transition: color .15s, border-color .15s;
}
.mc-tag:hover { color: var(--green); border-color: var(--green-border); }

/* ── Pricing cards ──────────────────────────────────────── */
.pricing-wrap-wide { max-width: 1200px; margin: 0 auto; }

.pkg-category { margin-bottom: 3.5rem; }
.pkg-cat-header {
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: 1rem; font-weight: 800; color: var(--text);
}
.pkg-cat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--muted2);
}
.pkg-cat-dot-green { background: var(--green); box-shadow: 0 0 10px rgba(34,197,94,0.5); }
.pkg-cat-dot-gold  { background: #f59e0b; box-shadow: 0 0 10px rgba(245,158,11,0.4); }
.pkg-cat-sub { color: var(--muted); font-size: .82rem; font-weight: 500; }

.pricing-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }

.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.price-card.pop {
  border-color: var(--green-border2);
  background: var(--bg3);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.08) inset;
}
.price-card.pop:hover { box-shadow: 0 12px 40px rgba(34,197,94,0.15); }
.price-card-elite {
  border-color: rgba(245,158,11,0.25);
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(245,158,11,0.04) 100%);
}

.pop-badge {
  position: absolute; top: -1px; right: 1.5rem;
  background: var(--green); color: #000;
  font-size: .67rem; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .22rem .75rem; border-radius: 0 0 8px 8px;
}
.plan-name {
  font-size: .7rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); margin-bottom: .8rem;
}
.plan-price {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 800;
  color: #fff; line-height: 1;
  letter-spacing: -1px;
}
.plan-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }
.plan-mo { font-size: .8rem; color: var(--muted); margin: .35rem 0 1.75rem; }
.plan-hr { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.plan-list { list-style: none; margin-bottom: 2rem; }
.plan-list li {
  font-size: .855rem; color: var(--text2);
  padding: .38rem 0;
  display: flex; align-items: center; gap: .65rem;
}
.plan-list li::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(34,197,94,0.4);
}

.plan-btn {
  display: block; text-align: center;
  padding: .72rem; border-radius: var(--radius-sm);
  text-decoration: none; font-size: .875rem; font-weight: 700;
  border: 1px solid var(--border2); color: var(--text2);
  transition: border-color .15s, color .15s, background .15s;
  font-family: var(--font);
}
.plan-btn:hover { border-color: var(--green-border2); color: var(--green); background: var(--green-dim2); }
.pop .plan-btn {
  background: var(--green); color: #000;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(34,197,94,0.25);
}
.pop .plan-btn:hover { background: var(--green-light); border-color: var(--green-light); }

/* ── Feature cards ──────────────────────────────────────── */
.feat-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 1.1rem; }
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: border-color .2s, transform .2s;
}
.feat-card:hover { border-color: var(--green-border); transform: translateY(-2px); }
.feat-img { width: 100%; height: 110px; object-fit: cover; border-radius: 9px; margin-bottom: 1.1rem; filter: brightness(.7) saturate(.8); }
.feat-title { font-size: .975rem; font-weight: 700; color: #fff; margin-bottom: .45rem; }
.feat-desc { font-size: .845rem; color: var(--muted); line-height: 1.7; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item.open { border-color: var(--green-border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.35rem;
  background: none; border: none; cursor: pointer;
  font-size: .9rem; font-weight: 700; color: var(--text);
  font-family: var(--font); text-align: left;
  transition: color .15s;
}
.faq-q:hover { color: #fff; }
.faq-item.open .faq-q { color: var(--green); }
.faq-arrow {
  font-size: 1.35rem; color: var(--muted); line-height: 1;
  transition: transform .25s, color .15s; flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--green); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  font-size: .875rem; color: var(--muted); line-height: 1.75;
  padding: 0 1.35rem;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.35rem 1.35rem; }

/* ── CTA block ──────────────────────────────────────────── */
.cta-block {
  margin: 0 5% 5rem;
  background: var(--bg2);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid; grid-template-columns: 380px 1fr;
  align-items: center;
  position: relative;
}
.cta-block::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 100% at 0% 50%, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-img { height: 240px; object-fit: cover; width: 100%; filter: brightness(.55) saturate(.75); }
.cta-text { padding: 2.75rem 3.25rem; position: relative; }
.cta-text h2 { font-size: clamp(1.4rem,2.5vw,1.9rem); color: #fff; margin-bottom: .7rem; }
.cta-text p { color: var(--muted); font-size: .9rem; line-height: 1.75; margin-bottom: 1.75rem; }
.cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Hero ───────────────────────────────────────────────── */
.mc-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 5rem 5% 4rem;
  position: relative; overflow: hidden;
}
.mc-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 60% 40%, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.mc-hero-content { position: relative; z-index: 1; }
.mc-breadcrumb { font-size: .78rem; color: var(--muted); margin-bottom: 1.25rem; }
.mc-breadcrumb a { color: var(--muted); text-decoration: none; }
.mc-breadcrumb a:hover { color: var(--green); }
.mc-hero-content h1 { font-size: clamp(2.4rem,5.5vw,4rem); color: #fff; margin-bottom: 1.1rem; }
.mc-hero-content h1 span { color: var(--green); }
.mc-hero-content p { color: var(--muted); font-size: .975rem; line-height: 1.8; max-width: 460px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.mc-hero-img { position: relative; }
.mc-hero-img img { width: 100%; max-height: 360px; object-fit: contain; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.7)); animation: floatImg 5s ease-in-out infinite; }
@keyframes floatImg { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 3.5rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-about p { color: var(--muted); font-size: .84rem; line-height: 1.75; margin-top: .7rem; max-width: 240px; }
.fcol h4 { font-size: .7rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--text2); margin-bottom: 1rem; }
.fcol ul { list-style: none; }
.fcol ul li { margin-bottom: .45rem; }
.fcol ul a { color: var(--muted); font-size: .845rem; text-decoration: none; transition: color .15s; }
.fcol ul a:hover { color: var(--green); }
.footer-bot { border-top: 1px solid var(--border); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bot p { font-size: .78rem; color: var(--muted); }

.uptime { display: flex; align-items: center; gap: .45rem; font-size: .78rem; color: var(--muted); }
.uptime-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2.5s infinite; }
@keyframes blink { 0%,100%{opacity:1;box-shadow:0 0 6px rgba(34,197,94,.6)} 50%{opacity:.35;box-shadow:none} }

/* ── Misc shared ────────────────────────────────────────── */
.games-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.game-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; aspect-ratio: 16/9;
  border: 1px solid var(--border);
  cursor: pointer;
}
.game-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); transition: filter .25s, transform .4s; }
.game-card:hover img { filter: brightness(.82); transform: scale(1.05); }
.game-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, transparent 100%);
  padding: .9rem .9rem .65rem;
  font-size: .82rem; font-weight: 700; color: #fff;
}

.panel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.panel-screen { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.ps-bar { background: var(--bg3); border-bottom: 1px solid var(--border); padding: .6rem 1rem; display: flex; align-items: center; gap: .4rem; }
.ps-dot { width: 9px; height: 9px; border-radius: 50%; }
.ps-url { margin-left: .5rem; font-size: .72rem; color: var(--muted); }
.ps-body { padding: 1.25rem; }
.ps-row { display: flex; align-items: center; gap: .9rem; background: rgba(255,255,255,0.028); border: 1px solid var(--border); border-radius: 9px; padding: .75rem 1rem; margin-bottom: .6rem; font-size: .82rem; }
.ps-name { flex: 1; font-weight: 600; }
.ps-tag { font-size: .7rem; font-weight: 700; padding: .15rem .55rem; border-radius: 4px; }
.ps-online { background: rgba(34,197,94,.1); color: var(--green); }
.ps-off { background: rgba(239,68,68,.1); color: #ef4444; }
.ps-bar2 { height: 5px; background: rgba(255,255,255,.05); border-radius: 3px; overflow: hidden; margin-top: .75rem; }
.ps-bar2-fill { height: 100%; width: 58%; background: linear-gradient(90deg, var(--green-dark), var(--green)); border-radius: 3px; }
.ps-bar2-label { display: flex; justify-content: space-between; margin-top: .35rem; font-size: .7rem; color: var(--muted); }
.panel-pts { list-style: none; }
.panel-pts li { font-size: .875rem; color: var(--muted); padding: .6rem 0 .6rem 1.1rem; border-left: 2px solid var(--green-border2); margin-bottom: .5rem; line-height: 1.6; }

.testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.6rem; transition: border-color .2s; }
.testi-card:hover { border-color: var(--green-border); }
.stars { color: #f59e0b; font-size: .82rem; margin-bottom: .9rem; letter-spacing: 1.5px; }
.testi-q { font-size: .875rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem; font-style: italic; }
.testi-who { display: flex; align-items: center; gap: .7rem; }
.testi-av { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); }
.testi-n { font-size: .85rem; font-weight: 700; color: var(--text); }
.testi-g { font-size: .74rem; color: var(--muted); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 1.1rem; }
.testi-bg { background: var(--bg2); border-top: 1px solid var(--border); }

/* ── Hero (home) ────────────────────────────────────────── */
.hero {
  min-height: 88vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 5%;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(34,197,94,0.11) 0%, transparent 65%),
    radial-gradient(ellipse 35% 35% at 85% 75%, rgba(34,197,94,0.04) 0%, transparent 60%);
  pointer-events: none;
}
/* Animated grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(2.8rem,7vw,5.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 1.25rem; color: #fff;
  position: relative; z-index: 1;
}
.hero h1 span { color: var(--green); }
.hero > p { color: var(--muted); font-size: 1.05rem; line-height: 1.8; max-width: 520px; margin-bottom: 2.25rem; position: relative; z-index: 1; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }

.hero-game-thumb { width: 165px; height: 95px; border-radius: 10px; overflow: hidden; border: 1px solid var(--border); position: relative; }
.hero-game-thumb img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.6); transition: filter .2s, transform .35s; }
.hero-game-thumb:hover img { filter: brightness(.88); transform: scale(1.05); }
.hero-game-thumb span { position: absolute; bottom: 7px; left: 9px; font-size: .72rem; font-weight: 700; color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.8); }
.hero-img-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 4rem; position: relative; z-index: 1; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .pricing-grid-3 { grid-template-columns: 1fr; }
  .mc-hero { grid-template-columns: 1fr; }
  .mc-hero-img { display: none; }
  .panel-row { grid-template-columns: 1fr; }
  .cta-block { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  section { padding: 3.5rem 5%; }
  .hero { padding: 4rem 5%; }
  h2.s-title { font-size: 1.55rem; }
  .cta-block { margin: 0 0 3.5rem; border-radius: 0; border-left: none; border-right: none; }
}
