/* ============================================================
   NovaAsault.pro — Main Stylesheet
   Theme: Gaming Reviews & Tournaments | Australia
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #00c8ff;
  --primary-dark: #0099cc;
  --accent: #ff4d6d;
  --accent2: #a855f7;
  --bg-dark: #0a0a1a;
  --bg-card: #111130;
  --bg-card2: #16163a;
  --text-main: #e8e8f0;
  --text-muted: #8888aa;
  --border: #2a2a4a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,200,255,0.10);
  --transition: 0.25s ease;
  --font-main: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
}
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* ---------- Utility ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin-top: 8px;
  border-radius: 2px;
}
.section-subtitle { color: var(--text-muted); margin-bottom: 48px; font-size: 1.05rem; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #0a0a1a;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #0a0a1a; transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: #e03050; transform: translateY(-2px); }
.tag {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-fps { background: rgba(255,77,109,0.18); color: var(--accent); }
.tag-rpg { background: rgba(168,85,247,0.18); color: var(--accent2); }
.tag-br  { background: rgba(0,200,255,0.18); color: var(--primary); }
.tag-strategy { background: rgba(80,200,80,0.18); color: #4ade80; }
.tag-tournament { background: rgba(255,180,0,0.18); color: #fbbf24; }

/* ---------- Cookie Banner ---------- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111130;
  border-top: 2px solid var(--primary);
  padding: 18px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,200,255,0.12);
}
#cookie-banner p { color: var(--text-muted); font-size: 0.92rem; flex: 1; min-width: 220px; }
#cookie-banner a { color: var(--primary); }
#cookie-banner .cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
#cookie-banner .btn { padding: 9px 22px; font-size: 0.88rem; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--primary); }
.navbar-brand .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  background: rgba(0,200,255,0.08);
}
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #111130;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 4px;
}
.mobile-menu a {
  color: var(--text-muted);
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}
.mobile-menu a:hover { color: var(--primary); background: rgba(0,200,255,0.08); }
.mobile-menu .btn { margin-top: 8px; width: 100%; text-align: center; }
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,26,0.85) 40%, rgba(168,85,247,0.15) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,200,255,0.12);
  border: 1px solid rgba(0,200,255,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.hero h1 .highlight { color: var(--primary); }
.hero p {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.hero-stat .label { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(0,200,255,0.3);
}
.card-img { width: 100%; height: 200px; object-fit: cover; }
.card-body { padding: 20px; }
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.3;
}
.card-text { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.rating { display: flex; align-items: center; gap: 4px; }
.rating .stars { color: #fbbf24; letter-spacing: 1px; }
.rating .score { font-weight: 700; color: #fbbf24; }

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

/* ---------- Featured Review ---------- */
.featured-review {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 48px;
}
.featured-review img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.featured-review-body {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-label {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.featured-review-body h2 { font-size: 1.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.featured-review-body p { color: var(--text-muted); margin-bottom: 24px; }
.score-big {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

/* ---------- Tournament Section ---------- */
.tournament-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.tournament-card:hover {
  border-color: rgba(0,200,255,0.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.tournament-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}
.tournament-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tournament-game { font-size: 0.85rem; color: var(--primary); }
.tournament-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.tournament-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.tournament-info-item .icon { font-size: 1rem; }
.status-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}
.status-open { background: rgba(74,222,128,0.15); color: #4ade80; }
.status-upcoming { background: rgba(251,191,36,0.15); color: #fbbf24; }
.status-closed { background: rgba(255,77,109,0.15); color: var(--accent); }

/* ---------- Newsletter Section ---------- */
.newsletter-section {
  background: linear-gradient(135deg, #111130 0%, #1a0a2e 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 60px 48px;
  text-align: center;
}
.newsletter-section h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.newsletter-section p { color: var(--text-muted); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 13px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form input::placeholder { color: var(--text-muted); }

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary); background: rgba(0,200,255,0.04); }
.form-group select option { background: #111130; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: #4ade80;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
}

/* ---------- About / Info Boxes ---------- */
.info-box {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.info-box-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.info-box h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.info-box p { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #0a0a1a 0%, #111130 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 48px;
  text-align: center;
}
.page-hero h1 { font-size: 2.4rem; font-weight: 900; color: #fff; margin-bottom: 12px; }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb span { color: var(--text-muted); }

/* ---------- Review Detail ---------- */
.review-detail-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 32px;
}
.review-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.review-score-panel {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 32px;
}
.score-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.score-label { font-size: 0.88rem; color: var(--text-muted); width: 100px; flex-shrink: 0; }
.score-bar { flex: 1; height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; }
.score-fill { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent2)); border-radius: 4px; }
.score-num { font-size: 0.88rem; font-weight: 700; color: #fff; width: 32px; text-align: right; }
.prose h2 { font-size: 1.4rem; font-weight: 700; color: #fff; margin: 28px 0 12px; }
.prose h3 { font-size: 1.1rem; font-weight: 700; color: var(--primary); margin: 22px 0 10px; }
.prose p { color: var(--text-muted); margin-bottom: 16px; }
.prose ul { padding-left: 20px; margin-bottom: 16px; }
.prose ul li { color: var(--text-muted); margin-bottom: 6px; list-style: disc; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.pros, .cons {
  background: var(--bg-card2);
  border-radius: 8px;
  padding: 20px;
}
.pros { border-left: 3px solid #4ade80; }
.cons { border-left: 3px solid var(--accent); }
.pros h4 { color: #4ade80; margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.cons h4 { color: var(--accent); margin-bottom: 12px; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pros li, .cons li { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 6px; padding-left: 16px; position: relative; }
.pros li::before { content: '+'; position: absolute; left: 0; color: #4ade80; font-weight: 700; }
.cons li::before { content: '−'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ---------- Tournaments Page ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  color: #0a0a1a;
  border-color: var(--primary);
}
.tournament-list { display: flex; flex-direction: column; gap: 20px; }
.tournament-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all var(--transition);
}
.tournament-row:hover {
  border-color: rgba(0,200,255,0.3);
  transform: translateX(4px);
}
.tournament-row-info h3 { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.tournament-row-meta { display: flex; gap: 20px; flex-wrap: wrap; }
.tournament-row-meta span { font-size: 0.85rem; color: var(--text-muted); }
.tournament-row-meta .highlight { color: var(--primary); }
.tournament-row-actions { display: flex; align-items: center; gap: 12px; }

/* ---------- About Page ---------- */
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: rgba(0,200,255,0.3); transform: translateY(-3px); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 16px;
  color: #fff;
  font-weight: 700;
}
.team-name { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.team-role { font-size: 0.85rem; color: var(--primary); margin-bottom: 10px; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Policy Pages ---------- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 { font-size: 1.3rem; font-weight: 700; color: #fff; margin: 32px 0 12px; }
.policy-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin: 20px 0 8px; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; }
.policy-content ul { padding-left: 20px; margin-bottom: 14px; }
.policy-content ul li { color: var(--text-muted); margin-bottom: 6px; list-style: disc; }
.policy-content a { color: var(--primary); }
.policy-date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 32px; }
.policy-toc {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 40px;
}
.policy-toc h4 { font-size: 0.9rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.policy-toc ol { padding-left: 20px; }
.policy-toc ol li { margin-bottom: 6px; }
.policy-toc ol li a { font-size: 0.88rem; color: var(--primary); }

/* ---------- Footer ---------- */
.footer {
  background: #07071a;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .logo { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.footer-brand .logo span { color: var(--primary); }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.social-btn:hover { background: var(--primary); color: #0a0a1a; border-color: var(--primary); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ---------- Pagination ---------- */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-btn {
  width: 40px; height: 40px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active { background: var(--primary); color: #0a0a1a; border-color: var(--primary); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .featured-review { grid-template-columns: 1fr; }
  .featured-review img { min-height: 220px; }
  .featured-review-body { padding: 24px; }
  .hero h1 { font-size: 2rem; }
  .hero-stats { gap: 24px; }
  .newsletter-section { padding: 40px 24px; }
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .tournament-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .page-hero { padding: 40px 0 32px; }
  .page-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: unset; }
  .filter-bar { gap: 8px; }
}
