:root {
  --gold: #F5C518;
  --gold-dark: #C49A0E;
  --green: #7DC740;
  --green-dark: #5A9A2E;
  --black: #0A0A08;
  --dark: #111110;
  --dark-mid: #1A1A18;
  --smoke: #2A2A28;
  --cream: #F0EBD8;
  --white: #FFFFFF;
  --fire: #FF5500;
  --rust: #C44B00;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
  cursor: default;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2.5rem;
  background: linear-gradient(to bottom, rgba(10,10,8,0.97), transparent);
  border-bottom: 1px solid rgba(245,197,24,0.15);
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-brand span { color: var(--green); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.45rem 1.2rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green) !important; color: var(--black) !important; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

/* Ground / dirt layer */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, #1a1208 0%, #2a2010 40%, transparent 100%);
  z-index: 0;
}

/* Sky glow */
.hero-glow-gold {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.18) 0%, transparent 65%);
  animation: pulseGlow 4s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-glow-green {
  position: absolute;
  bottom: 5%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125,199,64,0.12) 0%, transparent 65%);
  animation: pulseGlow 5s ease-in-out 1s infinite alternate;
  pointer-events: none;
}

@keyframes pulseGlow {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Smoke particles */
.smoke-container {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.smoke-puff {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,60,55,0.5) 0%, transparent 70%);
  animation: smokeRise linear infinite;
  opacity: 0;
}

.smoke-puff:nth-child(1) { width: 120px; height: 120px; left: 55%; animation-duration: 8s; animation-delay: 0s; }
.smoke-puff:nth-child(2) { width: 90px; height: 90px; left: 58%; animation-duration: 10s; animation-delay: 2s; }
.smoke-puff:nth-child(3) { width: 150px; height: 150px; left: 62%; animation-duration: 12s; animation-delay: 4s; }
.smoke-puff:nth-child(4) { width: 80px; height: 80px; left: 52%; animation-duration: 9s; animation-delay: 1s; }
.smoke-puff:nth-child(5) { width: 200px; height: 200px; left: 65%; animation-duration: 14s; animation-delay: 3s; }

@keyframes smokeRise {
  0%   { bottom: 30%; opacity: 0; transform: scale(0.5) translateX(0); }
  20%  { opacity: 0.7; }
  80%  { opacity: 0.3; }
  100% { bottom: 110%; opacity: 0; transform: scale(2.5) translateX(-40px); }
}

/* Tire tracks */
.tire-tracks {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 18px,
    rgba(125,199,64,0.12) 18px,
    rgba(125,199,64,0.12) 22px
  );
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  animation: heroFadeIn 1s ease-out both;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: min(380px, 80vw);
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 40px rgba(245,197,24,0.3)) drop-shadow(0 0 80px rgba(245,197,24,0.15));
  animation: logoBounce 0.8s cubic-bezier(0.34,1.56,0.64,1) 0.3s both;
}

@keyframes logoBounce {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--green);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(125,199,64,0.5);
  margin-bottom: 0.5rem;
  animation: heroFadeIn 1s ease-out 0.5s both;
}

.hero-date-location {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.2rem 0;
  animation: heroFadeIn 1s ease-out 0.7s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.3);
  padding: 0.5rem 1.2rem;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-badge svg { flex-shrink: 0; }

/* ─── COUNTDOWN ─── */
.countdown-wrapper {
  margin: 2rem 0;
  animation: heroFadeIn 1s ease-out 0.9s both;
}

.countdown-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--white);
  background: linear-gradient(to bottom, var(--dark-mid) 0%, var(--smoke) 100%);
  border: 1px solid rgba(245,197,24,0.25);
  border-top: 2px solid var(--gold);
  padding: 0.3rem 1rem;
  min-width: 90px;
  text-align: center;
  position: relative;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
  text-shadow: 0 0 30px rgba(245,197,24,0.4);
  transition: color 0.3s;
}

.countdown-number::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(245,197,24,0.15);
}

.countdown-unit-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,235,216,0.5);
  margin-top: 0.4rem;
}

.countdown-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1.2;
  opacity: 0.6;
  animation: blink 1s step-end infinite;
  align-self: flex-start;
  margin-top: 0.2rem;
}

@keyframes blink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0; }
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
  animation: heroFadeIn 1s ease-out 1.1s both;
}

.btn-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, #E5B000 100%);
  padding: 0.8rem 2.5rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(125,199,64,0.4);
}

.btn-outline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--gold);
  background: transparent;
  border: 2px solid var(--gold);
  padding: 0.7rem 2rem;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(245,197,24,0.1);
  transform: translateY(-2px);
}

/* ─── SECTION BASICS ─── */
section { position: relative; overflow: hidden; }

.diagonal-top::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 80px;
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
}

.section-title .accent { color: var(--gold); }
.section-title .accent-green { color: var(--green); }

.section-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  color: rgba(240,235,216,0.65);
  max-width: 600px;
  line-height: 1.6;
  margin-top: 1rem;
}

/* ─── DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245,197,24,0.4), transparent);
}

.divider-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon::after {
  content: '\2605';
  font-size: 10px;
  color: var(--gold);
  transform: rotate(-45deg);
  display: block;
}

/* ─── ABOUT ─── */
.about {
  background: var(--dark);
  padding: 6rem 2rem;
  border-top: 2px solid rgba(125,199,64,0.2);
  border-bottom: 2px solid rgba(125,199,64,0.2);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  background: var(--dark-mid);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 60px; height: 60px;
  background: radial-gradient(circle at bottom right, rgba(245,197,24,0.08), transparent 70%);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(240,235,216,0.5);
  margin-top: 0.2rem;
}

.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 4/3;
  background: var(--dark-mid);
  border: 2px solid rgba(245,197,24,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(245,197,24,0.05) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 60%, rgba(10,10,8,0.8) 100%);
}

/* Checkered flag pattern */
.checkers {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--gold) 0px, var(--gold) 14px,
    var(--black) 14px, var(--black) 28px
  );
}

.img-placeholder-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: rgba(245,197,24,0.3);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.about-img-frame .big-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.corner-bracket {
  position: absolute;
  width: 20px; height: 20px;
  border-color: var(--gold);
  border-style: solid;
  border-width: 0;
}

.corner-bracket.tl { top: 10px; left: 10px; border-top-width: 2px; border-left-width: 2px; }
.corner-bracket.tr { top: 10px; right: 10px; border-top-width: 2px; border-right-width: 2px; }
.corner-bracket.bl { bottom: 10px; left: 10px; border-bottom-width: 2px; border-left-width: 2px; }
.corner-bracket.br { bottom: 10px; right: 10px; border-bottom-width: 2px; border-right-width: 2px; }

/* ─── HIGHLIGHTS ─── */
.highlights {
  background: var(--black);
  padding: 6rem 2rem;
}

.highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.highlights-header {
  text-align: center;
  margin-bottom: 4rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.highlight-card {
  background: var(--dark);
  border: 1px solid rgba(245,197,24,0.1);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--green);
  border-color: rgba(125,199,64,0.3);
}

.highlight-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 100%; height: 100%;
  background: radial-gradient(circle at bottom right, rgba(245,197,24,0.04) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.3s;
}

.highlight-card:hover::after {
  background: radial-gradient(circle at bottom right, rgba(125,199,64,0.06) 0%, transparent 60%);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.9rem;
  color: rgba(240,235,216,0.6);
  line-height: 1.6;
}

/* ─── SCHEDULE ─── */
.schedule {
  background: var(--dark);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(125,199,64,0.15);
}

.schedule-inner {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-header { text-align: center; margin-bottom: 3rem; }

.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--green), var(--gold));
}

.timeline-item {
  position: relative;
  padding: 1.2rem 1.5rem 1.2rem 2rem;
  margin-bottom: 0.5rem;
  background: var(--dark-mid);
  border-right: 1px solid rgba(245,197,24,0.08);
  transition: background 0.2s;
}

.timeline-item:hover { background: var(--smoke); }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  background: var(--gold);
  border: 2px solid var(--black);
  transform: translateY(-50%) rotate(45deg);
}

.timeline-time {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  min-width: 120px;
  display: inline-block;
}

.timeline-event {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-note {
  font-size: 0.85rem;
  color: rgba(240,235,216,0.45);
  margin-top: 0.2rem;
}

.timeline-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ─── LOCATION ─── */
.location {
  background: var(--black);
  padding: 6rem 2rem;
}

.location-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.map-placeholder {
  aspect-ratio: 4/3;
  background: var(--dark-mid);
  border: 1px solid rgba(245,197,24,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(245,197,24,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,197,24,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.map-placeholder .venue-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  z-index: 2;
}

.map-pin-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  color: rgba(245,197,24,0.4);
  letter-spacing: 0.2em;
  text-align: center;
  padding: 1rem;
  z-index: 1;
}

.map-icon {
  font-size: 3.5rem;
  opacity: 0.3;
  z-index: 1;
  margin-bottom: 0.5rem;
  animation: mapBounce 2s ease-in-out infinite;
}

@keyframes mapBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.location-details { padding-top: 0.5rem; }

.location-address {
  background: var(--dark);
  border-left: 3px solid var(--green);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.location-address strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}

.location-address span {
  font-size: 0.9rem;
  color: rgba(240,235,216,0.55);
}

.info-list {
  list-style: none;
  margin-top: 1.5rem;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(245,197,24,0.08);
  font-size: 0.95rem;
  color: rgba(240,235,216,0.7);
}

.info-list li:last-child { border-bottom: none; }

.info-bullet {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── TICKETS ─── */
.tickets {
  padding: 6rem 2rem;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.tickets::before {
  content: 'POWER';
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30vw;
  color: rgba(245,197,24,0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.tickets-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tickets-header { text-align: center; margin-bottom: 3rem; }

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ticket-card {
  background: var(--dark-mid);
  border: 1px solid rgba(245,197,24,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}

.ticket-card:hover { transform: translateY(-6px); }

.ticket-card.featured {
  border: 2px solid var(--gold);
  background: linear-gradient(to bottom, rgba(245,197,24,0.07), var(--dark-mid));
}

.ticket-featured-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 0.2rem 1.2rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  white-space: nowrap;
}

.ticket-tier {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.ticket-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.ticket-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin: 1rem 0;
}

.ticket-price sup {
  font-size: 1.5rem;
  vertical-align: top;
  margin-top: 0.6rem;
  display: inline-block;
}

.ticket-perks {
  list-style: none;
  text-align: left;
  margin: 1.5rem 0;
  flex: 1;
}

.ticket-perks li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: rgba(240,235,216,0.65);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  border-bottom: 1px solid rgba(245,197,24,0.06);
}

.ticket-perks li:last-child { border-bottom: none; }
.ticket-perks li::before { content: '\2713'; color: var(--green); flex-shrink: 0; font-weight: bold; }

.ticket-btn {
  margin-top: auto;
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.75rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  width: 100%;
}

.ticket-btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(245,197,24,0.3);
}

.ticket-btn-ghost:hover {
  background: rgba(245,197,24,0.08);
  border-color: var(--gold);
}

.ticket-btn-solid {
  background: var(--gold);
  color: var(--black);
}

.ticket-btn-solid:hover {
  background: var(--green);
}

/* ─── SPONSORS ─── */
.sponsors {
  background: var(--black);
  padding: 5rem 2rem;
  border-top: 1px solid rgba(245,197,24,0.1);
}

.sponsors-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.sponsors-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.sponsors-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(240,235,216,0.35);
  margin-bottom: 3rem;
}

.sponsor-tier-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,197,24,0.4);
  margin-bottom: 1rem;
  position: relative;
}

.sponsor-tier-label::before,
.sponsor-tier-label::after {
  content: '\2500\2500\2500';
  margin: 0 0.8rem;
  opacity: 0.3;
}

.sponsor-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

.sponsor-slot {
  background: var(--dark);
  border: 1px dashed rgba(245,197,24,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  position: relative;
}

.sponsor-slot:hover { border-color: rgba(245,197,24,0.4); }

.sponsor-slot.large  { width: 220px; height: 80px; font-size: 0.75rem; }
.sponsor-slot.medium { width: 160px; height: 60px; font-size: 0.7rem; }
.sponsor-slot.small  { width: 120px; height: 50px; font-size: 0.65rem; }

.sponsor-slot span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,197,24,0.25);
}

.sponsor-cta {
  margin-top: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: rgba(240,235,216,0.45);
}

.sponsor-cta a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 2px solid rgba(125,199,64,0.25);
  padding: 3rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand span { color: var(--green); }

.footer-desc {
  font-size: 0.88rem;
  color: rgba(240,235,216,0.4);
  line-height: 1.6;
  max-width: 300px;
  margin-top: 0.5rem;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.9rem;
  color: rgba(240,235,216,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245,197,24,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(240,235,216,0.25);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px; height: 36px;
  background: var(--smoke);
  border: 1px solid rgba(245,197,24,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(240,235,216,0.5);
  transition: all 0.2s;
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}

.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 0.75rem 1.2rem; }
  .nav-links { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .highlights-grid { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .countdown-sep { display: none; }
  .countdown { gap: 0.5rem; }
  .countdown-number { min-width: 70px; }
}

/* ─── SCROLL BAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* ─── MARQUEE STRIP ─── */
.marquee-strip {
  background: var(--gold);
  padding: 0.5rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--black);
  margin: 0 2rem;
}

.marquee-item.dot::after { content: ' \2605 '; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
