/* ===== Aether72 — Parody Premium Theme ===== */

:root {
  --bg-deep: #05060a;
  --bg-card: rgba(12, 14, 22, 0.72);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(0, 212, 255, 0.35);
  --text: #e8eaef;
  --text-muted: #8b92a8;
  --accent: #00d4ff;
  --accent-2: #7b2fff;
  --accent-3: #ff2d7a;
  --gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  --gradient-soft: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(123, 47, 255, 0.15));
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Orbitron', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-glow: 0 0 40px rgba(0, 212, 255, 0.15);
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  width: 100%;
}

.accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ===== Animated Background ===== */

.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(123, 47, 255, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(0, 212, 255, 0.12), transparent),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(255, 45, 122, 0.08), transparent);
  animation: meshShift 18s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.bg-particles {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== Header ===== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(5, 6, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gradient-soft);
  border: 1px solid var(--border-glow);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.nav__links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: width var(--transition);
}

.nav__links a:hover {
  color: var(--text);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Buttons ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 212, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.45);
}

.btn--ghost {
  background: var(--bg-glass);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  width: 100%;
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}

.hero__parallax {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbPulse 8s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 212, 255, 0.2);
  top: 10%;
  left: 10%;
}

.hero__orb--2 {
  width: 350px;
  height: 350px;
  background: rgba(123, 47, 255, 0.18);
  bottom: 20%;
  right: 5%;
  animation-delay: -4s;
}

@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-glass);
  border: 1px solid var(--border-glow);
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 60px rgba(0, 212, 255, 0.3);
}

.hero__title-main {
  display: block;
}

.hero__slogan {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero__sub {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__stats-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero__stats-mini .dot {
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}

.hero__stats-mini strong {
  color: var(--text);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Sections ===== */

.section {
  padding: 6rem 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section__desc {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== Reveal Animation ===== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Features ===== */

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--accent);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== Showcase / Cheat Mockup ===== */

.showcase__wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.cheat-mockup {
  background: rgba(8, 10, 16, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.5),
    var(--shadow-glow);
}

.cheat-mockup__titlebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--border);
}

.cheat-mockup__dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 4px;
}

.cheat-mockup__dots span:nth-child(1) { background: #ff5f57; }
.cheat-mockup__dots span:nth-child(2) { background: #febc2e; }
.cheat-mockup__dots span:nth-child(3) { background: #28c840; }

.cheat-mockup__title {
  flex: 1;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cheat-mockup__version {
  font-size: 0.7rem;
  color: var(--accent);
  font-family: monospace;
}

.cheat-mockup__body {
  padding: 1rem;
}

.cheat-mockup__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 8px;
}

.cheat-tab {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  background: transparent;
  border: none;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-sans);
}

.cheat-tab:hover {
  color: var(--text);
}

.cheat-tab.active {
  background: var(--gradient-soft);
  color: var(--accent);
  border: 1px solid var(--border-glow);
}

.cheat-panel {
  display: none;
  animation: panelFade 0.3s ease;
}

.cheat-panel.active {
  display: block;
}

@keyframes panelFade {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.cheat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.cheat-row:has(.cheat-slider) {
  grid-template-columns: 1fr minmax(100px, 1.2fr) auto;
}

.cheat-label {
  color: var(--text-muted);
}

.cheat-value {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--accent);
  min-width: 60px;
  text-align: right;
}

/* —— Sliders (site theme) —— */
.cheat-slider {
  width: 120px;
  accent-color: var(--accent);
  cursor: pointer;
}

.cheat-select {

 padding: 0.35rem 0.6rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 0.8rem;
  
  cursor: pointer;
  min-width: 140px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.cheat-select:hover,
.cheat-select:focus {
  outline: none;
  border-color: var(--border-glow);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}



/* Toggle */
.toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: var(--transition);
}

.toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle input:checked + .toggle__slider {
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.4);
}

.toggle input:checked + .toggle__slider::before {
  transform: translateX(20px);
  background: #fff;
}

.toggle:active .toggle__slider::before {
  width: 22px;
}

.toggle input:focus-visible + .toggle__slider {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cheat-value.is-updating {
  color: var(--accent);
  transition: color 0.15s ease;
}

/* ===== Pricing ===== */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.price-card--featured {
  border-color: var(--border-glow);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.08) 0%, var(--bg-card) 40%);
  box-shadow: var(--shadow-glow);
  transform: scale(1.02);
}

.price-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.price-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.price-card__price {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.price-card__price .currency,
.price-card__price .cents {
  font-size: 1.25rem;
  color: var(--text-muted);
}

.price-card__period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.price-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-card__features li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.price-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Stats ===== */

.stats {
  padding: 4rem 0;
  background: var(--gradient-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Reviews ===== */

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  border-color: rgba(123, 47, 255, 0.3);
  box-shadow: 0 12px 32px rgba(123, 47, 255, 0.1);
}

.review-card__stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.review-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
}

.review-card__author strong {
  display: block;
  font-size: 0.9rem;
}

.review-card__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== FAQ ===== */

.faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: var(--border-glow);
}

.faq-item[open] {
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== Footer ===== */

.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
}

.footer__brand {
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer__brand p {
  color: var(--accent);
  margin-top: 0.5rem;
  font-weight: 600;
}

.footer__disclaimer {
  background: rgba(255, 45, 122, 0.06);
  border: 1px solid rgba(255, 45, 122, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
}

.footer__disclaimer h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--accent-3);
  margin-bottom: 0.75rem;
}

.footer__disclaimer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--accent);
}

/* ===== Toast ===== */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  max-width: 380px;
  padding: 1.25rem 1.5rem;
  background: rgba(12, 14, 22, 0.95);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  transform: translateX(calc(100% + 3rem));
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast__icon {
  font-size: 1.5rem;
  line-height: 1;
}

.toast__content strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.toast__content p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.toast__close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color var(--transition);
}

.toast__close:hover {
  color: var(--text);
}

/* ===== Modal ===== */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: var(--shadow-glow), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.show .modal {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
}

.modal__close:hover {
  color: var(--text);
}

.modal__emoji {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.modal h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.modal__sub {
  font-size: 0.85rem !important;
  margin-bottom: 1.5rem !important;
}

.modal .btn {
  min-width: 140px;
}

/* ===== Nav active (forum page) ===== */

.nav__links a.nav__active {
  color: var(--accent);
}

/* ===== Forum page ===== */

.page-forum {
  padding-top: var(--header-h);
}

.forum-page {
  padding: 2rem 0 4rem;
  min-height: calc(100vh - var(--header-h));
}

.forum-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.forum-topbar__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
}

.forum-topbar__meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.forum-online::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #28c840;
  border-radius: 50%;
  margin-right: 6px;
  box-shadow: 0 0 8px #28c840;
}

.forum-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.forum-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.forum-sidebar h2 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.forum-cats {
  list-style: none;
}

.forum-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.55rem 0.65rem;
  margin-bottom: 2px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.forum-cat span {
  font-size: 0.75rem;
  opacity: 0.6;
}

.forum-cat:hover {
  background: var(--bg-glass);
  color: var(--text);
}

.forum-cat.active {
  background: var(--gradient-soft);
  color: var(--accent);
  border: 1px solid var(--border-glow);
}

.forum-sidebar__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.forum-sidebar__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--accent);
}

.forum-sidebar__stats span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.forum-main {
  min-width: 0;
}

.forum-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.forum-list__head {
  display: grid;
  grid-template-columns: 1fr 70px 70px 100px;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid var(--border);
}

.forum-thread {
  display: grid;
  grid-template-columns: 28px 1fr 70px 70px 100px;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
}

.forum-thread:last-child {
  border-bottom: none;
}

.forum-thread:hover {
  background: rgba(0, 212, 255, 0.04);
}

.forum-thread--pinned {
  background: rgba(123, 47, 255, 0.06);
}

.forum-thread__pin {
  font-size: 0.85rem;
  text-align: center;
}

.forum-thread__info h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  transition: color var(--transition);
}

.forum-thread:hover .forum-thread__info h3 {
  color: var(--accent);
}

.forum-thread__meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.forum-thread__replies,
.forum-thread__views {
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
}

.forum-thread__last {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.4;
}

.forum-thread__last small {
  color: var(--accent);
}

.forum-user--staff {
  color: var(--accent-3);
}

.forum-user {
  color: var(--accent);
}

.forum-thread-view {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.forum-back {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 1rem;
  padding: 0;
  transition: opacity var(--transition);
}

.forum-back:hover {
  opacity: 0.8;
}

.forum-thread-view__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.forum-thread-view__header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.forum-thread-view__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.forum-post {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.forum-post:last-of-type {
  border-bottom: none;
}

.forum-post__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.9rem;
}

.forum-post__avatar--staff {
  background: var(--gradient);
  color: #fff;
  border: none;
}

.forum-post__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.forum-post__head time {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.forum-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 45, 122, 0.2);
  color: var(--accent-3);
}

.forum-badge--pro {
  background: rgba(0, 212, 255, 0.15);
  color: var(--accent);
}

.forum-post__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.forum-reply-btn {
  margin-top: 1.5rem;
}

.footer--compact {
  padding-top: 2rem;
}

.footer--compact .footer__disclaimer {
  margin-bottom: 1.5rem;
}

@media (max-width: 900px) {
  .forum-layout {
    grid-template-columns: 1fr;
  }

  .forum-sidebar {
    position: static;
  }

  .forum-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .forum-cats li {
    flex: 1 1 auto;
  }

  .forum-cat {
    white-space: nowrap;
  }

  .forum-list__head {
    display: none;
  }

  .forum-thread {
    grid-template-columns: 24px 1fr;
    grid-template-rows: auto auto;
  }

  .forum-thread__replies,
  .forum-thread__views,
  .forum-thread__last {
    grid-column: 2;
    text-align: left;
    font-size: 0.75rem;
  }

  .forum-thread__replies::before { content: 'Replies: '; }
  .forum-thread__views::before { content: 'Views: '; }
  .forum-thread__last::before { content: 'Last: '; }
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 6, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__links li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__links li:last-child {
    border-bottom: none;
  }

  .price-card--featured {
    transform: none;
  }

  .price-card--featured:hover {
    transform: translateY(-4px);
  }

  .cheat-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .cheat-slider {
    width: 100%;
  }

  .toast {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
