/* ═══════════════════════════════════════════
   ESQUADRÃO MAV — main.css
   Black + electric cyan palette
═══════════════════════════════════════════ */

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

:root {
  --bg:        #050709;
  --bg2:       #080c10;
  --bg3:       #0b1018;
  --card:      #0d1520;
  --cyan:      #00d4ff;
  --cyan-dim:  rgba(0,212,255,0.12);
  --cyan-glow: rgba(0,212,255,0.06);
  --blue:      #0066bb;
  --white:     #e8f4ff;
  --muted:     #4a6680;
  --border:    rgba(0,212,255,0.15);
  --grad:      linear-gradient(135deg, #00d4ff 0%, #0066bb 100%);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Exo 2', sans-serif;
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(5,7,9,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-logo-link { text-decoration: none; display: flex; align-items: center; }
.nav-logo-img {
  height: 36px; width: auto; display: block;
  filter: drop-shadow(0 0 8px rgba(0,212,255,0.4));
}
.nav-logo-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(232,244,255,0.5); text-decoration: none;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cyan); }
.nav-cta {
  background: transparent; border: 1px solid var(--cyan);
  color: var(--cyan); padding: 0.5rem 1.3rem; border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--cyan-dim); box-shadow: 0 0 20px rgba(0,212,255,0.2); }
.nav-burger {
  display: none; background: none; border: none;
  color: var(--white); font-size: 1.4rem; cursor: pointer;
}
.nav-mobile {
  display: none; flex-direction: column;
  position: fixed; top: 62px; left: 0; right: 0; z-index: 99;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: rgba(232,244,255,0.7); text-decoration: none;
  padding: 0.85rem 0; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--cyan); }
.nav-mobile .mobile-cta {
  margin-top: 0.75rem; border: none;
  background: var(--cyan-dim); color: var(--cyan);
  border: 1px solid var(--cyan);
  border-radius: 3px; text-align: center;
  font-family: 'Rajdhani', sans-serif; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.85rem;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; padding: 0 8%;
  background: var(--bg); position: relative; overflow: hidden;
}
#hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,212,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px; pointer-events: none;
}
.hero-glow {
  position: absolute; top: -120px; right: -80px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,80,180,0.2) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -180px; left: 22%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-diag {
  position: absolute; top: 0; left: 44%;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,212,255,0.18), transparent);
  transform: skewX(-12deg); pointer-events: none;
}
.hero-content { position: relative; z-index: 2; padding: 8rem 0 5rem; }

.live-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.28);
  color: var(--cyan); padding: 0.35rem 1rem; border-radius: 2px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.6s ease both;
}
.live-badge.offline { color: var(--muted); border-color: rgba(74,102,128,0.25); background: transparent; }
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan);
  animation: pulseDot 1.5s ease-in-out infinite;
}
.live-badge.offline .live-dot { background: var(--muted); animation: none; box-shadow: none; }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.3;transform:scale(0.6)} }

.hero-eyebrow {
  font-family: 'Rajdhani', sans-serif; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 0.4rem; animation: fadeUp 0.6s 0.05s ease both;
}
h1 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 700; line-height: 0.95;
  text-transform: uppercase; letter-spacing: 0.03em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub {
  margin-top: 1.4rem; color: var(--muted); font-size: 1rem; line-height: 1.75;
  max-width: 460px; animation: fadeUp 0.6s 0.18s ease both;
}
.hero-actions {
  margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.25s ease both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad); color: var(--bg);
  padding: 0.85rem 2rem; border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 4px 24px rgba(0,212,255,0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,212,255,0.38); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(0,212,255,0.3); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 3px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--cyan); background: var(--cyan-glow); }

.hero-stats {
  margin-top: 3.5rem; display: flex; gap: 3rem;
  animation: fadeUp 0.6s 0.32s ease both;
}
.stat-num {
  font-family: 'Rajdhani', sans-serif; font-size: 2rem; font-weight: 700;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
}
.stat-label { color: var(--muted); font-size: 0.75rem; margin-top: 0.1rem; }

/* Hero art / logo */
.hero-art {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding-top: 7rem; animation: fadeIn 1s 0.1s ease both;
}
.logo-wrap {
  width: 340px; height: 340px; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.18);
  background: radial-gradient(circle, rgba(0,80,187,0.14) 0%, transparent 70%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.logo-wrap::before {
  content: ''; position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.07);
}
.logo-wrap::after {
  content: ''; position: absolute; inset: -28px; border-radius: 50%;
  border: 1px dashed rgba(0,212,255,0.05);
  animation: spin 25s linear infinite;
}
.hero-logo-img {
  width: 260px; height: 260px; object-fit: contain;
  filter: drop-shadow(0 0 32px rgba(0,212,255,0.45));
  animation: floatLogo 4s ease-in-out infinite;
}
@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
.logo-inner { text-align: center; }
.logo-icon { font-size: 5rem; display: block; filter: drop-shadow(0 0 28px rgba(0,212,255,0.5)); }
.logo-sub {
  font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: rgba(0,212,255,0.35); margin-top: 0.5rem;
}
.orbit-ring {
  position: absolute; inset: -42px; border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.1);
  animation: spin 18s linear infinite;
}
.orbit-dot {
  position: absolute; top: 0; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan);
  transform: translate(-50%, -50%);
}
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* ── RIBBON ── */
.ribbon {
  background: var(--bg3); padding: 0.8rem 0; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ribbon-track { display: inline-flex; gap: 3rem; animation: scrollL 22s linear infinite; }
.ribbon-item {
  font-family: 'Rajdhani', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 0.7rem;
}
.ribbon-item::before { content: '◈'; color: var(--cyan); font-size: 0.6rem; }
@keyframes scrollL { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SHARED SECTION STYLES ── */
.section-label {
  font-family: 'Rajdhani', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); margin-bottom: 0.75rem;
}
h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.05; letter-spacing: 0.04em;
}
h2 em { font-style: italic; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-sub { margin-top: 0.75rem; color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { max-width: 480px; margin-left: auto; margin-right: auto; }

/* ── LIVE ── */
#live { padding: 6rem 8%; background: var(--bg2); }
.player-wrap { max-width: 920px; margin: 0 auto; }
.player-container {
  width: 100%; aspect-ratio: 16/9; background: var(--card);
  border: 1px solid var(--border); border-radius: 4px; overflow: hidden;
  position: relative; box-shadow: 0 0 60px rgba(0,212,255,0.04);
}
#liveIframe { width: 100%; height: 100%; display: block; }
.player-offline {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 2rem;
  background: radial-gradient(circle at 50%, rgba(0,80,187,0.07) 0%, transparent 60%);
}
.offline-icon { font-size: 3.5rem; margin-bottom: 1rem; filter: drop-shadow(0 0 14px rgba(0,212,255,0.3)); }
.player-offline h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem;
}
.player-offline p { color: var(--muted); font-size: 0.9rem; max-width: 360px; line-height: 1.6; }
.offline-btns { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; justify-content: center; }
.platform-tabs { display: flex; gap: 0.5rem; margin-top: 0.75rem; }
.platform-tab {
  flex: 1; padding: 0.6rem 1rem; background: var(--card);
  border: 1px solid rgba(255,255,255,0.06); color: var(--muted);
  border-radius: 3px; font-family: 'Rajdhani', sans-serif;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: all 0.2s;
}
.platform-tab:hover { border-color: var(--cyan); color: var(--white); }
.platform-tab.active { border-color: var(--cyan); background: var(--cyan-dim); color: var(--cyan); }

/* ── ABOUT ── */
#about {
  padding: 6rem 8%; background: var(--bg);
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: center;
}
.about-visual { position: relative; }
.about-photo-wrap {
  width: 100%; position: relative; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo-top-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); z-index: 1;
}
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top center; display: block;
}
.about-frame {
  width: 100%; aspect-ratio: 3/4; background: var(--card);
  border: 1px solid var(--border); border-radius: 4px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
  color: var(--muted); font-size: 0.85rem; overflow: hidden; position: relative;
}
.about-frame::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
}
.about-frame span:first-child { font-size: 3.5rem; filter: drop-shadow(0 0 18px rgba(0,212,255,0.4)); }
.about-badge {
  position: absolute; bottom: -14px; right: -14px; z-index: 2;
  background: var(--grad); padding: 0.8rem 1.2rem; border-radius: 3px;
}
.ab-name {
  display: block; font-family: 'Rajdhani', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--bg); text-transform: uppercase; letter-spacing: 0.08em;
}
.ab-city { display: block; font-size: 0.7rem; color: rgba(5,7,9,0.65); }
.about-text { padding-bottom: 2rem; }
.about-bio { margin-top: 1rem; color: var(--muted); line-height: 1.8; font-size: 0.97rem; }
.platform-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.pill {
  padding: 0.4rem 1rem; border-radius: 3px;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: opacity 0.2s;
}
.pill:hover { opacity: 0.8; }
.pill-twitch { background: rgba(145,71,255,0.12); color: #9147ff; border: 1px solid rgba(145,71,255,0.3); }
.pill-kick   { background: rgba(83,252,24,0.07); color: #53fc18; border: 1px solid rgba(83,252,24,0.2); }
.pill-tiktok { background: rgba(232,244,255,0.04); color: var(--white); border: 1px solid rgba(232,244,255,0.1); }
.pill-yt     { background: rgba(255,0,0,0.07); color: #ff5555; border: 1px solid rgba(255,0,0,0.2); }

/* ── SCHEDULE ── */
#schedule { padding: 6rem 8%; background: var(--bg2); }
.schedule-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.5rem; margin-top: 0.5rem; }
.sday {
  background: var(--card); border: 1px solid rgba(255,255,255,0.04);
  border-radius: 4px; padding: 1.2rem 0.5rem; text-align: center;
}
.sday.on { border-color: rgba(0,212,255,0.28); background: rgba(0,212,255,0.04); }
.sday-short {
  font-family: 'Rajdhani', sans-serif; font-size: 1.1rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.sday-full { font-size: 0.63rem; color: var(--muted); margin: 0.15rem 0; }
.sday-time {
  font-family: 'Rajdhani', sans-serif; font-size: 1.4rem;
  font-weight: 700; margin: 0.4rem 0 0.3rem;
}
.sday.on .sday-time { color: var(--cyan); }
.sday:not(.on) .sday-time { color: var(--muted); }
.sday-status {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.2rem 0.4rem; border-radius: 2px; display: inline-block;
}
.sday.on .sday-status { background: rgba(0,212,255,0.1); color: var(--cyan); }
.sday:not(.on) .sday-status { background: rgba(255,255,255,0.03); color: var(--muted); }
.schedule-note { text-align: center; margin-top: 1.5rem; color: var(--muted); font-size: 0.82rem; }
.schedule-note a { color: var(--cyan); text-decoration: none; }

/* ── LINKS ── */
#links { padding: 6rem 8%; background: var(--bg); }
.links-group { margin-bottom: 2.5rem; }
.links-group-title {
  font-family: 'Rajdhani', sans-serif; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.75rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.links-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0.5rem; }
.link-card {
  display: flex; align-items: center; gap: 0.8rem;
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 3px; padding: 0.85rem 1rem;
  text-decoration: none; color: var(--white); font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.link-card:hover { border-color: var(--cyan); background: var(--cyan-glow); transform: translateX(4px); }
.link-card.hi { border-color: rgba(0,212,255,0.22); background: rgba(0,212,255,0.04); }
.link-icon { font-size: 1.1rem; flex-shrink: 0; }
.link-label { flex: 1; font-weight: 500; }
.link-arrow { color: var(--muted); font-size: 0.8rem; }
.link-card:hover .link-arrow { color: var(--cyan); }

/* ── CONTACT ── */
#contact { padding: 6rem 8%; background: var(--bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; align-items: start; max-width: 980px; margin: 0 auto;
}
.contact-info p { color: var(--muted); line-height: 1.75; margin: 1rem 0 1.5rem; font-size: 0.97rem; }
.contact-email {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--cyan); font-weight: 600; font-size: 0.95rem; text-decoration: none;
}
.contact-email:hover { text-decoration: underline; }
.contact-socials { display: flex; gap: 1rem; margin-top: 1.5rem; font-size: 1.4rem; }
.contact-socials a { text-decoration: none; transition: transform 0.2s, filter 0.2s; }
.contact-socials a:hover { transform: scale(1.2); filter: drop-shadow(0 0 8px rgba(0,212,255,0.5)); }
.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 4px; padding: 2rem; position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad);
}
.contact-form h3 {
  font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.5rem;
  color: var(--white);
}
.fg { margin-bottom: 1rem; }
.fg label {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.4rem;
}
.fg input, .fg textarea, .fg select {
  width: 100%; padding: 0.72rem 0.9rem;
  background: var(--bg3); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 3px; color: var(--white);
  font-family: 'Exo 2', sans-serif; font-size: 0.9rem;
  transition: border-color 0.2s; outline: none;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(0,212,255,0.08);
}
.fg textarea { resize: vertical; min-height: 100px; }
.fg select option { background: var(--bg3); }
.form-submit {
  width: 100%; padding: 0.85rem; background: var(--grad); color: var(--bg);
  border: none; border-radius: 3px;
  font-family: 'Rajdhani', sans-serif; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; margin-top: 0.25rem;
  transition: box-shadow 0.2s, transform 0.15s;
}
.form-submit:hover { box-shadow: 0 0 24px rgba(0,212,255,0.3); transform: translateY(-1px); }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2rem 8%; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-logo {
  font-family: 'Rajdhani', sans-serif; font-size: 1.3rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
footer p { color: var(--muted); font-size: 0.8rem; }
footer p a { color: var(--muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: var(--muted); text-decoration: none; font-size: 0.78rem;
  font-family: 'Rajdhani', sans-serif; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s;
}
.footer-links a:hover { color: var(--cyan); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .hero-content { padding: 7rem 0 5rem; }
  #about { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: block; }
  .schedule-grid { grid-template-columns: repeat(4,1fr); }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .schedule-grid { grid-template-columns: repeat(2,1fr); }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  #live,#about,#schedule,#links,#contact { padding: 4rem 5%; }
  #hero { padding: 0 5%; }
}
