:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --accent: #e91e8c;
  --accent-light: #ff4db8;
  --text: #ffffff;
  --text-muted: #888888;
  --border: #222222;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
}

.btn-cta {
  display: inline-block;
  background: var(--accent);
  color: var(--text);
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cta:hover {
  background: var(--accent-light);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #1a0a14 100%);
}

.hero--image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)), var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--image .hero-slide h1,
.hero--image .hero-subtitle {
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.hero-slider {
  text-align: center;
  position: relative;
  width: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--accent);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--accent);
}

.event-info {
  background: var(--accent);
  padding: 3rem 0;
}

.event-info-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  align-items: center;
  min-height: 220px;
}

.event-countdown {
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.countdown-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.countdown-timer {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.countdown-unit {
  text-align: center;
  min-width: 70px;
}

.countdown-number {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
}

.countdown-ended {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.event-details {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.event-detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.event-detail-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.event-detail-value {
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.15;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent);
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
}

.artists-featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.artist-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
}

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

.artist-card img,
.artist-placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.artist-placeholder {
  background: var(--border);
}

.artist-info {
  padding: 1.25rem;
}

.artist-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.artist-info p {
  color: var(--accent);
  font-size: 0.9rem;
}

.artists-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.artist-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.artist-list-thumb {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.artist-list-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.schedule-tab {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.schedule-tab.active,
.schedule-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.schedule-panel {
  display: none;
}

.schedule-panel.active {
  display: block;
}

.schedule-date {
  text-align: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.schedule-list {
  list-style: none;
  max-width: 700px;
  margin: 0 auto;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.schedule-time {
  font-weight: 700;
  color: var(--accent);
  min-width: 60px;
}

.schedule-details span {
  display: block;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}

.tickets-grid--centered {
  display: flex;
  justify-content: center;
}

.ticket-card--single {
  max-width: 420px;
  width: 100%;
}

.ticket-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
}

.ticket-card--highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(233, 30, 140, 0.3);
  transform: scale(1.05);
}

.ticket-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1rem 0;
}

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

.ticket-features li {
  padding: 0.4rem 0;
}

.ticket-features .excluded {
  color: var(--text-muted);
}

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

.gallery-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(233, 30, 140, 0.35);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.85rem;
}

.section-videos {
  background: linear-gradient(180deg, var(--bg) 0%, #120810 50%, var(--bg) 100%);
  overflow: hidden;
}

.video-feed-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin: -2rem 0 2.5rem;
  font-size: 1rem;
}

.video-feed-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.video-feed {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem 2rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg-secondary);
  flex: 1;
}

.video-feed::-webkit-scrollbar {
  height: 6px;
}

.video-feed::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.video-feed-card {
  flex: 0 0 auto;
  width: min(280px, 75vw);
  scroll-snap-align: center;
}

.video-feed-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.video-feed-card:hover .video-feed-frame,
.video-feed-card.is-playing .video-feed-frame {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(233, 30, 140, 0.25);
  transform: translateY(-4px);
}

.video-feed-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-feed-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75) 0%,
    transparent 40%,
    transparent 70%,
    rgba(0, 0, 0, 0.3) 100%
  );
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s;
}

.video-feed-card.is-playing .video-feed-gradient {
  opacity: 0.5;
}

.video-feed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(233, 30, 140, 0.85);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, opacity 0.3s, background 0.2s;
  z-index: 2;
}

.video-feed-play:hover {
  background: var(--accent-light);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-feed-play-icon {
  font-size: 1.25rem;
  margin-left: 3px;
}

.video-feed-card.is-playing .video-feed-play {
  opacity: 0;
  pointer-events: none;
}

.video-feed-caption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0 0.5rem;
}

.video-feed-nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.video-feed-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .video-feed-nav {
    display: none;
  }

  .video-feed-card {
    width: min(240px, 82vw);
  }
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.sponsor-item img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.sponsor-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a:hover {
  color: var(--accent);
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 4px;
}

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

.footer-bottom {
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 80vh;
  max-width: 90vw;
  object-fit: contain;
}

.lightbox p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.5rem;
  cursor: pointer;
}

@media (max-width: 992px) {
  .tickets-grid {
    grid-template-columns: 1fr;
  }

  .ticket-card--highlighted {
    transform: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .event-info-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .event-countdown {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 2rem;
  }

  .event-details {
    padding-left: 0;
  }
}
