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

:root {
  --bg: #030508;
  --bg2: #070d14;
  --bg3: #0b1420;
  --card: #0d1520;
  --card2: #111c2b;
  --emerald: #00ff9d;
  --emerald2: #00cc7a;
  --emerald-glow: rgba(0, 255, 157, 0.35);
  --hot: #ff2d6b;
  --hot2: #ff6b35;
  --hot-glow: rgba(255, 45, 107, 0.4);
  --gold: #ffd000;
  --gold-glow: rgba(255, 208, 0, 0.25);
  --purple: #c026d3;
  --purple-glow: rgba(192, 38, 211, 0.35);
  --magenta: #ff006e;
  --pink: #ff4d9d;
  --fire: #ff5500;
  --fire-glow: rgba(255, 85, 0, 0.35);
  --cyan: #00d4ff;
  --green: #25d366;
  --text: #ffffff;
  --muted: #9cb3cc;
  --border: rgba(255, 255, 255, 0.09);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --display: 'Syne', 'Outfit', var(--font);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(3, 5, 8, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.header.scrolled { box-shadow: 0 8px 40px rgba(0,0,0,0.7); }

.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.5px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 4px 20px var(--emerald-glow);
}
.logo em { font-style: normal; color: var(--emerald); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .nav-adult { color: var(--pink); font-weight: 700; }
.nav-links .nav-adult:hover { color: var(--magenta); }

.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 700; color: var(--pink); padding: 0;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav-dropdown-toggle:hover, .nav-dropdown.open .nav-dropdown-toggle { color: var(--magenta); }
.nav-dropdown-toggle.active { color: var(--text); }
.nav-caret { font-size: 10px; opacity: 0.8; transition: transform 0.2s; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
  min-width: 200px; background: var(--bg2); border: 1px solid rgba(255,77,157,0.25);
  border-radius: 14px; padding: 8px; box-shadow: 0 16px 48px rgba(0,0,0,0.5); z-index: 1100;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--muted);
  border-radius: 8px; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,0,110,0.1); color: var(--pink); }
.nav-dropdown-menu a.active { background: rgba(255,0,110,0.15); color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 14px; padding: 13px 26px; border-radius: 50px;
  border: none; cursor: pointer; transition: all 0.25s; white-space: nowrap;
}
.btn-emerald { background: var(--emerald); color: #001a0e; box-shadow: 0 4px 28px var(--emerald-glow); }
.btn-emerald:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 40px var(--emerald-glow); }
.btn-hot {
  background: linear-gradient(135deg, var(--hot), var(--hot2));
  color: #fff; box-shadow: 0 6px 30px var(--hot-glow);
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.btn-hot:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 45px var(--hot-glow); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 30px var(--hot-glow); }
  50% { box-shadow: 0 6px 50px rgba(255,45,107,0.6); }
}
.btn-whatsapp { background: var(--green); color: #fff; box-shadow: 0 4px 24px rgba(37,211,102,0.45); font-weight: 800; }
.btn-whatsapp:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.btn-adult { background: linear-gradient(135deg, var(--magenta), var(--purple)); color: #fff; box-shadow: 0 6px 30px var(--purple-glow); }
.btn-adult:hover { transform: translateY(-3px); box-shadow: 0 12px 40px var(--purple-glow); }
.btn-outline { background: rgba(255,255,255,0.06); color: var(--text); border: 1px solid rgba(255,255,255,0.15); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.btn-lg { padding: 18px 38px; font-size: 17px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* ── Hero with image ── */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding: 160px 0 100px; overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(4,8,15,0.97) 40%, rgba(4,8,15,0.6) 70%, rgba(4,8,15,0.4));
}
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--emerald-glow), transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.hero-text { max-width: 600px; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,229,160,0.12); border: 1px solid rgba(0,229,160,0.25);
  color: var(--emerald); font-size: 12px; font-weight: 700;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  text-transform: uppercase; letter-spacing: 1px;
}
.badge-dot { width: 7px; height: 7px; background: var(--emerald); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-family: var(--display); font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800; line-height: 1.08; letter-spacing: -2px; margin-bottom: 22px;
}
.grad { background: linear-gradient(135deg, var(--emerald), var(--cyan)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--muted); font-weight: 600; }
.hero-trust span::before { content: '✓ '; color: var(--emerald); }

.hero-visual {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.hero-visual img { width: 100%; height: 420px; object-fit: cover; }
.hero-visual-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(4,8,15,0.85); backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 20px; display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; text-align: center;
}
.hero-stat-num { font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--emerald); display: block; }
.hero-stat-lbl { font-size: 11px; color: var(--muted); font-weight: 600; }

/* ── Sections ── */
section { padding: 100px 0; }
section.alt { background: var(--bg2); }
/* Article blocks inside guides — no page-level section padding */
.seo-guide-prose .guide-block,
.seo-guide-prose > section,
.landing-prose .guide-block,
.landing-prose > section,
.seo-prose .guide-block,
.seo-prose > section,
.core-prose .guide-block,
.core-prose > section {
  padding: 0;
  margin-bottom: 24px;
}
section.guide-body { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; color: var(--emerald); margin-bottom: 14px; }
.section-head h2 { font-family: var(--display); font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ── Server Cards ── */
.servers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.servers-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 900px; margin: 0 auto; }
.servers-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; margin: 0 auto; }
.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.stat-pill {
  text-align: center; padding: 20px 12px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
}
.stat-pill strong { display: block; font-family: var(--display); font-size: 28px; color: var(--emerald); }
.stat-pill span { font-size: 13px; color: var(--muted); }
.landing-prose { max-width: 900px; margin: 0 auto; }
.landing-prose h2 { font-family: var(--display); font-size: 28px; margin: 40px 0 16px; }
.landing-prose h3 { font-size: 20px; margin: 28px 0 12px; color: var(--emerald); }
.landing-prose p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.landing-prose ul { margin: 0 0 20px 20px; color: var(--muted); }
.landing-prose li { margin-bottom: 8px; list-style: disc; }
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.compare-table th, .compare-table td { padding: 12px 16px; border: 1px solid var(--border); text-align: left; }
.compare-table th { background: var(--card2); color: var(--emerald); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.step-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 28px; text-align: center; }
.step-num { font-family: var(--display); font-size: 36px; color: var(--hot); margin-bottom: 12px; }
.server-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: all 0.35s;
  position: relative;
}
.server-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.server-card.normal { border-top: 3px solid var(--emerald); }
.server-card.vip { border-top: 3px solid var(--gold); }
.server-card.premium { border-top: 3px solid var(--purple); }
.server-card.ultra { border-top: 3px solid var(--fire); }
.server-card.normal:hover { border-color: rgba(0,229,160,0.4); }
.server-card.vip:hover { border-color: rgba(251,191,36,0.4); }
.server-card.premium:hover { border-color: rgba(168,85,247,0.4); }
.server-card.ultra:hover { border-color: rgba(249,115,22,0.4); }

.server-top { padding: 28px 24px 20px; }
.server-icon { font-size: 32px; margin-bottom: 12px; }
.server-card h3 { font-family: var(--display); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.server-tag {
  display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 12px;
  border-radius: 50px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}
.server-card.normal .server-tag { background: rgba(0,229,160,0.12); color: var(--emerald); }
.server-card.vip .server-tag { background: rgba(251,191,36,0.12); color: var(--gold); }
.server-card.premium .server-tag { background: rgba(168,85,247,0.12); color: var(--purple); }
.server-card.ultra .server-tag { background: rgba(249,115,22,0.12); color: var(--fire); }
.server-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.server-stats { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
.server-stats span { font-size: 11px; font-weight: 700; color: var(--muted); background: rgba(255,255,255,0.04); padding: 4px 10px; border-radius: 6px; }

.server-prices { padding: 0 24px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.price-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px;
}
.price-row:last-of-type { border-bottom: none; }
.price-row .term { color: var(--muted); font-weight: 500; }
.price-row .amount { font-family: var(--display); font-weight: 800; font-size: 18px; }
.price-row.best .term::after { content: ' ⭐'; }
.price-row.deal .term::after { content: ' 🔥'; }
.price-row.ultimate .term::after { content: ' 💎'; }
.server-card.normal .price-row .amount { color: var(--emerald); }
.server-card.vip .price-row .amount { color: var(--gold); }
.server-card.premium .price-row .amount { color: var(--purple); }
.server-card.ultra .price-row .amount { color: var(--fire); }

.server-card .btn { margin: 16px 24px 24px; width: calc(100% - 48px); }
.server-ribbon {
  position: absolute; top: 16px; right: 16px;
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 50px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.server-card.normal .server-ribbon { background: var(--emerald); color: #04120c; }
.server-card.vip .server-ribbon { background: var(--gold); color: #1a1000; }
.server-card.premium .server-ribbon { background: var(--purple); color: #fff; }
.server-card.ultra .server-ribbon { background: var(--fire); color: #fff; }

/* ── Image split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); }
.split-img img { width: 100%; height: 380px; object-fit: cover; }
.split-content h2 { font-family: var(--display); font-size: 34px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 18px; }
.split-content p { color: var(--muted); font-size: 15px; margin-bottom: 14px; line-height: 1.8; }
.check-list li { display: flex; gap: 12px; padding: 10px 0; font-size: 15px; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: all 0.3s;
}
.feat:hover { border-color: rgba(0,229,160,0.3); transform: translateY(-4px); }
.feat-icon { font-size: 30px; margin-bottom: 16px; }
.feat h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feat p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ── Compare table ── */
.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }
.compare { width: 100%; border-collapse: collapse; min-width: 700px; }
.compare th, .compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare th { background: var(--card2); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
.compare td:first-child { font-weight: 600; color: var(--text); }
.compare td { color: var(--muted); }
.compare tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--emerald); font-weight: 700; }
.compare .no { color: #64748b; }

/* ── Devices strip ── */
.devices-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.dev-item {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 20px 10px; text-align: center; transition: all 0.25s;
}
.dev-item:hover { border-color: var(--emerald); transform: translateY(-3px); }
.dev-item span { font-size: 26px; display: block; margin-bottom: 8px; }
.dev-item p { font-size: 11px; font-weight: 700; color: var(--muted); }

/* ── Testimonials ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; }
.review p { color: var(--muted); font-size: 14px; font-style: italic; line-height: 1.8; margin-bottom: 18px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--cyan));
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 13px;
}
.review-name { font-size: 14px; font-weight: 700; }
.review-loc { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 28px; background: none; border: none; color: var(--text);
  font-size: 16px; font-weight: 600; text-align: left; cursor: pointer; font-family: var(--font);
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--emerald); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 28px 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }

/* ── CTA ── */
.cta-box {
  background: linear-gradient(135deg, #0a2e1f 0%, #0d2840 50%, #1a1040 100%);
  border: 1px solid rgba(0,229,160,0.2); border-radius: var(--radius);
  padding: 72px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0,229,160,0.15), transparent 50%);
}
.cta-box h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 14px; position: relative; }
.cta-box p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 32px; position: relative; }
.cta-box .hero-cta { justify-content: center; margin-bottom: 0; position: relative; }

/* ── Adult notice banner ── */
.adult-notice {
  background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.25);
  border-radius: var(--radius-sm); padding: 18px 24px; margin-top: 40px;
  font-size: 14px; color: var(--muted); text-align: center; line-height: 1.7;
}
.adult-notice strong { color: #e9d5ff; }
.adult-notice a { color: var(--purple); font-weight: 700; }

/* ── Page hero ── */
.page-hero {
  padding: 150px 0 70px; text-align: center; background: var(--bg2);
  position: relative; overflow: hidden;
}

.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,160,0.08), transparent 60%);
}
.page-hero h1 { font-family: var(--display); font-size: clamp(32px, 5vw, 50px); font-weight: 800; margin-bottom: 14px; position: relative; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 580px; margin: 0 auto; position: relative; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--muted); margin-bottom: 18px; position: relative; }
.breadcrumb a:hover { color: var(--emerald); }

/* ── Age gate ── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(4,8,15,0.97); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.age-gate.hidden { display: none; }
.age-box {
  max-width: 520px; width: 100%; background: var(--card);
  border: 1px solid rgba(168,85,247,0.3); border-radius: var(--radius);
  padding: 48px 40px; text-align: center;
}
.age-box .age-icon { font-size: 48px; margin-bottom: 20px; }
.age-box h2 { font-family: var(--display); font-size: 28px; font-weight: 800; margin-bottom: 14px; }
.age-box p { color: var(--muted); font-size: 15px; margin-bottom: 28px; line-height: 1.7; }
.age-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Adult page cards ── */
.adult-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adult-plan {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 30px; text-align: center;
}
.adult-plan.vip { border-color: rgba(251,191,36,0.3); }
.adult-plan.premium { border-color: rgba(168,85,247,0.3); }
.adult-plan.ultra { border-color: rgba(249,115,22,0.3); }
.adult-plan h3 { font-family: var(--display); font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.adult-plan .count { font-family: var(--display); font-size: 48px; font-weight: 800; margin: 16px 0; }
.adult-plan.vip .count { color: var(--gold); }
.adult-plan.premium .count { color: var(--purple); }
.adult-plan.ultra .count { color: var(--fire); }
.adult-plan li { color: var(--muted); font-size: 14px; padding: 6px 0; text-align: left; padding-left: 20px; position: relative; }
.adult-plan li::before { content: '→'; position: absolute; left: 0; color: var(--emerald); }

/* ── Guide grid ── */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.guide-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.3s;
}
.guide-card:hover { border-color: var(--emerald); transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-card img { width: 100%; height: 160px; object-fit: cover; }
.guide-card-body { padding: 24px; }
.guide-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.guide-card p { color: var(--muted); font-size: 13px; margin-bottom: 16px; }

/* ── Contact, footer ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin-bottom: 16px; }
.contact-card h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--emerald); margin-bottom: 8px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 7px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); font-family: var(--font); font-size: 15px;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--emerald); }
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }

.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin-top: 16px; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--emerald); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--muted); font-size: 13px; }

.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: transform 0.25s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── Pricing page server detail ── */
.pricing-detail { display: none; }
.pricing-detail.active { display: block; }
.server-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 48px; flex-wrap: wrap; }
.server-tab {
  padding: 12px 24px; border-radius: 50px; font-size: 14px; font-weight: 700;
  background: var(--card); border: 1px solid var(--border); color: var(--muted); cursor: pointer; transition: all 0.2s;
}
.server-tab.active-normal, .server-tab[data-server="normal"]:hover { background: rgba(0,229,160,0.15); border-color: var(--emerald); color: var(--emerald); }
.server-tab.active-vip, .server-tab[data-server="vip"]:hover { background: rgba(251,191,36,0.12); border-color: var(--gold); color: var(--gold); }
.server-tab.active-premium, .server-tab[data-server="premium"]:hover { background: rgba(168,85,247,0.12); border-color: var(--purple); color: var(--purple); }
.server-tab.active-ultra, .server-tab[data-server="ultra"]:hover { background: rgba(249,115,22,0.12); border-color: var(--fire); color: var(--fire); }

.plan-cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.plan-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 26px; text-align: center; position: relative; transition: all 0.3s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-card.featured { border-width: 2px; }
.plan-card h4 { font-size: 15px; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.plan-card .big-price { font-family: var(--display); font-size: 44px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.plan-card .per-mo { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.plan-card .btn { width: 100%; }
.plan-ribbon {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  font-size: 10px; font-weight: 800; padding: 5px 14px; border-radius: 50px; white-space: nowrap;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .servers-grid, .servers-grid-2, .servers-grid-3, .plan-cards-4, .stats-bar, .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 900px) {
  .features-grid, .reviews-grid, .guide-grid, .adult-plans { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .devices-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 76px; left: 0; right: 0;
    background: var(--bg2); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--border); }
  .nav-dropdown { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 14px 0; }
  .nav-dropdown-menu {
    position: static; transform: none; display: none; box-shadow: none;
    border: none; background: transparent; padding: 0 0 8px 12px; min-width: 0;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a { padding: 10px 0; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-emerald { display: none; }
  .servers-grid, .servers-grid-2, .servers-grid-3, .plan-cards-4, .stats-bar, .steps-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .cta-box { padding: 48px 24px; }
  .wc-popup-box { padding: 28px 20px; }
  .wc-popup-box h2 { font-size: 24px; }
}

/* ── World Cup Popup ── */
.wc-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.82); backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center; padding: 20px;
  animation: fadeIn 0.4s ease;
}
.wc-overlay.hidden { display: none; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.wc-popup-box {
  max-width: 560px; width: 100%; background: linear-gradient(160deg, #0a1f12, #0d1520);
  border: 2px solid rgba(0,255,157,0.35); border-radius: 24px;
  overflow: hidden; position: relative;
  box-shadow: 0 30px 100px rgba(0,255,157,0.15), 0 0 0 1px rgba(255,255,255,0.05);
  animation: popUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popUp { from { transform: scale(0.85) translateY(20px); opacity: 0; } to { transform: scale(1) translateY(0); opacity: 1; } }

.wc-popup-img { width: 100%; height: 200px; object-fit: cover; }
.wc-popup-body { padding: 32px 32px 28px; text-align: center; }
.wc-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,45,107,0.15); border: 1px solid rgba(255,45,107,0.4);
  color: #ff8fab; font-size: 11px; font-weight: 800; padding: 6px 14px;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.wc-live-dot { width: 8px; height: 8px; background: #ff2d6b; border-radius: 50%; animation: blink 1s infinite; }
.wc-popup-box h2 { font-family: var(--display); font-size: 28px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.5px; }
.wc-popup-box h2 em { font-style: normal; color: var(--emerald); }
.wc-popup-box p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 8px; }
.wc-popup-features { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 20px 0 24px; }
.wc-popup-features span { font-size: 12px; font-weight: 700; color: var(--emerald); background: rgba(0,255,157,0.1); padding: 6px 12px; border-radius: 8px; }
.wc-popup-close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px;
  background: rgba(0,0,0,0.5); border: 1px solid var(--border); border-radius: 50%;
  color: var(--text); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 2;
}
.wc-popup-close:hover { background: rgba(255,255,255,0.15); }
.wc-countdown { font-family: var(--display); font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 20px; }

/* ── Adult page extras ── */
body.adult-page { background: #050208; }
body.adult-page .grad { background: linear-gradient(135deg, var(--pink), var(--magenta)); -webkit-background-clip: text; background-clip: text; color: transparent; }

.channel-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.channel-pill {
  background: linear-gradient(135deg, rgba(255,0,110,0.12), rgba(192,38,211,0.08));
  border: 1px solid rgba(255,77,157,0.25); border-radius: 10px;
  padding: 12px 20px; font-size: 14px; font-weight: 700; color: #ffc8e8;
  transition: all 0.25s;
}
.channel-pill:hover { border-color: var(--pink); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,0,110,0.2); }
.channel-pill.premium { border-color: rgba(255,208,0,0.35); color: #ffe566; background: rgba(255,208,0,0.08); }

.vod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vod-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 24px 18px; text-align: center; transition: all 0.3s;
}
.vod-card:hover { border-color: var(--magenta); transform: translateY(-4px); }
.vod-card .vod-num { font-family: var(--display); font-size: 32px; font-weight: 800; color: var(--pink); display: block; margin-bottom: 6px; }
.vod-card p { font-size: 13px; color: var(--muted); font-weight: 600; }

.anime-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.anime-card {
  background: linear-gradient(160deg, rgba(255,0,110,0.08), var(--card));
  border: 1px solid rgba(255,77,157,0.2); border-radius: var(--radius); overflow: hidden;
}
.anime-card img { width: 100%; height: 180px; object-fit: cover; }
.anime-card-body { padding: 22px; }
.anime-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.anime-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.sell-strip {
  background: linear-gradient(90deg, rgba(255,45,107,0.15), rgba(192,38,211,0.1), rgba(255,45,107,0.15));
  border: 1px solid rgba(255,77,157,0.25); border-radius: var(--radius);
  padding: 28px 32px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; margin-top: 48px;
}
.sell-strip h3 { font-family: var(--display); font-size: 22px; font-weight: 800; }
.sell-strip p { color: var(--muted); font-size: 14px; margin-top: 4px; }

.seo-keywords { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 32px; }
.seo-keywords span { font-size: 11px; color: #5a7a95; background: rgba(255,255,255,0.03); padding: 5px 12px; border-radius: 6px; border: 1px solid var(--border); }

.sticky-cta-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: rgba(3,5,8,0.95); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,45,107,0.2); padding: 12px 24px;
  display: none; align-items: center; justify-content: center; gap: 12px;
}
body.adult-page .sticky-cta-bar { display: flex; }
body.adult-page .wa-float { bottom: 80px; }

/* Adult media — clean uniform layout */
.adult-media-section { padding: 48px 0; }
.adult-media-head { text-align: center; max-width: 560px; margin: 0 auto 32px; }
.adult-media-head h2 { font-family: var(--display); font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.adult-media-head p { color: var(--muted); font-size: 14px; }

.adult-video-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 960px; margin: 0 auto;
}
.adult-video-card {
  position: relative; border-radius: 16px; overflow: hidden;
  background: var(--card); border: 1px solid rgba(255,77,157,0.12);
  aspect-ratio: 9/14; box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.adult-video-card video { width: 100%; height: 100%; object-fit: cover; display: block; }
.adult-video-card .video-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 0.3px;
}
.adult-video-card .hd-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(0,0,0,0.65); border: 1px solid rgba(255,255,255,0.2);
  color: var(--gold); font-size: 10px; font-weight: 800; padding: 4px 8px; border-radius: 6px;
}

.adult-video-hero {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(255,77,157,0.12); box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  aspect-ratio: 9/14; max-width: 360px; margin: 0 auto;
}
.adult-video-hero video { width: 100%; height: 100%; object-fit: cover; display: block; }

.adult-showcase {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
  max-width: 1100px; margin: 0 auto;
}
.adult-showcase-item {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 3/4; background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
}
.adult-showcase-item img { width: 100%; height: 100%; object-fit: contain; object-position: center center; }

.adult-hub-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px;
}
.adult-hub-card {
  background: var(--card); border: 1px solid rgba(255,77,157,0.15);
  border-radius: 16px; padding: 24px 20px; transition: all 0.25s;
  display: flex; flex-direction: column; gap: 8px;
}
.adult-hub-card:hover { border-color: rgba(255,77,157,0.4); background: rgba(255,0,110,0.06); transform: translateY(-2px); }
.adult-hub-card .hub-icon { font-size: 28px; line-height: 1; margin-bottom: 4px; }
.adult-hub-card h3 { font-family: var(--display); font-size: 16px; font-weight: 800; }
.adult-hub-card p { font-size: 13px; color: var(--muted); line-height: 1.5; flex: 1; }
.adult-hub-card .link-arrow { font-size: 12px; font-weight: 700; color: var(--pink); margin-top: 4px; }
.adult-hub-card .hub-thumb {
  width: 100%; height: 160px; object-fit: contain; object-position: center center;
  border-radius: 10px; margin-bottom: 8px; background: var(--bg2);
}

body.adult-page .split-img { border-color: rgba(255,77,157,0.12); }
body.adult-page .split-img img { height: auto; max-height: 420px; min-height: 280px; object-fit: contain; object-position: center center; background: var(--bg2); }
body.adult-page .anime-card img { object-fit: contain; background: var(--bg2); height: auto; max-height: 220px; }
body.adult-page .anime-card { border-color: rgba(255,77,157,0.12); padding: 0; }
body.adult-page .anime-card .anime-card-body { padding: 28px 24px; }
body.adult-page .anime-grid { gap: 16px; }

@media (max-width: 900px) {
  .vod-grid { grid-template-columns: repeat(2, 1fr); }
  .anime-grid { grid-template-columns: 1fr; }
  .adult-video-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .adult-showcase { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .adult-hub-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .adult-video-grid { grid-template-columns: 1fr; max-width: 300px; }
  .adult-hub-grid { grid-template-columns: 1fr; }
}