/**
 * GetTicket Landing Page - Wild Modern SaaS
 * Dark theme, glassmorphism, red accents, bento grid
 */

/* ===========================================
   CSS VARIABLES - DARK THEME
   =========================================== */
:root {
  --landing-bg: #0a0a0f;
  --landing-bg-secondary: #121212;
  --landing-surface: rgba(255, 255, 255, 0.03);
  --landing-surface-hover: rgba(255, 255, 255, 0.06);
  --landing-border: rgba(255, 255, 255, 0.08);
  --landing-text: #ffffff;
  --landing-text-muted: #94a3b8;
  --landing-text-subtle: #64748b;
  --landing-accent: #dc2626;
  --landing-accent-light: #ef4444;
  --landing-accent-glow: rgba(220, 38, 38, 0.4);
  --landing-accent-secondary: #f97316;
  --landing-gradient: linear-gradient(135deg, #dc2626 0%, #f97316 100%);
  --landing-card-bg: rgba(255, 255, 255, 0.02);
  --landing-card-border: rgba(255, 255, 255, 0.06);
  --landing-blur: 20px;
  --landing-radius: 16px;
  --landing-radius-lg: 24px;
  --landing-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===========================================
   BASE STYLES - LANDING PAGE
   =========================================== */
.landing-page {
  background: var(--landing-bg);
  min-height: 100vh;
  color: var(--landing-text);
  overflow-x: hidden;
}

.landing-page * {
  box-sizing: border-box;
}

/* Animated gradient mesh background */
.landing-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(220, 38, 38, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(249, 115, 22, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 50% 30% at 10% 60%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
  animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.05); }
}

.landing-page .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===========================================
   HERO SECTION
   =========================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  animation: heroFadeIn 1s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  color: var(--landing-text-muted);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: var(--landing-accent);
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, var(--landing-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-accent {
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 4px;
  background: var(--landing-gradient);
  border-radius: 2px;
  opacity: 0.5;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--landing-text-muted);
  line-height: 1.6;
  margin: 0 0 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--landing-transition);
  cursor: pointer;
  border: none;
}

.hero-btn-primary {
  background: var(--landing-gradient);
  color: white;
  box-shadow: 0 4px 24px var(--landing-accent-glow);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--landing-accent-glow);
}

.hero-btn-secondary {
  background: var(--landing-surface);
  color: var(--landing-text);
  border: 1px solid var(--landing-border);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: var(--landing-surface-hover);
  border-color: var(--landing-accent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--landing-text-subtle);
  font-size: 14px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===========================================
   FEATURED EVENTS CAROUSEL - 3D Card Style
   =========================================== */
.featured-events-carousel {
  background: var(--landing-bg-secondary);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.featured-events-carousel::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(249, 115, 22, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.featured-carousel-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.featured-carousel-header .section-title {
  color: white;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 8px 0 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 50%, var(--landing-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--landing-gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px var(--landing-accent-glow);
}

.featured-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.featured-carousel-track {
  position: relative;
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.featured-carousel-slide {
  position: absolute;
  width: 80%;
  max-width: 750px;
  opacity: 0.3;
  visibility: visible;
  transform: scale(0.85) translateX(0);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1;
  pointer-events: none;
}

.featured-carousel-slide.active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 10;
  pointer-events: auto;
}

.featured-carousel-slide.prev {
  transform: scale(0.85) translateX(-60%);
  opacity: 0.4;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
}

.featured-carousel-slide.next {
  transform: scale(0.85) translateX(60%);
  opacity: 0.4;
  z-index: 5;
  pointer-events: auto;
  cursor: pointer;
}

.featured-carousel-card {
  background: var(--landing-surface);
  border-radius: var(--landing-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  border: 1px solid var(--landing-border);
  backdrop-filter: blur(var(--landing-blur));
}

.featured-carousel-image {
  position: relative;
  overflow: hidden;
  background: var(--landing-bg-secondary);
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.featured-carousel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
  display: block;
}

.featured-carousel-slide.active .featured-carousel-image img {
  transform: scale(1.08);
}

.featured-carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.featured-carousel-image:hover .featured-carousel-overlay {
  opacity: 1;
}

.featured-carousel-overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.featured-carousel-image:hover .featured-carousel-overlay-content {
  transform: translateY(0);
}

.featured-carousel-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-carousel-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.featured-carousel-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  gap: 1rem;
}

.featured-carousel-title {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--landing-text);
  letter-spacing: -0.025em;
  line-height: 1.375;
  word-wrap: break-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.featured-carousel-btn {
  background: var(--landing-gradient);
  color: white;
  padding: 0.85rem 1.25rem;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: block;
  box-shadow: 0 4px 15px var(--landing-accent-glow);
  border: none;
  cursor: pointer;
  width: 100%;
}

.featured-carousel-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--landing-accent-glow);
  filter: brightness(1.1);
}

.featured-carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
}

.featured-carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.featured-carousel-indicator.active {
  background: var(--landing-gradient);
  width: 32px;
  border-radius: 5px;
  box-shadow: 0 2px 10px var(--landing-accent-glow);
}

.featured-carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.2);
}

/* Section header for events grid */
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  margin: 8px 0 0;
  color: var(--landing-text);
}

/* ===========================================
   EVENTS GRID - Uniform Cards
   =========================================== */
.events-section {
  padding: 80px 0;
}

.events-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* All cards same size */
.event-card {
  grid-column: span 1;
  grid-row: span 1;
}

.event-card {
  position: relative;
  border-radius: var(--landing-radius);
  overflow: hidden;
  background: var(--landing-card-bg);
  border: 1px solid var(--landing-card-border);
  backdrop-filter: blur(var(--landing-blur));
  transition: all var(--landing-transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--landing-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px var(--landing-accent-glow);
}

.event-card-image {
  position: relative;
  width: 100%;
  /* 16:9 aspect ratio using padding-top trick */
  padding-top: 56.25%;
  overflow: hidden;
}

.event-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-card-image img {
  transform: scale(1.1);
}

.event-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--landing-bg) 0%,
    transparent 60%
  );
}

.event-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--landing-accent);
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.event-card-badge.this-week {
  background: var(--landing-accent-secondary);
}

.event-card-content {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.event-card-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--landing-accent);
  font-weight: 500;
  margin-bottom: 8px;
}

.event-card-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--landing-text);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-card-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--landing-text-muted);
}

.event-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--landing-border);
}

.event-card-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 14px;
}

.event-card-price .price-label {
  color: var(--landing-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.event-card-price .price-value {
  color: var(--landing-accent);
  font-weight: 700;
  font-size: 16px;
}

.event-card-price .coming-soon {
  color: var(--landing-text-muted);
  font-style: italic;
  font-size: 13px;
}

.event-card-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-surface);
  border-radius: 8px;
  color: var(--landing-text-muted);
  transition: all var(--landing-transition);
}

.event-card:hover .event-card-arrow {
  background: var(--landing-accent);
  color: white;
}

/* Category Filter Tabs */
.category-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.category-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.category-tab.active {
  background: var(--tab-color, #dc2626);
  border-color: var(--tab-color, #dc2626);
  color: white;
  box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.category-tab i {
  font-size: 14px;
  opacity: 0.9;
}

.category-tab span {
  white-space: nowrap;
}

/* Hidden by category filter */
.event-card.hidden-by-category {
  display: none !important;
}

/* No events state */
.no-events-card {
  grid-column: span 4;
  padding: 80px 40px;
  text-align: center;
  background: var(--landing-card-bg);
  border: 1px dashed var(--landing-border);
  border-radius: var(--landing-radius-lg);
}

.no-events-icon {
  font-size: 48px;
  margin-bottom: 24px;
  opacity: 0.5;
}

.no-events-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 12px;
}

.no-events-text {
  color: var(--landing-text-muted);
  font-size: 16px;
  margin: 0;
}

/* ===========================================
   STATS BAR - FLOATING GLASSMORPHIC
   =========================================== */
.stats-bar {
  margin: 60px 0;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 0;
  background: var(--landing-card-bg);
  border: 1px solid var(--landing-card-border);
  border-radius: var(--landing-radius-lg);
  backdrop-filter: blur(var(--landing-blur));
  padding: 8px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 24px 32px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: var(--landing-border);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--landing-text);
  margin-bottom: 4px;
  background: var(--landing-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--landing-text-muted);
}

/* ===========================================
   ORGANIZERS CTA SECTION
   =========================================== */
.organizers-section {
  padding: 100px 0;
}

.organizers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.organizers-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
}

.organizers-visual-bg {
  position: absolute;
  inset: 0;
  background: var(--landing-gradient);
  border-radius: var(--landing-radius-lg);
  opacity: 0.1;
  filter: blur(60px);
}

.organizers-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.organizers-card {
  position: absolute;
  background: var(--landing-card-bg);
  border: 1px solid var(--landing-card-border);
  border-radius: var(--landing-radius);
  backdrop-filter: blur(var(--landing-blur));
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: transform var(--landing-transition);
}

.organizers-card:hover {
  transform: translateY(-4px);
}

.organizers-card:nth-child(1) {
  top: 10%;
  left: 5%;
  animation: float1 6s ease-in-out infinite;
}

.organizers-card:nth-child(2) {
  top: 35%;
  right: 5%;
  animation: float2 7s ease-in-out infinite;
}

.organizers-card:nth-child(3) {
  bottom: 20%;
  left: 15%;
  animation: float3 5s ease-in-out infinite;
}

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

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

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

.organizers-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--landing-accent);
  border-radius: 12px;
  color: white;
  font-size: 20px;
}

.organizers-card-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--landing-text);
}

.organizers-content {
  max-width: 500px;
}

.organizers-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--landing-accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.organizers-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px;
}

.organizers-description {
  font-size: 18px;
  color: var(--landing-text-muted);
  line-height: 1.7;
  margin: 0 0 32px;
}

.organizers-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.organizers-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--landing-text-muted);
}

.organizers-feature i {
  color: var(--landing-accent);
  width: 20px;
}

.organizers-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--landing-gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all var(--landing-transition);
  box-shadow: 0 4px 24px var(--landing-accent-glow);
}

.organizers-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--landing-accent-glow);
}

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

  .featured-carousel-card {
    grid-template-columns: 1fr;
  }

  .featured-carousel-image {
    aspect-ratio: 16 / 9;
  }

  .featured-carousel-wrapper {
    padding: 0 15px;
  }

  .featured-carousel-track {
    height: auto;
    min-height: 480px;
  }

  .featured-carousel-content {
    padding: 2rem;
  }

  .featured-carousel-slide {
    width: 90%;
  }

  .featured-carousel-slide.prev {
    transform: scale(0.85) translateX(-50%);
  }

  .featured-carousel-slide.next {
    transform: scale(0.85) translateX(50%);
  }

  .organizers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .organizers-visual {
    max-width: 400px;
    margin: 0 auto;
    order: -1;
  }

  .organizers-content {
    text-align: center;
    margin: 0 auto;
  }

  .organizers-cta {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .spotlight-content {
    padding: 24px;
  }

  .spotlight-card {
    aspect-ratio: 16/9;
  }
}

/* ===========================================
   RESPONSIVE - MOBILE
   =========================================== */
@media (max-width: 640px) {
  .hero-section {
    padding: 100px 16px 60px;
    min-height: auto;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll-hint {
    display: none;
  }

  .events-bento {
    grid-template-columns: 1fr;
  }

  .event-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Featured carousel mobile */
  .featured-carousel-content {
    padding: 1.5rem;
  }

  .featured-carousel-title {
    font-size: clamp(0.9rem, 4vw, 1.2rem);
  }

  .featured-carousel-wrapper {
    padding: 0 10px;
  }

  .featured-carousel-track {
    min-height: 420px;
  }

  .featured-carousel-slide {
    width: 95%;
  }

  .featured-carousel-slide.prev,
  .featured-carousel-slide.next {
    opacity: 0.2;
  }

  .featured-carousel-slide.prev {
    transform: scale(0.8) translateX(-40%);
  }

  .featured-carousel-slide.next {
    transform: scale(0.8) translateX(40%);
  }

  .featured-carousel-btn {
    padding: 0.7rem 1rem;
    font-size: 0.75rem;
  }

  .featured-carousel-overlay {
    padding: 1.5rem;
  }

  .featured-carousel-date {
    font-size: 0.75rem;
  }

  .featured-carousel-location {
    font-size: 0.7rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 0;
  }

  .stat-item:not(:last-child)::after {
    width: 60%;
    height: 1px;
    right: 20%;
    top: auto;
    bottom: 0;
    transform: none;
  }

  .spotlight-card {
    aspect-ratio: 4/5;
  }

  .spotlight-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .no-events-card {
    grid-column: span 1;
    padding: 40px 20px;
  }

  .organizers-features {
    align-items: center;
  }
}

/* ===========================================
   ANIMATIONS & EFFECTS
   =========================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.events-bento .event-card {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-out;
}

.events-bento .event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.events-bento .event-card:nth-child(1) { transition-delay: 0ms; }
.events-bento .event-card:nth-child(2) { transition-delay: 50ms; }
.events-bento .event-card:nth-child(3) { transition-delay: 100ms; }
.events-bento .event-card:nth-child(4) { transition-delay: 150ms; }
.events-bento .event-card:nth-child(5) { transition-delay: 200ms; }
.events-bento .event-card:nth-child(6) { transition-delay: 250ms; }
.events-bento .event-card:nth-child(7) { transition-delay: 300ms; }
.events-bento .event-card:nth-child(8) { transition-delay: 350ms; }

/* Glow effect on hover for cards */
.event-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--landing-radius);
  background: var(--landing-gradient);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--landing-transition);
}

.event-card:hover::before {
  opacity: 0.3;
  filter: blur(20px);
}

/* Search filter styles */
.event-card.hidden-by-search {
  display: none;
}

/* ===========================================
   NAVBAR CLEANUP FOR LANDING
   =========================================== */

/* Hide venues dropdown on landing page (venue CTA is in footer) */
body:has(.landing-page) .venues-dropdown {
  display: none;
}

/* ===========================================
   DARK FOOTER OVERRIDE
   =========================================== */

/* Style venue CTA banner for dark theme */
body:has(.landing-page) .venue-cta-banner {
  margin-top: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.95) 0%, rgba(153, 27, 27, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body:has(.landing-page) footer {
  background: var(--landing-bg-secondary, #121212) !important;
  border-top: 1px solid var(--landing-border, rgba(255,255,255,0.08)) !important;
  margin-top: 0;
}

body:has(.landing-page) footer .footer-links a {
  color: var(--landing-text-muted, #94a3b8);
}

body:has(.landing-page) footer .footer-links a:hover {
  color: var(--landing-accent, #dc2626);
}

body:has(.landing-page) footer p {
  color: var(--landing-text-subtle, #64748b);
}
