/* =============================================
   EMERGENCY HAMBURG — MAIN STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  /* Brand colors */
  --red:        #e03030;
  --red-bright: #ff4444;
  --red-dim:    rgba(224, 48, 48, 0.12);
  --gold:       #d4a843;
  --gold-light: #f0c060;
  --gold-dim:   rgba(212, 168, 67, 0.1);

  /* Backgrounds */
  --dark:   #07090f;
  --dark-2: #0d0f1a;
  --dark-3: #141622;
  --dark-4: #1b1e2e;

  /* Borders */
  --border:     rgba(255, 255, 255, 0.06);
  --border-red: rgba(224, 48, 48, 0.25);

  /* Text */
  --text:       #dde3f0;
  --text-muted: #6b7290;

  /* States */
  --green:  #3ecf6e;
  --blue:   #4a8fdf;
  --purple: #8055dd;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.accent { color: var(--red); }
.accent-gold { color: var(--gold); }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===================== NAV ===================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(7, 9, 15, 0.82);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease), border-color 0.3s;
}

#navbar.scrolled {
  background: rgba(7, 9, 15, 0.97);
  border-bottom-color: var(--border-red);
}

/* Ligne rouge décorative en haut */
#navbar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 30%, var(--red-bright) 50%, var(--red) 70%, transparent 100%);
  opacity: 0.7;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  color: var(--text);
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 0 6px rgba(224, 48, 48, 0.7));
}

.logo-em { color: var(--red); }

.nav-links {
  display: flex; gap: 36px; list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 1px; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0; height: 1px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }

.admin-link {
  color: var(--gold) !important;
  border: 1px solid rgba(212, 168, 67, 0.25);
  padding: 4px 14px; border-radius: var(--radius-sm);
}

.admin-link::after { display: none !important; }

.btn-nav {
  background: var(--red);
  color: white;
  padding: 10px 22px; border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(224, 48, 48, 0.3);
}

.btn-nav:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(224, 48, 48, 0.5);
}

.hamburger {
  display: none; background: none; border: none;
  color: var(--text); font-size: 1.5rem; cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(224, 48, 48, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 80%, rgba(212, 168, 67, 0.04) 0%, transparent 60%),
    linear-gradient(180deg, #0d0f1a 0%, #07090f 60%, #0d0f1a 100%);
}

/* Grille de fond style tactique */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(224, 48, 48, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 48, 48, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 80%);
}

.overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 40%, rgba(224, 48, 48, 0.05) 0%, transparent 70%);
}

.particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; width: 2px; height: 2px;
  border-radius: 50%; animation: floatParticle linear infinite; opacity: 0;
}
.particle:nth-child(odd) { background: var(--red); }
.particle:nth-child(even) { background: var(--gold); }

@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 10;
  text-align: center; padding: 130px 24px 60px;
  max-width: 960px; width: 100%;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-dim);
  border: 1px solid var(--border-red);
  color: var(--red-bright); padding: 7px 18px; border-radius: 100px;
  font-family: var(--font-heading); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideDown 0.6s var(--ease) both;
}

.hero-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red-bright);
  animation: pulse-red 2s ease infinite;
}

@keyframes pulse-red {
  0%,100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(255, 68, 68, 0); }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  animation: fadeSlideDown 0.7s var(--ease) both 0.1s;
}

.title-pre {
  display: block; font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 10px; color: var(--text-muted);
  margin-bottom: 10px; font-family: var(--font-heading);
  font-weight: 600;
}

.title-main {
  display: block; font-size: clamp(4.5rem, 13vw, 10rem);
  letter-spacing: 6px;
  background: linear-gradient(135deg, #b02020 0%, #e03030 30%, #ff6060 55%, #e03030 80%, #8a1010 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 60px rgba(224, 48, 48, 0.4));
}

.title-sub {
  display: block; font-size: clamp(2rem, 6vw, 4.5rem);
  letter-spacing: 8px; color: var(--text);
  opacity: 0.85; margin-top: -8px;
}

.hero-sub {
  margin-top: 28px; color: var(--text-muted);
  font-size: 1.05rem; max-width: 600px; margin-inline: auto;
  line-height: 1.75;
  animation: fadeSlideDown 0.7s var(--ease) both 0.2s;
}

.hero-stats {
  display: flex; justify-content: center; gap: 0;
  margin: 44px 0;
  animation: fadeSlideDown 0.7s var(--ease) both 0.3s;
}

.stat-item {
  text-align: center; padding: 0 36px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, var(--border-red), transparent);
}

.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 3rem; color: var(--red-bright); letter-spacing: 2px;
  filter: drop-shadow(0 0 12px rgba(224, 48, 48, 0.4));
}

.stat-label {
  font-size: 0.72rem; color: var(--text-muted);
  letter-spacing: 2px; text-transform: uppercase;
  font-family: var(--font-heading); font-weight: 600;
  margin-top: 4px;
}

.hero-btns {
  display: flex; gap: 14px; justify-content: center;
  animation: fadeSlideDown 0.7s var(--ease) both 0.4s;
}

.btn-primary {
  display: flex; align-items: center; gap: 10px;
  background: #5865F2; color: white;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.5px;
  transition: all 0.2s var(--ease);
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
}

.btn-primary:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.5);
}

.btn-secondary {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--border-red); color: var(--red);
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700; font-size: 0.95rem;
  transition: all 0.2s var(--ease);
  background: var(--red-dim);
}

.btn-secondary:hover {
  background: rgba(224, 48, 48, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 48, 48, 0.2);
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  text-align: center; color: var(--text-muted); font-size: 0.7rem;
  letter-spacing: 3px; text-transform: uppercase;
  font-family: var(--font-heading);
  animation: bounce 2.5s ease infinite;
}

.scroll-arrow {
  width: 18px; height: 18px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); margin: 8px auto 0;
}

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(7px); }
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== STATUS BAR ===================== */
.status-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--border-red);
  border-bottom: 1px solid var(--border);
  padding: 11px 0; overflow: hidden;
}

.status-inner {
  display: flex; align-items: center; gap: 20px;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.5px;
  color: var(--text-muted); flex-wrap: wrap; padding: 0 20px;
}

.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.status-dot.online { animation: pulse-green 2s ease infinite; }

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(62, 207, 110, 0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(62, 207, 110, 0); }
}

.sep { color: rgba(255,255,255,0.1); }

/* ===================== SECTIONS ===================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: var(--font-heading); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}

.section-label::before {
  content: '';
  display: block; width: 24px; height: 2px; background: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 16px; letter-spacing: 1px; line-height: 0.95;
}

.section-sub {
  color: var(--text-muted); max-width: 560px; line-height: 1.75;
  margin-bottom: 52px; font-size: 1rem;
}

/* ===================== ABOUT ===================== */
.about {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(224, 48, 48, 0.04) 0%, transparent 70%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-red), transparent);
}

.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 52px;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px;
  transition: all 0.35s var(--ease);
  position: relative; overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(224, 48, 48, 0.05) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.35s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-red);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px var(--border-red);
}

.feature-card:hover::after { opacity: 1; }

/* Ligne top animée */
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0; transition: opacity 0.35s;
}

.feature-card:hover::before { opacity: 1; }

.feature-card.featured {
  background: linear-gradient(145deg, var(--dark-3), rgba(224, 48, 48, 0.05));
  border-color: var(--border-red);
}

.feature-card.featured::before { opacity: 0.6; }

.feature-icon {
  font-size: 2.2rem; margin-bottom: 18px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.feature-card h3 {
  font-family: var(--font-heading); font-size: 1.15rem;
  font-weight: 700; margin-bottom: 10px; letter-spacing: 0.5px;
}

.feature-card p { color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }

/* ===================== RULES ===================== */
.rules {
  padding: 110px 0;
  background: var(--dark-2);
  position: relative;
}

.rules::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.rules-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px; margin-top: 52px;
}

.rule-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 28px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}

.rule-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--red); opacity: 0;
  transition: opacity 0.3s;
}

.rule-item:hover { border-color: var(--border-red); }
.rule-item:hover::before { opacity: 1; }

.rule-num {
  font-family: var(--font-display); font-size: 2.2rem;
  color: rgba(224, 48, 48, 0.18); line-height: 1; min-width: 48px;
  transition: color 0.3s;
}

.rule-item:hover .rule-num { color: rgba(224, 48, 48, 0.35); }

.rule-content h4 {
  font-family: var(--font-heading); font-weight: 700;
  margin-bottom: 8px; font-size: 1rem; letter-spacing: 0.3px;
}

.rule-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; }

/* ===================== TICKET ===================== */
.ticket-section { padding: 110px 0; background: var(--dark); }

.ticket-wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 48px; align-items: start; margin-top: 52px;
}

.ticket-info h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  margin-bottom: 18px; color: var(--text);
}

.ticket-info ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.ticket-info ul li {
  color: var(--text-muted); font-size: 0.9rem;
  padding: 10px 14px; background: var(--dark-3);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  line-height: 1.5;
}

.ticket-types { margin-top: 32px; }
.ticket-types h4 {
  font-family: var(--font-heading); font-weight: 600;
  margin-bottom: 14px; font-size: 0.88rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}

.type-badges { display: flex; flex-wrap: wrap; gap: 8px; }

.badge {
  padding: 6px 13px; border-radius: var(--radius-sm);
  font-size: 0.78rem; font-weight: 700;
  font-family: var(--font-heading); letter-spacing: 0.5px;
  transition: transform 0.2s;
}
.badge:hover { transform: translateY(-1px); }
.badge.red    { background: rgba(224, 48, 48, 0.12); color: #ff5555; border: 1px solid rgba(224,48,48,0.2); }
.badge.blue   { background: rgba(74,143,223,0.12);  color: #6aaff0; border: 1px solid rgba(74,143,223,0.2); }
.badge.green  { background: rgba(62,207,110,0.12);  color: #5de88c; border: 1px solid rgba(62,207,110,0.2); }
.badge.yellow { background: rgba(224,180,85,0.12);  color: #f0c060; border: 1px solid rgba(224,180,85,0.2); }
.badge.purple { background: rgba(136,85,221,0.12);  color: #aa77ff; border: 1px solid rgba(136,85,221,0.2); }
.badge.gray   { background: rgba(150,150,170,0.10); color: #9696aa; border: 1px solid rgba(150,150,170,0.15); }

/* Form card */
.ticket-form-card {
  background: var(--dark-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  position: relative; overflow: hidden;
}

.ticket-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  font-family: var(--font-heading); letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--dark-4);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 16px; color: var(--text);
  font-family: var(--font-body); font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(224, 48, 48, 0.5);
  box-shadow: 0 0 0 3px rgba(224, 48, 48, 0.08);
}

.form-group textarea { resize: vertical; }
.form-group select option { background: var(--dark-3); }

.btn-submit {
  width: 100%; background: var(--red); color: white;
  border: none; border-radius: var(--radius-sm); padding: 16px;
  font-family: var(--font-heading); font-size: 1rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s var(--ease);
  box-shadow: 0 4px 20px rgba(224, 48, 48, 0.3);
}

.btn-submit:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(224, 48, 48, 0.5);
}

.btn-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.ticket-success { text-align: center; padding: 20px; }
.success-icon { font-size: 4rem; margin-bottom: 16px; }
.ticket-success h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--green); font-family: var(--font-heading); }
.ticket-success p { color: var(--text-muted); margin-bottom: 8px; }
.ticket-id { font-size: 0.85rem; }

.btn-discord {
  display: inline-block; margin-top: 20px;
  background: #5865F2; color: white; text-decoration: none;
  padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 700;
  font-family: var(--font-heading); letter-spacing: 0.5px;
  transition: all 0.2s;
}

.btn-discord:hover { background: #4752c4; transform: translateY(-1px); }
.hidden { display: none !important; }

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-red);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-display); font-size: 1.8rem;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
  letter-spacing: 2px;
}

.footer-brand p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 22px;
}

.social-links { display: flex; gap: 12px; }

.social-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px; border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.social-links a:hover {
  color: var(--red); border-color: var(--border-red);
  background: var(--red-dim);
}

.footer-links h4 {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
  color: var(--text);
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.87rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }

.footer-contact h4 {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px;
}

.footer-contact p { color: var(--text-muted); font-size: 0.87rem; margin-bottom: 10px; }

.footer-bottom {
  margin-top: 48px; border-top: 1px solid var(--border);
  padding: 20px 0; text-align: center;
  color: var(--text-muted); font-size: 0.8rem;
  font-family: var(--font-heading); letter-spacing: 0.5px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: block; }
  #navbar { padding: 0 24px; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .stat-item { padding: 0 20px; }
  .ticket-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 24px; }
}

@media (max-width: 600px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .rules-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; flex-direction: column; }
  .stat-item + .stat-item::before { display: none; }
}
