/* ===== AL VOX — TORINO ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --viola: #7B2FBE;
  --viola-dark: #4A0E8F;
  --viola-light: #A855F7;
  --blu: #0EA5E9;
  --blu-elettro: #00D4FF;
  --blu-deep: #0A0A2E;
  --neon-pink: #FF00CC;
  --neon-green: #00FF88;
  --white: #F0E6FF;
  --dark: #050510;
  --glass: rgba(123, 47, 190, 0.12);
  --glass-border: rgba(0, 212, 255, 0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Rajdhani', sans-serif;
  background: var(--dark);
  color: var(--white);
  cursor: none;
  overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--blu-elettro);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-trail {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transition: transform 0.25s ease, left 0.12s ease, top 0.12s ease;
  mix-blend-mode: screen;
}

/* ===== AUDIO BUTTON ===== */
#audio-btn {
  position: fixed;
  top: 20px;
  right: 80px;
  z-index: 1000;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  padding: 10px 20px;
  color: var(--blu-elettro);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#audio-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}


/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 16, 0.7);
  border-bottom: 1px solid var(--glass-border);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  letter-spacing: 8px;
  background: linear-gradient(135deg, var(--viola-light), var(--blu-elettro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--blu-elettro);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--blu-elettro);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blu-elettro);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER MOBILE ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: none;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--blu-elettro);
  transition: all 0.3s ease;
  box-shadow: 0 0 6px var(--blu-elettro);
}

/* ===== HERO SECTION ===== */
#home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

/* Noise texture overlay */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
}

/* ===== LUCI ANIMATE ===== */
.lights-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.light-beam {
  position: absolute;
  bottom: 0;
  width: 3px;
  height: 70vh;
  transform-origin: bottom center;
  animation: beamSway linear infinite;
  opacity: 0;
}

.light-beam::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(8px);
}

.light-beam:nth-child(1) {
  left: 15%;
  background: linear-gradient(to top, var(--viola), transparent);
  animation-duration: 4.2s;
  animation-delay: 0s;
  width: 4px;
}
.light-beam:nth-child(2) {
  left: 30%;
  background: linear-gradient(to top, var(--blu-elettro), transparent);
  animation-duration: 3.8s;
  animation-delay: 0.5s;
}
.light-beam:nth-child(3) {
  left: 45%;
  background: linear-gradient(to top, var(--neon-pink), transparent);
  animation-duration: 5s;
  animation-delay: 1s;
  width: 2px;
}
.light-beam:nth-child(4) {
  left: 60%;
  background: linear-gradient(to top, var(--viola-light), transparent);
  animation-duration: 3.5s;
  animation-delay: 0.3s;
}
.light-beam:nth-child(5) {
  left: 75%;
  background: linear-gradient(to top, var(--blu-elettro), transparent);
  animation-duration: 4.8s;
  animation-delay: 0.8s;
  width: 4px;
}
.light-beam:nth-child(6) {
  left: 88%;
  background: linear-gradient(to top, var(--viola), transparent);
  animation-duration: 3.2s;
  animation-delay: 1.5s;
}
.light-beam:nth-child(7) {
  left: 22%;
  background: linear-gradient(to top, var(--neon-green), transparent);
  animation-duration: 6s;
  animation-delay: 2s;
  width: 2px;
}
.light-beam:nth-child(8) {
  left: 55%;
  background: linear-gradient(to top, var(--blu), transparent);
  animation-duration: 4s;
  animation-delay: 0.6s;
}

@keyframes beamSway {
  0%   { transform: rotate(-25deg); opacity: 0; }
  10%  { opacity: 0.7; }
  50%  { transform: rotate(25deg); opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { transform: rotate(-25deg); opacity: 0; }
}

/* Spot lights */
.spotlight {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: spotMove ease-in-out infinite;
  pointer-events: none;
}

.spotlight-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123,47,190,0.3), transparent 70%);
  top: -100px;
  left: -100px;
  animation-duration: 8s;
  animation-delay: 0s;
}

.spotlight-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,212,255,0.2), transparent 70%);
  top: -150px;
  right: -100px;
  animation-duration: 10s;
  animation-delay: 2s;
}

.spotlight-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,0,204,0.2), transparent 70%);
  bottom: 0;
  left: 50%;
  animation-duration: 7s;
  animation-delay: 1s;
}

@keyframes spotMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(80px, 40px) scale(1.2); }
  66%  { transform: translate(-40px, 80px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}

/* Particle dots */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(0) scale(0); opacity: 0; }
  10%  { opacity: 1; transform: scale(1); }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}

/* Scanline */
.scanline {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0, 212, 255, 0.01) 3px,
    rgba(0, 212, 255, 0.01) 4px
  );
}

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 20px;
  animation: heroIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--blu-elettro);
  margin-bottom: 20px;
  opacity: 0.8;
  animation: heroIn 1.5s 0.2s both;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  line-height: 0.85;
  letter-spacing: 10px;
  background: linear-gradient(135deg, #ffffff 0%, var(--viola-light) 40%, var(--blu-elettro) 70%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite, heroIn 1.5s 0.4s both;
  filter: drop-shadow(0 0 40px rgba(123, 47, 190, 0.6));
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-subtitle {
  font-family: 'Space Mono', monospace;
  font-size: clamp(0.6rem, 2vw, 0.85rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: rgba(240, 230, 255, 0.6);
  margin-top: 15px;
  animation: heroIn 1.5s 0.6s both;
}

.hero-location {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--blu-elettro);
  animation: heroIn 1.5s 0.8s both;
}

.hero-location::before,
.hero-location::after {
  content: '';
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blu-elettro));
}

.hero-location::after {
  background: linear-gradient(to left, transparent, var(--blu-elettro));
}

.hero-cta {
  margin-top: 50px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroIn 1.5s 1s both;
}

/* ===== POSTI DISPONIBILI ===== */
.seats-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  text-align: center;
  animation: heroIn 1.5s 1.2s both;
}

.seats-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(to bottom, var(--blu-elettro), var(--viola-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.5));
}

.seats-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(240, 230, 255, 0.5);
  text-transform: uppercase;
  margin-top: 4px;
}

.seats-pulse {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  margin: 8px auto 0;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--viola), var(--blu-elettro));
  color: white;
  border: none;
  border-radius: 2px;
  cursor: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.4s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.6), 0 0 80px rgba(123, 47, 190, 0.3);
  transform: translateY(-2px);
}

.btn-outline {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 15px 35px;
  background: transparent;
  color: var(--blu-elettro);
  border: 1px solid var(--blu-elettro);
  border-radius: 2px;
  cursor: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2), inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 30px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 100px 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--blu-elettro);
  opacity: 0.7;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  letter-spacing: 5px;
  background: linear-gradient(135deg, var(--white), var(--viola-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(123, 47, 190, 0.3));
}

.section-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--blu-elettro), transparent);
  margin: 20px auto 0;
  box-shadow: 0 0 10px var(--blu-elettro);
}

/* ===== ABOUT ===== */
#about {
  border-top: 1px solid var(--glass-border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 450px;
}

.about-box {
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
}

.about-box-main {
  width: 75%;
  height: 75%;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--viola-dark), var(--blu-deep));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 6rem;
  color: rgba(123,47,190,0.3);
  letter-spacing: 5px;
  animation: floatBox 5s ease-in-out infinite;
}

.about-box-accent {
  width: 45%;
  height: 45%;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 190, 0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  animation: floatBox 5s ease-in-out infinite reverse;
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.about-text h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  letter-spacing: 4px;
  color: var(--viola-light);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(240, 230, 255, 0.7);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(to bottom, var(--blu-elettro), var(--viola-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(240, 230, 255, 0.4);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== EVENTI ===== */
#eventi {
  background: linear-gradient(to bottom, transparent, rgba(123, 47, 190, 0.05), transparent);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  max-width: 100%;
  padding: 100px 0;
}

#eventi .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.eventi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.evento-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: none;
}

.evento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--viola), var(--blu-elettro));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.evento-card:hover::before {
  transform: scaleX(1);
}

.evento-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 60px rgba(123, 47, 190, 0.2);
}

.evento-date {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--blu-elettro);
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.evento-month {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(240, 230, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.evento-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.evento-desc {
  font-size: 0.9rem;
  color: rgba(240, 230, 255, 0.5);
  line-height: 1.6;
  font-weight: 300;
}

.evento-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  background: rgba(123, 47, 190, 0.3);
  border: 1px solid rgba(123, 47, 190, 0.5);
  border-radius: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--viola-light);
  text-transform: uppercase;
}

/* ===== PRENOTAZIONE ===== */
#prenotazione {
  border-top: 1px solid var(--glass-border);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--viola-light);
  margin-bottom: 20px;
}

.booking-info p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(240, 230, 255, 0.6);
  font-weight: 300;
  margin-bottom: 16px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 0;
  border-bottom: 1px solid var(--glass-border);
}

.info-icon {
  width: 36px;
  height: 36px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.info-text {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(240, 230, 255, 0.6);
}

.info-text strong {
  display: block;
  color: var(--white);
  font-size: 12px;
  margin-bottom: 2px;
}

/* ===== FORM ===== */
.booking-form {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 50px 45px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.booking-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--viola), var(--blu-elettro), var(--neon-pink));
}

.form-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 4px;
  margin-bottom: 36px;
  color: var(--white);
}

.form-group {
  margin-bottom: 28px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blu-elettro);
  margin-bottom: 10px;
  opacity: 0.8;
}

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(240, 230, 255, 0.15);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300D4FF' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 40px;
}

.form-group select option {
  background: #0A0A2E;
  color: var(--white);
}

.form-group input::placeholder {
  color: rgba(240, 230, 255, 0.2);
  font-weight: 300;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--blu-elettro);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.05);
  background: rgba(0, 212, 255, 0.04);
}

.form-counter {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(240, 230, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
}

.counter-btn {
  width: 46px;
  height: 46px;
  background: rgba(123, 47, 190, 0.2);
  border: none;
  color: var(--blu-elettro);
  font-size: 1.3rem;
  cursor: none;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-btn:hover {
  background: rgba(0, 212, 255, 0.2);
}

.counter-display {
  width: 60px;
  height: 46px;
  background: rgba(255,255,255,0.03);
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(240, 230, 255, 0.1);
  border-right: 1px solid rgba(240, 230, 255, 0.1);
}

.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(240, 230, 255, 0.3);
  margin-top: 8px;
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 18px;
  background: linear-gradient(135deg, var(--viola-dark), var(--viola), var(--blu-elettro));
  background-size: 200% 100%;
  color: white;
  border: none;
  border-radius: 2px;
  cursor: none;
  transition: all 0.4s ease;
  box-shadow: 0 0 30px rgba(123, 47, 190, 0.4);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.form-submit:hover::before {
  left: 100%;
}

.form-submit:hover {
  background-position: right center;
  box-shadow: 0 0 50px rgba(0, 212, 255, 0.5), 0 0 80px rgba(123, 47, 190, 0.3);
  transform: translateY(-2px);
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  text-align: center;
  padding: 40px;
}

.success-msg.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: pulse 2s ease-in-out infinite;
}

.success-msg h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 4px;
  color: var(--neon-green);
  margin-bottom: 10px;
  filter: drop-shadow(0 0 15px var(--neon-green));
}

.success-msg p {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(240, 230, 255, 0.5);
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 60px 40px;
  background: rgba(10, 10, 46, 0.5);
  backdrop-filter: blur(20px);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 10px;
  background: linear-gradient(135deg, var(--viola-light), var(--blu-elettro));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(240, 230, 255, 0.4);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blu-elettro);
  margin-bottom: 20px;
  opacity: 0.7;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li {
  font-size: 0.9rem;
  color: rgba(240, 230, 255, 0.4);
  transition: color 0.3s;
  cursor: none;
}

.footer-col ul li:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1300px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(240, 230, 255, 0.25);
  text-transform: uppercase;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 16, 0.97);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 8px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--blu-elettro);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  nav {
    padding: 20px 30px;
  }
  section {
    padding: 80px 30px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-visual {
    height: 280px;
  }
  .eventi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-inner > *:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-trail { display: none; }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #audio-btn {
    right: 70px;
    padding: 8px 14px;
    font-size: 9px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .hero-cta {
    gap: 14px;
  }

  .seats-badge {
    bottom: 20px;
    right: 20px;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .eventi-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 20px;
  }

  #eventi .inner {
    padding: 0 20px;
  }

  .booking-form {
    padding: 36px 24px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  footer {
    padding: 50px 20px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-location {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .btn-primary, .btn-outline {
    padding: 14px 24px;
    font-size: 10px;
  }

  .nav-logo {
    font-size: 2rem;
  }
}

body {
  padding-top: 90px;
}

.gallery-page {
  padding: 100px 20px;
  text-align: center;
}

.gallery-page h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.back-btn {
  display: inline-block;
  margin-bottom: 40px;
  color: var(--blu-elettro);
  text-decoration: none;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.faq-section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  color: white;
}

.faq-title {
  text-align: center;
  font-size: 40px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  opacity: 0.6;
  margin-bottom: 40px;
}

.faq-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: #00D4FF;
  transform: translateY(-2px);
}

.faq-question {
  font-weight: bold;
  margin-bottom: 8px;
  color: #00D4FF;
  letter-spacing: 1px;
}

.faq-answer {
  opacity: 0.8;
  font-size: 14px;
  line-height: 1.4;
}

.social-section {
  padding: 80px 20px;
  text-align: center;
}

.social-title {
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.social-sub {
  opacity: 0.6;
  margin-bottom: 40px;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  padding: 14px 28px;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  border: 1px solid;
  transition: 0.3s;
}

/* INSTAGRAM */
.social-btn.insta {
  border-color: #E1306C;
  color: #E1306C;
}

.social-btn.insta:hover {
  background: #E1306C;
  color: white;
}

/* TIKTOK */
.social-btn.tiktok {
  border-color: #00F2EA;
  color: #00F2EA;
}

.social-btn.tiktok:hover {
  background: #00F2EA;
  color: black;
}

/* WHATSAPP */
.social-btn.whatsapp {
  border-color: #25D366;
  color: #25D366;
}

.social-btn.whatsapp:hover {
  background: #25D366;
  color: black;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(10,10,20,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  padding: 18px;
  border-radius: 18px;
  z-index: 99999;
  box-shadow: 0 0 30px rgba(0,212,255,0.12);
  animation: fadeUp .5s ease;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content h3 {
  color: var(--blu-elettro);
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: 2px;
}

.cookie-content p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  line-height: 1.5;
}

.cookie-btn {
  background: linear-gradient(135deg, var(--viola-light), var(--blu-elettro));
  border: none;
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  transition: .3s;
}

.cookie-btn:hover {
  transform: scale(1.05);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:768px){

  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-btn{
    width: 100%;
  }

}