/* ═══════════════════════════════════════════════════════════════════
   THOLUS DOME - Premium Event Platform
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* ─────────────────────────────────────────────────────────────────────
   CSS Variables & Theme
   ───────────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --bg-dark: #08090c;
  --bg-base: #0d0f14;
  --bg-elevated: #141820;
  --bg-card: #181d27;
  --bg-card-hover: #1e2433;
  
  /* Accent Colors */
  --accent-primary: #ff3366;
  --accent-secondary: #7c3aed;
  --accent-tertiary: #00d4aa;
  --accent-glow: rgba(255, 51, 102, 0.4);
  --accent-glow-secondary: rgba(124, 58, 237, 0.35);
  
  /* Text */
  --text-primary: #ffffff;
  --text-secondary: #b8c0d2;
  --text-muted: #6b7280;
  --text-accent: var(--accent-primary);
  
  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.1);
  --border-accent: rgba(255, 51, 102, 0.3);
  
  /* Effects */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg: 0 16px 64px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.35), 0 0 0 1px var(--border-subtle);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.3s;
  --duration-slow: 0.5s;
}

/* ─────────────────────────────────────────────────────────────────────
   Reset & Base
   ───────────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Background Gradient Mesh */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 51, 102, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 0% 50%, rgba(0, 212, 170, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

main {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* ─────────────────────────────────────────────────────────────────────
   Typography
   ───────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bebas Neue', 'DM Sans', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text-primary);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.muted { color: var(--text-muted); }
.small { font-size: 0.875rem; }
.big { font-size: 1.125rem; font-weight: 700; color: var(--text-primary); }

/* ─────────────────────────────────────────────────────────────────────
   Layout
   ───────────────────────────────────────────────────────────────────── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 32px);
    padding: 0 16px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Header / Topbar
   ───────────────────────────────────────────────────────────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(8, 9, 12, 0.75);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--duration-normal) var(--ease-out);
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
  opacity: 0.3;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all var(--duration-fast) var(--ease-out);
}

.brand:hover {
  filter: brightness(1.2);
  transform: scale(1.02);
}

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

@media (max-width: 640px) {
  .brand__logo {
    height: 32px;
    max-width: 140px;
  }
}

.brand__icon {
  display: inline-block;
  margin-right: 4px;
  animation: pulse-icon 2s ease-in-out infinite;
}

/* ─────────────────────────────────────────────────────────────────────
   Quick Filters - Stasera, Weekend, Settimana
   ───────────────────────────────────────────────────────────────────── */
.quick-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.quick-filter {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
  text-decoration: none;
}

.quick-filter:hover {
  border-color: var(--accent-primary);
  color: var(--text-primary);
  background: rgba(255, 51, 102, 0.1);
}

.quick-filter__icon {
  font-size: 1.1rem;
}

.quick-filter--active .quick-filter__icon {
  filter: grayscale(0);
}

.quick-filter--active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
}

.quick-filter--active:hover {
  background: var(--accent-primary);
  filter: brightness(1.1);
}

/* ─────────────────────────────────────────────────────────────────────
   Urgency Badges
   ───────────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.badge--hot {
  background: rgba(255, 87, 51, 0.15);
  color: #ff5733;
  animation: pulse-badge 2s ease-in-out infinite;
}

.badge--soldout {
  background: rgba(107, 114, 128, 0.2);
  color: var(--text-muted);
}

.badge--new {
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent-tertiary);
}

.badge--last {
  background: rgba(255, 51, 102, 0.15);
  color: var(--accent-primary);
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ─────────────────────────────────────────────────────────────────────
   Price Display
   ───────────────────────────────────────────────────────────────────── */
.event-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 8px;
}

.event-card__price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────────────────
   Social Proof / Attendees
   ───────────────────────────────────────────────────────────────────── */
.event-card__social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.event-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
}

.event-card__rating span {
  color: var(--text-secondary);
  font-weight: 500;
}

.brand__logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: all var(--duration-fast) var(--ease-out);
}

.brand:hover .brand__logo {
  filter: brightness(1.1);
  transform: scale(1.02);
}

@media (max-width: 640px) {
  .brand__logo {
    height: 32px;
  }
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.footer__links {
  display: flex;
  gap: 48px;
}

@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    gap: 32px;
  }
  .footer__links {
    gap: 32px;
  }
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
  border-radius: inherit;
}

.nav a:hover {
  color: var(--text-primary);
}

.nav a:hover::before {
  opacity: 0.1;
}

/* ─────────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.3; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.4; }
}

.hero h1 {
  position: relative;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s var(--ease-out) backwards;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s var(--ease-out) 0.1s backwards;
}

/* ─────────────────────────────────────────────────────────────────────
   Hero Slider - Eventi in evidenza
   ───────────────────────────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-bottom: 32px;
  overflow: hidden;
}

.hero-slider__track {
  display: grid; /* Grid per stack */
  grid-template-areas: "slide";
  height: 650px;
  width: 100%;
}

.hero-slide {
  grid-area: slide; /* Tutte nella stessa cella = sovrapposte */
  position: relative; /* Per posizionare il bg */
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s;
  z-index: 1;
}

.hero-slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 50%, #1a1f2e 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 9, 12, 0.95) 0%,
    rgba(8, 9, 12, 0.7) 40%,
    rgba(8, 9, 12, 0.4) 70%,
    rgba(8, 9, 12, 0.2) 100%
  );
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 48px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide__badge {
  margin-bottom: 16px;
  animation: fadeInUp 0.6s var(--ease-out) 0.1s backwards;
}

.hero-slide__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  max-width: 700px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--ease-out) 0.2s backwards;
}

.hero-slide__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s var(--ease-out) 0.3s backwards;
}

.hero-slide__date {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.hero-slide__dome {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-slide__summary {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s var(--ease-out) 0.4s backwards;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-slide__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s var(--ease-out) 0.5s backwards;
}

.hero-slider__nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 10;
}

.hero-slider__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(8, 9, 12, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider__btn:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: scale(1.1);
}

.hero-slider__dots {
  display: flex;
  gap: 8px;
}

.hero-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.hero-slider__dot:hover {
  background: rgba(255,255,255,0.5);
}

.hero-slider__dot--active {
  background: var(--accent-primary);
  transform: scale(1.2);
}

@media (max-width: 900px) {
  .hero-slider__track {
    height: 580px;
  }
  
  .hero-slide__content {
    padding: 40px 24px 90px;
  }
  
  .hero-slide__overlay {
    background: linear-gradient(
      to top,
      rgba(8, 9, 12, 0.95) 0%,
      rgba(8, 9, 12, 0.7) 50%,
      rgba(8, 9, 12, 0.3) 100%
    );
  }
  
  .hero-slide__content {
    justify-content: flex-end;
  }
  
  .hero-slide__title {
    font-size: 2rem;
  }
  
  .hero-slider__nav {
    bottom: 16px;
  }
  
  .hero-slider__btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .hero-slider__track {
    height: 560px;
  }
  
  .hero-slide__content {
    padding: 24px 16px 70px;
  }
  
  .hero-slide__title {
    font-size: 1.75rem;
    margin-bottom: 12px;
    padding-right: 120px;
  }
  
  .hero-slide__meta {
    margin-bottom: 12px;
    gap: 8px;
    padding-right: 120px;
  }
  
  .hero-slide__summary {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .hero-slide__price {
    margin-bottom: 12px;
  }
  
  .hero-slide__cta {
    flex-direction: column;
    gap: 10px;
  }
  
  .hero-slide__cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  /* Navigazione semplificata su mobile */
  .hero-slider__nav {
    bottom: auto;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-slider__btn {
    display: none;
  }
  
  .hero-slider__dots {
    gap: 10px;
  }
  
  .hero-slider__dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-slider {
    margin-bottom: 0;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Top Banner - Call-out fisso sotto header
   ───────────────────────────────────────────────────────────────────── */
.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 50%, #ff6b6b 100%);
  background-size: 200% 100%;
  animation: banner-shimmer 8s ease-in-out infinite;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.top-banner:hover {
  filter: brightness(1.1);
}

@keyframes banner-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.top-banner__text {
  opacity: 0.95;
}

.top-banner__cta {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.top-banner:hover .top-banner__cta {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .top-banner {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  
  .top-banner__text {
    line-height: 1.4;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   UVP Section - Unique Value Proposition
   ───────────────────────────────────────────────────────────────────── */
.uvp-section {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08) 0%, rgba(255, 142, 83, 0.05) 100%);
  border-top: 1px solid rgba(255, 107, 107, 0.15);
  border-bottom: 1px solid rgba(255, 107, 107, 0.15);
  padding: 40px 24px;
  text-align: center;
}

.uvp-content {
  max-width: 900px;
  margin: 0 auto;
}

.uvp-headline {
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.uvp-subtext {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 640px) {
  .uvp-section {
    padding: 18px 20px;
  }
  
  .uvp-headline {
    font-size: 1rem;
  }
  
  .uvp-subtext {
    font-size: 0.85rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Pagina Grazie - Post acquisto
   ───────────────────────────────────────────────────────────────────── */
.grazie-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
}

.grazie-content {
  max-width: 550px;
}

.grazie-icon {
  font-size: 4rem;
  margin-bottom: 24px;
  animation: bounce-in 0.6s ease-out;
}

@keyframes bounce-in {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.grazie-page h1 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.grazie-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.grazie-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  margin-bottom: 32px;
  text-align: left;
}

.grazie-box h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.grazie-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grazie-box li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.grazie-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.grazie-footer {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .grazie-page {
    padding: 40px 20px;
  }
  
  .grazie-icon {
    font-size: 3rem;
  }
  
  .grazie-cta {
    flex-direction: column;
  }
  
  .grazie-cta .btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   La Cupola - Landing Page
   ───────────────────────────────────────────────────────────────────── */

/* Hero */
.cupola-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
  margin: -24px -24px 0;
}

.cupola-hero__bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 120%, rgba(255, 107, 107, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 142, 83, 0.15) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg-base) 0%, #0d0f14 100%);
  animation: cupola-pulse 8s ease-in-out infinite;
}

@keyframes cupola-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.cupola-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.cupola-hero__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.cupola-hero__title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: 2px;
}

.cupola-hero__tagline {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 600;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.cupola-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Section generica cupola */
.cupola-section {
  padding: 60px 0;
}

.cupola-section h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 20px;
}

.text-center {
  text-align: center;
}

/* Grid Cos'è */
.cupola-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cupola-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.cupola-text strong {
  color: var(--text-primary);
}

.cupola-visual {
  display: flex;
  justify-content: center;
}

.cupola-visual__dome {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.2), rgba(138, 43, 226, 0.2));
  border: 2px solid rgba(255, 107, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  position: relative;
  animation: dome-rotate 20s linear infinite;
}

.cupola-visual__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.15) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes dome-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* Stats */
.cupola-stats {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(138, 43, 226, 0.05));
  padding: 50px 24px;
  margin: 0 -24px;
}

.cupola-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cupola-stat__number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.cupola-stat__label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Locations */
.cupola-locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cupola-location {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.cupola-location:hover {
  border-color: var(--border-default);
  transform: translateY(-4px);
}

.cupola-location--highlight {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15), rgba(255, 142, 83, 0.1));
  border-color: rgba(255, 107, 107, 0.3);
}

.cupola-location__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.cupola-location h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cupola-location p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Punchline dopo locations */
.cupola-punchline {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border-subtle);
}

.cupola-punchline p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.cupola-punchline__big {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: var(--text-primary) !important;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Sezione Castel di Sangro */
.cupola-castel {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.06) 0%, rgba(138, 43, 226, 0.04) 100%);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin: 40px 0;
}

.cupola-castel__content {
  max-width: 800px;
  margin: 0 auto;
}

.cupola-castel h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 16px;
  text-align: center;
}

.cupola-castel__intro {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.cupola-castel__intro strong {
  color: var(--text-primary);
}

.cupola-castel__text {
  margin-bottom: 40px;
}

.cupola-castel__text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.cupola-castel__text strong {
  color: var(--text-primary);
}

.cupola-castel__highlight {
  text-align: center;
  padding: 30px;
  background: rgba(255, 107, 107, 0.08);
  border-radius: var(--radius-lg);
  border-left: 4px solid #ff6b6b;
}

.cupola-castel__highlight p {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.cupola-castel__highlight strong {
  color: var(--text-primary);
  font-size: 1.2rem;
}

.cupola-castel__tagline {
  margin-top: 16px !important;
  font-size: 1rem !important;
  font-style: italic;
  color: #ff8e53 !important;
}

@media (max-width: 640px) {
  .cupola-castel {
    padding: 30px 20px;
    margin: 20px -20px;
    border-radius: 0;
  }
  
  .cupola-castel__intro {
    font-size: 1.05rem;
  }
  
  .cupola-castel__text p {
    font-size: 0.95rem;
  }
  
  .cupola-castel__highlight {
    padding: 20px;
  }
  
  .cupola-punchline__big {
    font-size: 1.2rem !important;
  }
}

/* Experience */
.cupola-experience {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  margin: 40px 0;
}

.cupola-experience h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.cupola-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.cupola-feature {
  text-align: center;
}

.cupola-feature__icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.cupola-feature h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.cupola-feature p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* CTA Finale */
.cupola-cta {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, transparent, rgba(255, 107, 107, 0.05));
  margin: 0 -24px -24px;
}

.cupola-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 12px;
}

.cupola-cta p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cupola-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive La Cupola */
@media (max-width: 900px) {
  .cupola-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cupola-visual {
    order: -1;
  }
  
  .cupola-visual__dome {
    width: 180px;
    height: 180px;
    font-size: 2rem;
  }
  
  .cupola-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cupola-locations {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cupola-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .cupola-hero {
    min-height: 60vh;
    padding: 60px 20px;
  }
  
  .cupola-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cupola-stat__number {
    font-size: 2rem;
  }
  
  .cupola-locations {
    grid-template-columns: 1fr;
  }
  
  .cupola-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .cupola-experience {
    padding: 30px 20px;
  }
  
  .cupola-cta__buttons {
    flex-direction: column;
  }
  
  .cupola-cta__buttons .btn {
    width: 100%;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Event Card Placeholder (quando manca l'immagine)
   ───────────────────────────────────────────────────────────────────── */
.event-card__placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.6;
  transition: all 0.3s var(--ease-out);
}

.event-card:hover .event-card__placeholder {
  opacity: 0.8;
  transform: scale(1.05);
}

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

/* ─────────────────────────────────────────────────────────────────────
   Filters & Forms
   ───────────────────────────────────────────────────────────────────── */
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 48px;
  animation: fadeInUp 0.8s var(--ease-out) 0.2s backwards;
}

select, 
input[type="text"], 
input[type="email"], 
input[type="password"],
textarea {
  appearance: none;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
  color: var(--text-primary);
  outline: none;
  min-width: 200px;
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

select:hover, input:hover, textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: var(--bg-card);
}

select:focus, input:focus, textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.15);
}

textarea {
  min-height: 140px;
  width: 100%;
  resize: vertical;
}

/* ─────────────────────────────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
  color: var(--text-primary);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-md);
}

.btn:hover::before {
  opacity: 1;
}

.btn:active {
  transform: translateY(0);
}

/* Primary Button - The Star */
.btn--primary {
  border: none;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ff6b3d 50%, var(--accent-primary) 100%);
  background-size: 200% 100%;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn--primary:hover {
  background-position: 100% 0;
  box-shadow: 0 8px 32px var(--accent-glow), 0 0 0 2px rgba(255, 51, 102, 0.3);
  transform: translateY(-3px);
}

.btn--primary:active {
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

/* ─────────────────────────────────────────────────────────────────────
   Pills / Tags
   ───────────────────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid var(--border-default);
  background: var(--bg-elevated);
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
}

.pill--ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}

.pill--warn {
  background: rgba(255, 171, 0, 0.15);
  border-color: rgba(255, 171, 0, 0.3);
  color: #ffab00;
}

.pill--live {
  background: rgba(255, 51, 102, 0.15);
  border-color: rgba(255, 51, 102, 0.3);
  color: var(--accent-primary);
  animation: pulseLive 2s ease-in-out infinite;
}

@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 51, 102, 0); }
}

/* ─────────────────────────────────────────────────────────────────────
   Sections
   ───────────────────────────────────────────────────────────────────── */
.section {
  padding: 48px 0;
  position: relative;
}

.section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.section__head h2 {
  margin: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   Links
   ───────────────────────────────────────────────────────────────────── */
.link {
  color: var(--text-secondary);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
  transition: width var(--duration-normal) var(--ease-out);
}

.link:hover {
  color: var(--text-primary);
}

.link:hover::after {
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────
   Cards
   ───────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease-out);
  overflow: hidden;
}

@media (max-width: 640px) {
  .card {
    padding: 16px;
  }
}

.card:hover {
  border-color: var(--border-default);
  background: var(--bg-card-hover);
}

/* ─────────────────────────────────────────────────────────────────────
   Grid System
   ───────────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

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

@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid, .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────────────────
   Event Cards - The Stars of the Show
   ───────────────────────────────────────────────────────────────────── */
.event-card {
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}

.event-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
  z-index: 0;
  border-radius: inherit;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 60px var(--accent-glow);
  border-color: transparent;
}

.event-card:hover::before {
  opacity: 0.05;
}

.event-card__media {
  display: block;
  position: relative;
  overflow: hidden;
}

.event-card__media::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
  pointer-events: none;
}

.event-card__media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.event-card:hover .event-card__media img {
  transform: scale(1.05);
}

.event-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
}

.pill--hot,
.event-card__badge.pill--hot {
  background: rgba(255, 87, 51, 0.95);
  color: white;
}

.pill--soon,
.event-card__badge.pill--soon {
  background: rgba(255, 171, 0, 0.95);
  color: #1a1a1a;
}

.pill--new,
.event-card__badge.pill--new {
  background: rgba(0, 212, 170, 0.95);
  color: #1a1a1a;
}

.pill--soldout,
.event-card__badge.pill--soldout {
  background: rgba(107, 114, 128, 0.95);
  color: white;
}

.pill--countdown {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
  color: #a78bfa;
}

.pill--live {
  background: rgba(255, 51, 102, 0.15);
  border-color: rgba(255, 51, 102, 0.3);
  color: var(--accent-primary);
  animation: pulseLive 2s ease-in-out infinite;
}

@keyframes pulseLive {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 51, 102, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(255, 51, 102, 0); }
}

.hero-slide__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-slide__price {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.hero-slide__price strong {
  font-size: 1.4rem;
  color: var(--text-primary);
}

.event-card__body {
  padding: 20px 24px 24px;
  position: relative;
  z-index: 1;
}

.event-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.event-card__meta .pill {
  font-size: 0.75rem;
  padding: 6px 12px;
}

.event-card__meta .muted {
  font-size: 0.9rem;
}

.event-card__title {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.event-card__title a {
  transition: color var(--duration-fast) var(--ease-out);
}

.event-card__title a:hover {
  color: var(--accent-primary);
}

.event-card p.muted {
  font-size: 0.95rem;
  line-height: 1.5;
}

.event-card__cta {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────
   List Items
   ───────────────────────────────────────────────────────────────────── */
.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-primary), var(--accent-secondary));
  transform: scaleY(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.list__item:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-default);
  transform: translateX(8px);
}

.list__item:hover::before {
  transform: scaleY(1);
}

.list__title {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────────
   Segmented Control
   ───────────────────────────────────────────────────────────────────── */
.segmented {
  display: inline-flex;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}

.segmented a {
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border-right: 1px solid var(--border-subtle);
  transition: all var(--duration-fast) var(--ease-out);
}

.segmented a:last-child {
  border-right: none;
}

.segmented a:hover {
  color: var(--text-secondary);
  background: rgba(255,255,255,0.03);
}

.segmented a.active {
  color: var(--text-primary);
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.15), rgba(124, 58, 237, 0.15));
}

/* ─────────────────────────────────────────────────────────────────────
   Event Detail Page Hero
   ───────────────────────────────────────────────────────────────────── */

/* Micro-banner sopra evento */
.event-topline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px 16px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.3px;
}

.event-topline strong {
  color: #ff8e53;
  font-weight: 600;
}

.event-topline__divider {
  opacity: 0.4;
}

@media (max-width: 640px) {
  .event-topline {
    font-size: 0.7rem;
    padding: 6px 12px;
    gap: 6px;
  }
}

/* Box esperienza immersiva */
.immersive-box {
  margin: 32px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.06) 0%, rgba(138, 43, 226, 0.04) 100%);
  border-left: 3px solid #ff6b6b;
  border-radius: var(--radius-lg);
}

.immersive-box__content {
  max-width: 700px;
}

.immersive-box__headline {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.immersive-box__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.immersive-box__tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ff8e53;
  margin: 0;
}

@media (max-width: 640px) {
  .immersive-box {
    padding: 20px 20px;
    margin: 24px 0;
  }
  
  .immersive-box__headline {
    font-size: 1rem;
  }
  
  .immersive-box__text,
  .immersive-box__tagline {
    font-size: 0.9rem;
  }
}

.event {
  padding-top: 8px;
  position: relative;
}

/* ─────────────────────────────────────────────────────────────────────
   Ambient Background - Gradient dinamico basato sui colori dell'immagine
   ───────────────────────────────────────────────────────────────────── */
.event__ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transition: opacity 1.5s ease-out;
  pointer-events: none;
}

/* Fallback gradient se JS non funziona */
.event__ambient-bg:empty {
  background: radial-gradient(ellipse at top, rgba(30,20,40,0.6) 0%, rgba(10,5,15,0.9) 100%);
  opacity: 1;
}

.event__hero {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 48px;
}

.event__heroimg {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}

.event__herobody {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.event__herobody h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 24px;
}

@media (max-width: 900px) {
  .event__hero {
    grid-template-columns: 1fr;
  }
  .event__heroimg {
    height: 280px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Trailer Section (YouTube Embed)
   ───────────────────────────────────────────────────────────────────── */
.trailer-section {
  padding-top: 32px;
  padding-bottom: 32px;
}

.trailer-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 51, 102, 0.15);
  background: var(--bg-card);
}

.trailer-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 640px) {
  .trailer-section h2 {
    text-align: center;
  }
  .trailer-container {
    border-radius: var(--radius-md);
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Details with Poster Layout
   ───────────────────────────────────────────────────────────────────── */
.details-with-poster {
  display: block;
}

.details-with-poster.has-poster {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.details-text {
  min-width: 0;
}

.details-poster {
  position: sticky;
  top: 100px;
}

.details-poster img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 51, 102, 0.1);
  background: var(--bg-card);
}

@media (max-width: 900px) {
  .details-with-poster.has-poster {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .details-poster {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .details-poster {
    max-width: 300px;
  }
  
  .details-poster img {
    border-radius: var(--radius-md);
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Prose / Content
   ───────────────────────────────────────────────────────────────────── */
.prose {
  line-height: 1.7;
  color: var(--text-secondary);
}

.prose p {
  margin-bottom: 1em;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong, .prose b {
  color: var(--text-primary);
  font-weight: 600;
}

.prose em, .prose i {
  font-style: italic;
}

.prose u {
  text-decoration: underline;
}

.prose ul, .prose ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.prose li {
  margin-bottom: 0.5em;
}

.prose ul li {
  list-style-type: disc;
}

.prose ol li {
  list-style-type: decimal;
}

.prose a {
  color: var(--accent-secondary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: var(--accent-primary);
}

.prose h2, .prose h3, .prose h4 {
  color: var(--text-primary);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.prose h2 {
  font-size: 1.5rem;
}

.prose h3 {
  font-size: 1.25rem;
}

.prose h4 {
  font-size: 1.1rem;
}

/* ─────────────────────────────────────────────────────────────────────
   Slider / Gallery
   ───────────────────────────────────────────────────────────────────── */
.slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-default) transparent;
}

.slider::-webkit-scrollbar {
  height: 6px;
}

.slider::-webkit-scrollbar-track {
  background: transparent;
}

.slider::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 999px;
}

.slider__item {
  min-width: min(560px, 85%);
  scroll-snap-align: start;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  transition: all var(--duration-normal) var(--ease-out);
  flex-shrink: 0;
}

.slider__item:hover {
  border-color: var(--border-default);
  box-shadow: var(--shadow-md);
}

.slider__item img,
.slider__item video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  background: black;
}

.slider__item .youtube-thumb {
  width: 100%;
  height: 320px;
}

.slider__item .youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider__item .small {
  padding: 14px 18px;
}

/* ─────────────────────────────────────────────────────────────────────
   FAQ Accordion
   ───────────────────────────────────────────────────────────────────── */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 0;
  background: var(--bg-card);
  overflow: hidden;
  transition: all var(--duration-fast) var(--ease-out);
}

.faq__item:hover {
  border-color: var(--border-default);
}

.faq__item[open] {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 20px 24px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-fast) var(--ease-out);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--duration-fast) var(--ease-out);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item summary:hover {
  background: rgba(255,255,255,0.02);
}

.faq__item .prose {
  padding: 0 24px 20px;
}

/* ─────────────────────────────────────────────────────────────────────
   Dome Cards
   ───────────────────────────────────────────────────────────────────── */
.dome-card {
  padding: 24px;
  transition: all var(--duration-normal) var(--ease-out);
}

.dome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dome-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.dome-card .pill {
  margin-top: 12px;
}

/* ─────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
  margin-top: 80px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
  opacity: 0.3;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer a {
  transition: color var(--duration-fast) var(--ease-out);
}

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

/* ─────────────────────────────────────────────────────────────────────
   Experience Section - L'esperienza Tholus
   ───────────────────────────────────────────────────────────────────── */
.experience {
  padding: 80px 0;
  background: var(--bg-base);
  margin: 48px calc(-50vw + 50%);
  width: 100vw;
}

.experience__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.experience__header {
  text-align: center;
  margin-bottom: 48px;
}

.experience__header h2 {
  margin-bottom: 16px;
}

.experience__header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.experience__item {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
}

.experience__item img,
.experience__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.experience__item:hover img,
.experience__item:hover video {
  transform: scale(1.05);
}

.experience__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 9, 12, 0.8) 0%, transparent 60%);
}

.experience__item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.experience__item-content h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.experience__item-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

.experience__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #1a1f2e 0%, #252b3d 100%);
}

@media (max-width: 900px) {
  .experience__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience__grid > *:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .experience {
    padding: 48px 0;
  }
  .experience__grid {
    grid-template-columns: 1fr;
  }
  .experience__grid > *:last-child {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Testimonials Section
   ───────────────────────────────────────────────────────────────────── */
.testimonials {
  padding: 64px 0;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 40px;
}

.testimonials__header h2 {
  margin-bottom: 8px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial__stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testimonial__info {
  flex: 1;
}

.testimonial__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial__event {
  font-size: 0.85rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    padding: 24px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Experience Grid (Home Page)
   ───────────────────────────────────────────────────────────────────── */
.experience-section {
  padding: 64px 0;
}

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

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s var(--ease-out);
}

.experience-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: 0 8px 32px rgba(255, 51, 102, 0.15);
}

.experience-card--large {
  grid-column: span 2;
}

.experience-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.experience-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.experience-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .experience-card--large {
    grid-column: span 1;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Testimonial Cards (Home Page)
   ───────────────────────────────────────────────────────────────────── */
.testimonials-section {
  padding: 64px 0;
  background: var(--bg-base);
  margin: 0 calc(-50vw + 50%);
  width: 100vw;
}

.testimonials-section > .section__head,
.testimonials-section > .testimonials-grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.testimonial-card__rating {
  margin-bottom: 12px;
}

.testimonial-card__rating .star {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.testimonial-card__rating .star--filled {
  color: #fbbf24;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 16px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-primary);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section {
    padding: 48px 0;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Countdown
   ───────────────────────────────────────────────────────────────────── */
.countdown {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.countdown__item {
  text-align: center;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 8px 12px;
  min-width: 50px;
}

.countdown__value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: var(--accent-primary);
  line-height: 1;
}

.countdown__label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────
   Sticky CTA (Mobile)
   ───────────────────────────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  padding: 16px 24px;
  background: linear-gradient(to top, var(--bg-dark) 0%, rgba(8, 9, 12, 0.95) 50%, transparent 100%);
  z-index: 90;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  overflow: visible;
}

@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

.sticky-cta .btn--primary {
  width: 100%;
  max-width: 400px;
}

.sticky-cta .btn--with-price {
  max-width: 320px;
  overflow: visible;
}

/* ─────────────────────────────────────────────────────────────────────
   Date Grid (Event Page - Occurrences)
   ───────────────────────────────────────────────────────────────────── */
.dates-section {
  background: var(--bg-base);
  margin: 0 calc(-50vw + 50%);
  padding: 48px calc(50vw - 50%);
  width: 100vw;
}

/* ─────────────────────────────────────────────────────────────────────
   Location Tabs (Multi-location events)
   ───────────────────────────────────────────────────────────────────── */
.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.location-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  min-width: 160px;
  text-align: left;
}

.location-tab:hover {
  border-color: var(--accent-primary);
  background: rgba(236, 72, 153, 0.05);
}

.location-tab--active {
  border-color: var(--accent-primary);
  background: rgba(236, 72, 153, 0.1);
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.location-tab__city {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.location-tab__dome {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.location-tab__count {
  font-size: 0.8rem;
  color: var(--accent-primary);
  font-weight: 600;
}

/* Pannelli location */
.location-panel {
  display: none;
}

.location-panel--active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

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

/* Info location */
.location-info {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-primary);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.location-info__main {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.location-info__address {
  margin-bottom: 4px;
}

/* Pill accent per "X location" */
.pill--accent {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: white;
  font-weight: 600;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .location-tabs {
    flex-direction: column;
  }
  
  .location-tab {
    width: 100%;
    min-width: unset;
  }
}

.dates-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.dates-month-header {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px 0 8px;
  border-bottom: 1px solid var(--border-subtle);
  margin-top: 16px;
}

.dates-month-header:first-child {
  margin-top: 0;
}

.date-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.2s var(--ease-out);
}

.date-card:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 4px 20px rgba(255, 51, 102, 0.1);
}

.date-card__date {
  flex-shrink: 0;
  width: 60px;
  text-align: center;
  padding-right: 20px;
  border-right: 1px solid var(--border-subtle);
}

.date-card__day {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent-primary);
}

.date-card__weekday {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.date-card__info {
  flex: 1;
  min-width: 0;
}

.date-card__time {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.date-card__location {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.date-card__notes {
  margin-top: 4px;
  font-style: italic;
}

.date-card__action {
  flex-shrink: 0;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.date-card__price {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .date-card {
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  
  .date-card__date {
    width: auto;
    padding-right: 16px;
    border-right: none;
    display: flex;
    align-items: baseline;
    gap: 8px;
  }
  
  .date-card__day {
    font-size: 1.8rem;
  }
  
  .date-card__info {
    flex: 1 1 60%;
  }
  
  .date-card__action {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }
  
  .date-card__action .btn {
    flex: 1;
    justify-content: center;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Calendar Styles (Injected via JS, but overrides here)
   ───────────────────────────────────────────────────────────────────── */
.cal {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

#calendar {
  overflow: hidden;
}

.cal__row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.cal__cell {
  position: relative;
  padding: 16px 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.cal__cell:hover {
  background: var(--bg-card);
  border-color: var(--border-default);
}

.cal__cell--empty {
  opacity: 0.2;
  cursor: default;
}

.cal__cell--head {
  cursor: default;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border-color: transparent;
}

.cal__cell--has {
  border-color: var(--accent-primary);
  background: rgba(255, 51, 102, 0.1);
}

.cal__cell--has:hover {
  background: rgba(255, 51, 102, 0.15);
  box-shadow: 0 0 20px var(--accent-glow);
}

.cal__badge {
  position: absolute;
  right: 8px;
  top: 6px;
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 700;
}

/* Calendar mobile fix */
@media (max-width: 640px) {
  .cal__row {
    gap: 4px;
  }
  
  .cal__cell {
    padding: 12px 4px;
    font-size: 0.9rem;
    min-width: 0;
    overflow: visible;
  }
  
  .cal__badge {
    position: absolute;
    right: -2px;
    top: -2px;
    font-size: 0.6rem;
    background: var(--accent-primary);
    color: white;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
  }
  
  .cal__cell--head {
    font-size: 0.75rem;
    padding: 8px 2px;
  }
}

@media (max-width: 400px) {
  .cal__row {
    gap: 3px;
  }
  
  .cal__cell {
    padding: 10px 2px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
  }
  
  .cal__badge {
    right: -3px;
    top: -3px;
    font-size: 0.55rem;
    min-width: 12px;
    height: 12px;
  }
}

.calday {
  margin-top: 24px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
}

/* ─────────────────────────────────────────────────────────────────────
   404 Page
   ───────────────────────────────────────────────────────────────────── */
.page-404 {
  text-align: center;
  padding: 120px 0;
}

.page-404 h1 {
  font-size: 8rem;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─────────────────────────────────────────────────────────────────────
   Animations
   ───────────────────────────────────────────────────────────────────── */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton {
  background: linear-gradient(90deg, var(--bg-card) 25%, var(--bg-card-hover) 50%, var(--bg-card) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

/* Staggered fade-in for grid items */
.grid > * {
  animation: fadeInUp 0.5s var(--ease-out) backwards;
}

.grid > *:nth-child(1) { animation-delay: 0.1s; }
.grid > *:nth-child(2) { animation-delay: 0.15s; }
.grid > *:nth-child(3) { animation-delay: 0.2s; }
.grid > *:nth-child(4) { animation-delay: 0.25s; }
.grid > *:nth-child(5) { animation-delay: 0.3s; }
.grid > *:nth-child(6) { animation-delay: 0.35s; }

.list > * {
  animation: fadeInUp 0.4s var(--ease-out) backwards;
}

.list > *:nth-child(1) { animation-delay: 0.05s; }
.list > *:nth-child(2) { animation-delay: 0.1s; }
.list > *:nth-child(3) { animation-delay: 0.15s; }
.list > *:nth-child(4) { animation-delay: 0.2s; }
.list > *:nth-child(5) { animation-delay: 0.25s; }

/* ─────────────────────────────────────────────────────────────────────
   Responsive Adjustments
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero {
    padding: 48px 0 32px;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .filters {
    flex-direction: column;
    align-items: stretch;
  }
  
  select, input {
    min-width: 100%;
  }
  
  .section {
    padding: 32px 0;
  }
  
  .section__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .event-card__media img {
    height: 180px;
  }
  
  .event-card__body {
    padding: 16px 20px 20px;
  }
  
  .card {
    padding: 20px;
  }
  
  .btn {
    padding: 12px 20px;
  }
  
  .btn--lg {
    padding: 14px 24px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Dark Mode Optimizations
   ───────────────────────────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Reduced Motion
   ───────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Quick Filters
   ───────────────────────────────────────────────────────────────────── */
.quick-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.quick-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--duration-fast) var(--ease-out);
  cursor: pointer;
}

.quick-filter:hover {
  color: var(--text-primary);
  background: var(--bg-card);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.quick-filter--active {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.quick-filter--active:hover {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  transform: translateY(-2px);
}

.quick-filter__icon {
  font-size: 1.2rem;
}

@media (max-width: 640px) {
  .quick-filters {
    gap: 8px;
  }
  
  .quick-filter {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  
  .quick-filter__icon {
    font-size: 1rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Event Card Enhancements
   ───────────────────────────────────────────────────────────────────── */
.event-card__media {
  position: relative;
}

.event-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.pill--hot {
  background: rgba(255, 51, 102, 0.9);
  color: white;
  animation: pulse-badge 2s ease-in-out infinite;
}

.pill--soon {
  background: rgba(255, 159, 67, 0.9);
  color: white;
}

.pill--new {
  background: rgba(0, 212, 170, 0.9);
  color: white;
}

.pill--soldout {
  background: rgba(107, 114, 128, 0.9);
  color: white;
  text-decoration: line-through;
}

.pill--countdown {
  background: rgba(124, 58, 237, 0.9);
  color: white;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.event-card__price {
  font-size: 1rem;
  color: var(--accent-primary);
  margin: 8px 0;
}

.event-card__price strong {
  font-size: 1.2rem;
  font-weight: 700;
}

/* Hero Slider Price */
.hero-slide__price {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-slide__price strong {
  font-size: 1.5rem;
  color: var(--accent-primary);
  font-weight: 700;
}

.hero-slide__badges {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

/* Video in Slider */
.hero-slide__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─────────────────────────────────────────────────────────────────────
   Experience Section
   ───────────────────────────────────────────────────────────────────── */
.experience-section {
  margin-top: 40px;
}

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

.experience-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.experience-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-default);
  box-shadow: var(--shadow-md);
}

.experience-card--large {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: var(--border-accent);
}

.experience-card__icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.experience-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.experience-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .experience-card--large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-card--large {
    grid-column: span 1;
  }
  
  .experience-card {
    padding: 24px;
  }
  
  .experience-card__icon {
    font-size: 2.5rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Testimonials Section
   ───────────────────────────────────────────────────────────────────── */
.testimonials-section {
  margin-top: 40px;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-default);
  box-shadow: var(--shadow-card);
}

.testimonial-card__rating {
  margin-bottom: 12px;
}

.star {
  color: var(--text-muted);
  font-size: 1rem;
}

.star--filled {
  color: #fbbf24;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  border: none;
  padding: 0;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-card__source {
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 20px;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Promo Sticker - Etichetta moderna sull'immagine hero
   ───────────────────────────────────────────────────────────────────── */
.event__hero-img-wrapper {
  position: relative;
  overflow: visible;
}

.promo-sticker {
  position: absolute;
  bottom: 20px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
  color: white;
  padding: 14px 20px 14px 16px;
  border-radius: 12px 4px 4px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: rotate(-2deg);
  box-shadow: 
    0 8px 32px rgba(255, 107, 107, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 10;
  min-width: 140px;
  /* Effetto "tape" */
  border-left: 4px solid rgba(255, 255, 255, 0.3);
}

.promo-sticker::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 20px;
  width: 40px;
  height: 12px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  transform: rotate(-5deg);
}

.promo-sticker:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 
    0 12px 40px rgba(255, 107, 107, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

.promo-sticker__badge {
  position: absolute;
  top: -10px;
  right: 12px;
  background: #1a1a2e;
  color: #00d4aa;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.promo-sticker__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.promo-sticker__price {
  display: flex;
  align-items: center;
  gap: 8px;
}

.promo-sticker__old {
  font-size: 0.85rem;
  text-decoration: line-through;
  opacity: 0.7;
}

.promo-sticker__new {
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.promo-sticker__cta {
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.9;
  margin-top: 2px;
}

/* Mobile: sticker più piccolo, posizione diversa */
@media (max-width: 768px) {
  .promo-sticker {
    bottom: auto;
    top: 16px;
    right: -4px;
    padding: 10px 14px 10px 12px;
    min-width: 120px;
  }
  
  .promo-sticker__title {
    font-size: 0.85rem;
  }
  
  .promo-sticker__new {
    font-size: 1.1rem;
  }
  
  .promo-sticker__cta {
    font-size: 0.65rem;
  }
}

/* Sticker nel slider hero homepage - DESKTOP */
.promo-sticker--slider {
  position: absolute;
  top: auto;
  bottom: 180px;
  right: 40px;
  z-index: 20;
  transform: rotate(-2deg);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.92) 0%, rgba(255, 142, 83, 0.92) 100%);
  backdrop-filter: blur(8px);
}

.promo-sticker--slider:hover {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

@media (max-width: 1200px) {
  .promo-sticker--slider {
    right: 30px;
    bottom: 160px;
  }
}

/* MOBILE: Banner sottile invece di sticker */
@media (max-width: 768px) {
  .promo-sticker--slider {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    border-radius: 0;
    padding: 10px 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95) 0%, rgba(255, 142, 83, 0.95) 100%);
    border-left: none;
  }
  
  .promo-sticker--slider::before {
    display: none;
  }
  
  .promo-sticker--slider .promo-sticker__badge {
    position: static;
    font-size: 0.7rem;
    padding: 4px 8px;
    background: rgba(0,0,0,0.3);
    flex-shrink: 0;
  }
  
  .promo-sticker--slider .promo-sticker__title {
    font-size: 0.85rem;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .promo-sticker--slider .promo-sticker__price {
    flex-shrink: 0;
  }
  
  .promo-sticker--slider .promo-sticker__old {
    font-size: 0.75rem;
  }
  
  .promo-sticker--slider .promo-sticker__new {
    font-size: 1.1rem;
  }
  
  .promo-sticker--slider .promo-sticker__cta {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Promo Slide - Slide dedicata nello slider hero homepage
   ───────────────────────────────────────────────────────────────────── */
.hero-slide--promo {
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1a 100%);
}

.hero-slide--promo .hero-slide__img {
  opacity: 0.3;
  filter: blur(20px);
}

.promo-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.promo-slide-card {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.1) 100%);
  border: 2px solid rgba(255, 107, 107, 0.3);
  border-radius: 24px;
  padding: 40px 60px;
  backdrop-filter: blur(20px);
  max-width: 500px;
}

.promo-slide-card__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.promo-slide-card__title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.promo-slide-card__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.promo-slide-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.promo-slide-card__old {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.promo-slide-card__new {
  font-size: 3.5rem;
  font-weight: 900;
  color: #00d4aa;
  text-shadow: 0 0 40px rgba(0, 212, 170, 0.5);
}

.promo-slide-card__cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(255, 107, 107, 0.4);
}

.promo-slide-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.5);
}

/* ─────────────────────────────────────────────────────────────────────
   Pagina Offerte - Grid offerte
   ───────────────────────────────────────────────────────────────────── */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #ff8e53);
}

.offer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 20px 60px rgba(255, 107, 107, 0.2);
}

.offer-card--featured {
  border: 2px solid rgba(255, 107, 107, 0.4);
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, transparent 100%);
}

.offer-card__discount {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.offer-card__type {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.offer-card__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.offer-card__subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.offer-card__pricing {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.offer-card__old {
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.offer-card__new {
  font-size: 2.5rem;
  font-weight: 900;
  color: #ff6b6b;
}

.offer-card__events {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.offer-card__cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  margin-top: auto;
  transition: all 0.3s ease;
}

.offer-card:hover .offer-card__cta {
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.promos-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.promos-empty__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────────
   Price Sticker - Stile post-it arancione (come promo-sticker)
   ───────────────────────────────────────────────────────────────────── */
.price-sticker {
  position: absolute !important;
  top: 20px !important;
  right: -8px !important;
  background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%) !important;
  color: white !important;
  padding: 14px 20px 14px 16px !important;
  border-radius: 12px 4px 4px 12px !important;
  text-decoration: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  transform: rotate(-2deg) !important;
  box-shadow: 
    0 8px 32px rgba(255, 107, 107, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
  z-index: 10 !important;
  min-width: 110px !important;
  max-width: 150px !important;
  border-left: 4px solid rgba(255, 255, 255, 0.3) !important;
}

/* Tape effect */
.price-sticker::before {
  content: '' !important;
  position: absolute !important;
  top: -6px !important;
  left: 20px !important;
  width: 40px !important;
  height: 12px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 2px !important;
  transform: rotate(-5deg) !important;
}

.price-sticker:hover {
  transform: rotate(0deg) scale(1.05) !important;
  box-shadow: 
    0 12px 40px rgba(255, 107, 107, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.price-sticker__badge {
  position: absolute !important;
  top: -10px !important;
  right: 12px !important;
  background: #1a1a2e !important;
  color: #00d4aa !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  padding: 4px 8px !important;
  border-radius: 20px !important;
  letter-spacing: 0.5px !important;
}

.price-sticker__label {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  opacity: 0.9 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.price-sticker__price {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2) !important;
}

.price-sticker__door {
  font-size: 0.75rem !important;
  opacity: 0.9 !important;
  margin-top: 2px !important;
}

.price-sticker__door-label {
  opacity: 0.85 !important;
}

.price-sticker__door-price {
  text-decoration: line-through !important;
  margin-left: 4px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
}

/* FOMO Section */
.price-sticker__fomo {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  margin-top: 6px !important;
  padding-top: 6px !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.25) !important;
}

.price-sticker__viewers {
  font-size: 0.6rem !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  opacity: 0.9 !important;
}

.price-sticker__viewers .viewer-count {
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

.live-dot {
  width: 6px !important;
  height: 6px !important;
  background: #00d4aa !important;
  border-radius: 50% !important;
  animation: pulse-dot 1.5s ease-in-out infinite !important;
  flex-shrink: 0 !important;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.price-sticker__spots {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
}

.price-sticker__spots--normal {
  color: rgba(255, 255, 255, 0.9) !important;
}

.price-sticker__spots--warning {
  color: #ffd93d !important;
}

.price-sticker__spots--urgent {
  color: #ff6b6b !important;
  animation: pulse-urgent 1s ease-in-out infinite !important;
}

.price-sticker__spots--critical {
  color: #ff4757 !important;
  font-size: 0.7rem !important;
  animation: pulse-critical 0.6s ease-in-out infinite !important;
}

@keyframes pulse-urgent {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse-critical {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* Slider homepage */
.price-sticker--slider {
  top: 20px !important;
  right: 48px !important;
}

@media (max-width: 1200px) {
  .price-sticker--slider {
    top: 20px !important;
    right: 24px !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .price-sticker {
    top: 16px !important;
    right: -4px !important;
    padding: 10px 14px 10px 12px !important;
    min-width: 90px !important;
    max-width: 130px !important;
  }
  
  .price-sticker__price {
    font-size: 1.5rem !important;
  }
  
  .price-sticker__door {
    font-size: 0.65rem !important;
  }
  
  .price-sticker__door-price {
    font-size: 0.8rem !important;
  }
  
  .price-sticker--slider {
    top: 16px !important;
    right: 12px !important;
    transform: rotate(-1deg) scale(0.85) !important;
    transform-origin: top right !important;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   YouTube Thumbnail & Lightbox
   ───────────────────────────────────────────────────────────────────── */
.youtube-thumb {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.youtube-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-thumb:hover img {
  transform: scale(1.05);
}

.youtube-thumb__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.youtube-thumb:hover .youtube-thumb__play {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
}

/* YouTube Lightbox */
.yt-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.yt-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.yt-lightbox__content {
  position: relative;
  width: 90vw;
  max-width: 1200px;
}

.yt-lightbox__close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.yt-lightbox__close:hover {
  opacity: 1;
}

.yt-lightbox__video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.yt-lightbox__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .youtube-thumb__play {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .yt-lightbox__close {
    top: -40px;
    font-size: 2rem;
  }
}

/* ─────────────────────────────────────────────────────────────────────
   Button with Price Tag
   ───────────────────────────────────────────────────────────────────── */
.btn--with-price {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-right: 70px;
}

.btn__price-tag {
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%) rotate(8deg);
  background: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  color: #000;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.4);
  animation: wiggle-tag 3s ease-in-out infinite;
}

.btn__price-tag::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: inherit;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.2);
}

@keyframes wiggle-tag {
  0%, 100% { transform: translateY(-50%) rotate(8deg); }
  25% { transform: translateY(-50%) rotate(10deg); }
  75% { transform: translateY(-50%) rotate(6deg); }
}

/* ─────────────────────────────────────────────────────────────────────
   Promo Cards (Bundle & Carnet Sections)
   ───────────────────────────────────────────────────────────────────── */
.promo-section,
.carnet-section {
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, transparent 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 107, 107, 0.15);
  padding: 32px;
  margin-top: 24px;
}

.promo-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-card {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
  background: var(--bg-card);
  border: 2px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 12px 40px rgba(255, 107, 107, 0.2);
}

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

.promo-card__badge {
  position: absolute;
  top: -1px;
  left: 24px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 4px 16px rgba(255, 107, 107, 0.4);
}

.promo-card__content {
  position: relative;
  z-index: 1;
}

.promo-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.promo-card__desc {
  margin: 0 0 4px 0;
}

.promo-card__events {
  margin: 0;
  opacity: 0.7;
}

.promo-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.promo-card__old {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.promo-card__new {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #ff6b6b;
  line-height: 1;
}

.promo-card__cta {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 20px 20px;
  }
  
  .promo-card__badge {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .promo-card__pricing {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
}

/* Carnet Grid */
.carnet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.carnet-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
}

.carnet-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-glow);
}

.carnet-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}

.carnet-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}

.carnet-card__desc {
  margin: 0 0 12px 0;
}

.carnet-card__pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.carnet-card__old {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.carnet-card__new {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: var(--accent-primary);
}

/* ─────────────────────────────────────────────────────────────────────
   Print Styles
   ───────────────────────────────────────────────────────────────────── */
@media print {
  body::before,
  .topbar,
  .sticky-cta,
  .filters {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .card, .event-card, .list__item {
    border: 1px solid #ddd;
    box-shadow: none;
  }
}
