/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #ff6a1a;
  --primary-dark: #cc4d00;
  --secondary: #1a1a2e;
  --accent: #00d4ff;
  --bg-dark: #0d0d1a;
  --bg-card: #16213e;
  --bg-card2: #1a1a2e;
  --text-main: #e8e8f0;
  --text-muted: #9090b0;
  --border: #2a2a4a;
  --radius: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7;
  min-height: 100vh;
}

a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a2e;
  border-top: 2px solid var(--primary);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  flex-wrap: wrap;
}
#cookie-banner p { font-size: 0.92rem; color: var(--text-main); flex: 1; min-width: 200px; }
#cookie-banner a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-accept-cookie {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 9px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background var(--transition);
}
.btn-accept-cookie:hover { background: var(--primary-dark); }
.btn-decline-cookie {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 9px 22px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-decline-cookie:hover { border-color: var(--primary); color: var(--primary); }

/* ===== HEADER / NAV ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13,13,26,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: 1px;
}
.logo span { color: var(--primary); }
.logo svg { width: 36px; height: 36px; }

nav ul {
  display: flex;
  gap: 6px;
}
nav ul li a {
  color: var(--text-main);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}
nav ul li a:hover,
nav ul li a.active {
  color: var(--primary);
  background: rgba(255,106,26,0.1);
}

.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center top;
  filter: brightness(0.38);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 span { color: var(--primary); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-accent {
  background: var(--accent);
  color: var(--bg-dark);
}
.btn-accent:hover { background: #00b8d9; color: var(--bg-dark); transform: translateY(-2px); }

/* ===== SECTIONS ===== */
section { padding: 72px 24px; }

.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

.divider {
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===== FEATURED REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.review-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.review-card:hover .review-card-img img { transform: scale(1.06); }

.review-genre {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.review-score {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(13,13,26,0.9);
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: 6px;
  border: 2px solid var(--primary);
}

.review-card-body { padding: 20px; }
.review-card-body h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.review-card-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.6; }

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.review-meta span { display: flex; align-items: center; gap: 4px; }

/* ===== STARS ===== */
.stars { color: #ffd700; font-size: 0.9rem; letter-spacing: 1px; }

/* ===== TOURNAMENTS ===== */
.tournaments-section { background: var(--bg-card2); }

.tournaments-list { display: flex; flex-direction: column; gap: 20px; }

.tournament-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: border-color var(--transition), transform var(--transition);
  flex-wrap: wrap;
}
.tournament-item:hover { border-color: var(--primary); transform: translateX(4px); }

.tournament-date {
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  min-width: 70px;
  flex-shrink: 0;
}
.tournament-date .day { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.tournament-date .month { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.tournament-info { flex: 1; min-width: 200px; }
.tournament-info h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.tournament-info p { color: var(--text-muted); font-size: 0.9rem; }

.tournament-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.tag {
  background: rgba(255,106,26,0.12);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,106,26,0.25);
}

.tournament-status {
  text-align: right;
  flex-shrink: 0;
}
.status-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.status-open { background: rgba(0,212,255,0.15); color: var(--accent); border: 1px solid rgba(0,212,255,0.3); }
.status-upcoming { background: rgba(255,200,0,0.12); color: #ffc800; border: 1px solid rgba(255,200,0,0.3); }
.status-closed { background: rgba(150,150,150,0.12); color: #999; border: 1px solid rgba(150,150,150,0.2); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-inner h2 { font-size: 2rem; font-weight: 900; margin-bottom: 12px; }
.newsletter-inner h2 span { color: var(--primary); }
.newsletter-inner p { color: var(--text-muted); margin-bottom: 28px; }

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text-main);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus { border-color: var(--primary); }
.newsletter-form input[type="email"]::placeholder { color: var(--text-muted); }

.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }
.form-note a { color: var(--accent); }

.form-success {
  display: none;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 600;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { font-size: 2rem; font-weight: 900; margin-bottom: 16px; }
.about-text h2 span { color: var(--primary); }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.stat-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat-box .stat-num { font-size: 2rem; font-weight: 900; color: var(--primary); }
.stat-box .stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

.about-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border);
}
.about-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,26,0.7) 0%, transparent 60%);
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #0f3460 100%);
  padding: 64px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero h1 span { color: var(--primary); }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ===== REVIEWS PAGE ===== */
.reviews-page-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.reviews-main-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.sidebar { position: sticky; top: 88px; }

.sidebar-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.filter-list { display: flex; flex-direction: column; gap: 8px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  text-align: left;
  font-size: 0.9rem;
  transition: all var(--transition);
  width: 100%;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255,106,26,0.08);
}

.top-list { display: flex; flex-direction: column; gap: 12px; }
.top-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.top-item:last-child { border-bottom: none; padding-bottom: 0; }
.top-rank {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary);
  min-width: 28px;
}
.top-item-info h4 { font-size: 0.9rem; font-weight: 700; }
.top-item-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ===== TOURNAMENTS PAGE ===== */
.tournaments-page-section { padding: 60px 24px; }

.tournament-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.tournament-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.tournament-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.tournament-card-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}
.tournament-card-header-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.tournament-card-header-content h3 { font-size: 1.2rem; font-weight: 900; color: #fff; }

.tournament-card-body { padding: 20px; }
.tournament-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.tournament-detail-row:last-of-type { border-bottom: none; }
.tournament-detail-row .label { color: var(--text-muted); }
.tournament-detail-row .value { font-weight: 700; }

.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 16px; }
.contact-info h2 span { color: var(--primary); }
.contact-info p { color: var(--text-muted); margin-bottom: 28px; }

.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,106,26,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail-item h4 { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail-item p { color: var(--text-main); font-size: 0.95rem; margin: 0; }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-success {
  display: none;
  background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent);
  padding: 14px 20px;
  border-radius: 8px;
  margin-top: 16px;
  font-weight: 600;
  text-align: center;
}

/* ===== POLICY PAGES ===== */
.policy-section { padding: 60px 24px; }
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin: 32px 0 12px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.policy-content ul li { margin-bottom: 6px; line-height: 1.7; }
.policy-content a { color: var(--accent); }
.policy-content strong { color: var(--text-main); }
.policy-updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* ===== FOOTER ===== */
footer {
  background: #080814;
  border-top: 1px solid var(--border);
  padding: 56px 24px 24px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-main);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--primary); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  background: var(--bg-card2);
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
}
.breadcrumbs-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumbs-inner a { color: var(--text-muted); }
.breadcrumbs-inner a:hover { color: var(--primary); }
.breadcrumbs-inner span { color: var(--text-main); }

/* ===== SINGLE REVIEW PAGE ===== */
.review-full {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.review-article h2 { font-size: 1.4rem; font-weight: 800; margin: 28px 0 12px; color: var(--text-main); }
.review-article p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.review-article img { border-radius: 10px; margin: 20px 0; width: 100%; max-height: 400px; object-fit: cover; }

.review-score-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-bottom: 24px;
}
.review-score-big {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.review-score-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 6px; }

.score-bars { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.score-bar-item { display: flex; flex-direction: column; gap: 5px; }
.score-bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; }
.score-bar-label span:first-child { color: var(--text-muted); }
.score-bar-label span:last-child { color: var(--text-main); font-weight: 700; }
.score-bar-track {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 1s ease;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .reviews-page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .review-full { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav ul { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: rgba(13,13,26,0.98); padding: 16px; border-bottom: 1px solid var(--border); gap: 4px; }
  nav ul.open { display: flex; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .tournament-item { flex-direction: column; align-items: flex-start; }
  .tournament-status { align-self: flex-start; }
  .policy-content { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: unset; }
}
