@font-face {
  font-family: Posterman;
  src: url(pof-media/posterman.otf);
}
:root {
  --neon-green: #39ff14;
  --electric-blue: #0066ff;
  --deep-blue: #0a1628;
  --darker-blue: #060e1a;
  --cyan-accent: #00e5ff;
  --yellow-roller: #ffd700;
  --pink-accent: #ff6b9d;
  --white: #f0f0f0;
  --gray: #8a9bb5;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--neon-green) var(--deep-blue);
}

body {
  font-family: var(--font-body);
  background: var(--darker-blue);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--neon-green);
  color: var(--deep-blue);
}

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

/* ═══ NAVIGATION ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav.scrolled {
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.5rem 2rem;
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--neon-green);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}
.nav-links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover {
  color: var(--neon-green);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-socials {
  display: flex;
  gap: 1rem;
}
.nav-socials a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1.1rem;
  transition:
    color 0.3s,
    transform 0.3s;
}
.nav-socials a:hover {
  color: var(--neon-green);
  transform: scale(1.2);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--neon-green);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 26, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  overflow-y: auto;
  padding: 2rem;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 3px;
  transition: color 0.3s;
}
.mobile-menu a:hover {
  color: var(--neon-green);
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, #0a1628 100%);
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% {
    background:
      radial-gradient(ellipse at 20% 50%, rgba(57, 255, 20, 0.15) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 20%, rgba(0, 102, 255, 0.2) 0%, transparent 50%),
      linear-gradient(180deg, #060e1a, #0a1628);
  }
  100% {
    background:
      radial-gradient(ellipse at 40% 30%, rgba(57, 255, 20, 0.2) 0%, transparent 60%),
      radial-gradient(ellipse at 60% 60%, rgba(0, 102, 255, 0.25) 0%, transparent 50%),
      linear-gradient(180deg, #060e1a, #0a1628);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 14, 26, 0.4) 0%,
    rgba(6, 14, 26, 0.2) 40%,
    rgba(6, 14, 26, 0.5) 80%,
    rgba(6, 14, 26, 1) 100%
  );
}
.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--neon-green);
  border: 1px solid rgba(57, 255, 20, 0.3);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInDown 1s 0.2s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  line-height: 0.9;
  letter-spacing: 5px;
  color: var(--white);
  text-shadow: 0 0 60px rgba(57, 255, 20, 0.3);
  animation: fadeInUp 1s 0.4s both;
}
.hero-title .accent {
  color: var(--neon-green);
  text-shadow:
    0 0 20px rgba(57, 255, 20, 0.6),
    0 0 60px rgba(57, 255, 20, 0.3);
}
.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  letter-spacing: 8px;
  color: var(--cyan-accent);
  margin-top: 0.5rem;
  animation: fadeInUp 1s 0.6s both;
}
.hero-dates {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  letter-spacing: 4px;
  color: var(--white);
  margin-top: 1.5rem;
  animation: fadeInUp 1s 0.8s both;
}
.hero-dates span {
  color: var(--yellow-roller);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}
.hero-cta {
  display: inline-flex;
  gap: 1.5rem;
  margin-top: 2rem;
  animation: fadeInUp 1s 1s both;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--deep-blue);
  background: var(--neon-green);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(57, 255, 20, 0.5);
}
.btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s;
}
.btn-secondary:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: bounce 2s infinite;
}
.hero-scroll span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  position: relative;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%,
  100% {
    opacity: 1;
    top: 6px;
  }
  50% {
    opacity: 0.3;
    top: 18px;
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--neon-green);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* ═══ COUNTDOWN ═══ */
.countdown-section {
  padding: 3.5rem 2rem;
  background: linear-gradient(180deg, var(--darker-blue), var(--deep-blue));
  text-align: center;
  position: relative;
}
.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  opacity: 0.3;
}
.countdown-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.countdown-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}
.countdown-unit {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ═══ SECTIONS COMMON ═══ */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  scroll-margin-top: 90px;
}
.programme-section {
  scroll-margin-top: 90px;
}
.soirees-section {
  scroll-margin-top: 90px;
}
.video-section {
  scroll-margin-top: 90px;
}
.gallery-section {
  scroll-margin-top: 90px;
}
.shop-section {
  scroll-margin-top: 90px;
}
.partners-section {
  scroll-margin-top: 90px;
}
.cta-section {
  scroll-margin-top: 90px;
}
.contact-section {
  scroll-margin-top: 90px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--neon-green);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  font-style: italic;
  text-shadow: 0 0 20px #9dff2e;
}
.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 750px;
  opacity: 0;
  transform: translateY(20px);
}
.visible .section-label,
.visible .section-title,
.visible .section-text {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.visible .section-title {
  transition-delay: 0.1s;
}
.visible .section-text {
  transition-delay: 0.2s;
}

/* ═══ ABOUT ═══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.about-poster {
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
}
.visible .about-poster {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}
.about-poster img {
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(57, 255, 20, 0.1);
  transition: transform 0.5s;
}
.about-poster:hover img {
  transform: scale(1.02);
}
.about-poster::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid rgba(57, 255, 20, 0.15);
  border-radius: 6px;
  pointer-events: none;
}
.about-info {
  opacity: 0;
  transform: translateX(40px);
}
.visible .about-info {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}
.about-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
}
.about-info p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.about-info .highlight {
  color: var(--neon-green);
  font-weight: 600;
}
.about-community {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.about-community h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--yellow-roller);
}
.about-points {
  list-style: none;
  margin-top: 1rem;
}
.about-points li {
  color: var(--gray);
  padding: 0.3rem 0;
  font-size: 0.95rem;
}
.about-points li::before {
  content: '👉 ';
}

/* ═══ PROGRAMME ═══ */
.programme-section {
  background: linear-gradient(180deg, var(--deep-blue), rgba(0, 102, 255, 0.04), var(--deep-blue));
  padding: 5rem 0;
}
.programme-day-block {
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.programme-day-header {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 3px;
  color: var(--yellow-roller);
  margin-bottom: 0.3rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}
.programme-day-venue {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.programme-day-venue a {
  color: var(--cyan-accent);
  text-decoration: none;
}
.programme-day-venue a:hover {
  text-decoration: underline;
}
.programme-events {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.programme-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  overflow: hidden;
}
.programme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--neon-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.programme-card:hover {
  background: rgba(57, 255, 20, 0.03);
  border-color: rgba(57, 255, 20, 0.15);
}
.programme-card:hover::before {
  transform: scaleY(1);
}
.visible .programme-card {
  opacity: 1;
  transform: translateY(0);
}
.visible .programme-card:nth-child(1) {
  transition-delay: 0.1s;
}
.visible .programme-card:nth-child(2) {
  transition-delay: 0.2s;
}
.visible .programme-card:nth-child(3) {
  transition-delay: 0.3s;
}
.visible .programme-card:nth-child(4) {
  transition-delay: 0.4s;
}
.programme-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-green);
  white-space: nowrap;
  min-width: 120px;
  padding-top: 0.2rem;
}
.programme-details {
  flex: 1;
}
.programme-event-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 2px;
  margin-bottom: 0.3rem;
}
.programme-event-desc {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
}
.programme-event-links {
  margin-top: 0.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.programme-event-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan-accent);
  text-decoration: none;
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.3rem 0.8rem;
  transition: all 0.3s;
}
.programme-event-links a:hover {
  border-color: var(--cyan-accent);
  background: rgba(0, 229, 255, 0.06);
}

/* ═══ STATS ═══ */
.stats-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(57, 255, 20, 0.04);
  border-top: 1px solid rgba(57, 255, 20, 0.1);
  border-bottom: 1px solid rgba(57, 255, 20, 0.1);
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid rgba(57, 255, 20, 0.06);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.5rem;
}

/* ═══ WORKSHOPS / PROF SLIDER ═══ */
.prof-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 2rem 0;
  margin-top: 1.5rem;
}

.prof-slider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
  height: 680px;
  transition: none;
}

.prof-slide {
  flex: 0 0 auto;
  position: absolute;
  width: 380px;
  height: 540px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.06);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  background: var(--deep-blue);
}

.prof-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.prof-slide-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  text-align: center;
  background: linear-gradient(0deg, rgba(6, 14, 26, 0.9) 0%, rgba(6, 14, 26, 0.5) 60%, transparent 100%);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.prof-slide.is-active .prof-slide-info {
  opacity: 1;
  transform: translateY(0);
}

.prof-slide-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: var(--white);
}
.prof-slide-style {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e040fb;
  margin-top: 0.3rem;
}

/* Slide states */
.prof-slide.is-active {
  z-index: 5;
  border-color: rgba(224, 64, 251, 0.35);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(224, 64, 251, 0.15);
}
.prof-slide.is-active:hover img {
  transform: scale(1.04);
}

.prof-slide.is-prev,
.prof-slide.is-next {
  z-index: 4;
  opacity: 0.6;
  filter: brightness(0.6);
}
.prof-slide.is-prev:hover,
.prof-slide.is-next:hover {
  opacity: 0.8;
}

.prof-slide.is-far-prev,
.prof-slide.is-far-next {
  z-index: 3;
  opacity: 0.3;
  filter: brightness(0.4);
}

.prof-slide.is-hidden {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

/* Arrows */
.prof-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(224, 64, 251, 0.3);
  background: rgba(6, 14, 26, 0.8);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.prof-arrow:hover {
  border-color: #e040fb;
  color: #e040fb;
  background: rgba(224, 64, 251, 0.1);
  box-shadow: 0 0 25px rgba(224, 64, 251, 0.3);
}
.prof-arrow-left {
  left: 2rem;
}
.prof-arrow-right {
  right: 2rem;
}

/* Nav */
.prof-slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}
.prof-counter {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gray);
}
.prof-counter .current {
  color: #e040fb;
  font-size: 1.1rem;
  font-weight: 700;
}
.prof-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.prof-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.prof-dot.active {
  background: #e040fb;
  box-shadow: 0 0 8px rgba(224, 64, 251, 0.5);
  width: 20px;
  border-radius: 3px;
}
.prof-dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 900px) {
  .prof-slide {
    width: 300px;
    height: 425px;
  }
  .prof-slider-track {
    height: 520px;
  }
}
@media (max-width: 600px) {
  .prof-slide {
    width: 260px;
    height: 370px;
  }
  .prof-slider-track {
    height: 450px;
  }
  .prof-arrow {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .prof-arrow-left {
    left: 0.5rem;
  }
  .prof-arrow-right {
    right: 0.5rem;
  }
}

/* ═══ SOIRÉES HORIZONTAL SLIDER ═══ */
.soirees-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--deep-blue), rgba(224, 64, 251, 0.04), var(--deep-blue));
  position: relative;
  overflow: hidden;
}
.soirees-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 64, 251, 0.4), transparent);
}
.soirees-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  text-align: center;
}

.soirees-slider {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  height: 420px;
  overflow: hidden;
}

.soirees-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.soiree-slide {
  position: absolute;
  top: 50%;
  height: 90%;
  max-height: 400px;
  width: 70%;
  max-width: 800px;
  transform: translateY(-50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.soiree-slide[data-state='active'] {
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  z-index: 3;
  border-color: rgba(224, 64, 251, 0.2);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(224, 64, 251, 0.1);
}
.soiree-slide[data-state='prev'] {
  left: -8%;
  transform: translate(0%, -50%) scale(0.85);
  opacity: 0.4;
  z-index: 2;
  filter: brightness(0.5);
}
.soiree-slide[data-state='next'] {
  left: 78%;
  transform: translate(0%, -50%) scale(0.85);
  opacity: 0.4;
  z-index: 2;
  filter: brightness(0.5);
}
.soiree-slide[data-state='hidden'] {
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.soiree-slide:hover:not([data-state='active']) {
  opacity: 0.6;
}

.soiree-img {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.soiree-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.soiree-slide[data-state='active']:hover .soiree-img img {
  transform: scale(1.05);
}
.soiree-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(6, 14, 26, 0.8) 100%);
}

.soiree-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.08), rgba(224, 64, 251, 0.05));
}
.soiree-day {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e040fb;
  margin-bottom: 0.5rem;
}
.soiree-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 3px;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.soiree-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--yellow-roller);
  margin-bottom: 1rem;
}
.soiree-desc {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.soiree-theme {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan-accent);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 0.3rem 0.8rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.soiree-cta {
  margin-top: auto;
}
.soiree-cta a {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  color: var(--deep-blue);
  background: #e040fb;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(224, 64, 251, 0.3);
}
.soiree-cta a:hover {
  box-shadow: 0 0 35px rgba(224, 64, 251, 0.5);
  transform: translateY(-2px);
}

.soirees-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 2rem;
}
.soirees-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(224, 64, 251, 0.25);
  background: rgba(224, 64, 251, 0.05);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  border-radius: 50%;
}
.soirees-nav button:hover {
  border-color: #e040fb;
  color: #e040fb;
  background: rgba(224, 64, 251, 0.1);
  box-shadow: 0 0 20px rgba(224, 64, 251, 0.2);
}

.soirees-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
}
.soirees-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.soirees-dot.active {
  background: #e040fb;
  box-shadow: 0 0 10px rgba(224, 64, 251, 0.5);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .soiree-slide {
    grid-template-columns: 1fr;
    width: 80%;
  }
  .soiree-img {
    min-height: 180px;
  }
  .soiree-img-overlay {
    background: linear-gradient(180deg, transparent 30%, rgba(6, 14, 26, 0.8) 100%);
  }
  .soirees-slider {
    height: 520px;
  }
  .soiree-slide[data-state='prev'] {
    left: -15%;
  }
  .soiree-slide[data-state='next'] {
    left: 85%;
  }
}
@media (max-width: 600px) {
  .soirees-slider {
    height: 480px;
  }
  .soiree-content {
    padding: 1.5rem;
  }
  .soiree-slide {
    width: 85%;
  }
}

/* ═══ VIDEO / MEDIAS ═══ */
.video-section {
  background: linear-gradient(180deg, var(--deep-blue), var(--darker-blue));
  padding: 5rem 2rem;
  text-align: center;
}
.video-embed {
  position: relative;
  max-width: 900px;
  margin: 2.5rem auto 0;
  aspect-ratio: 16/9;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s;
}
.video-embed:hover {
  border-color: rgba(57, 255, 20, 0.2);
  box-shadow: 0 0 40px rgba(57, 255, 20, 0.1);
}
.play-btn {
  width: 80px;
  height: 80px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent var(--neon-green);
  margin-left: 5px;
}
.video-embed:hover .play-btn {
  background: rgba(57, 255, 20, 0.1);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}
.video-caption {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gray);
  margin-top: 1.5rem;
  text-transform: uppercase;
}

/* ═══ GALLERY ═══ */
.gallery-section {
  padding: 5rem 0;
  background: var(--deep-blue);
  overflow: hidden;
  position: relative;
}
.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}
.gallery-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
}
.gallery-slider {
  display: flex;
  gap: 1.5rem;
  padding: 0 2rem;
  overflow: hidden;
  cursor: grab;
}
.gallery-slider.grabbing {
  cursor: grabbing;
}
.gallery-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.gallery-slide {
  flex: 0 0 auto;
  width: 420px;
  height: 300px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-slide:hover {
  border-color: rgba(57, 255, 20, 0.25);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(57, 255, 20, 0.08);
}
.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-slide:hover img {
  transform: scale(1.08);
}
.gallery-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 14, 26, 0.85) 100%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-slide:hover .gallery-slide-overlay {
  opacity: 1;
}
.gallery-slide-caption {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--white);
}
.gallery-slide-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--neon-green);
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.gallery-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem 0;
}
.gallery-arrows {
  display: flex;
  gap: 0.75rem;
}
.gallery-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.gallery-arrow:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  background: rgba(57, 255, 20, 0.06);
}
.gallery-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.gallery-dot.active {
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
  width: 24px;
  border-radius: 4px;
}
.gallery-counter {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gray);
}
.gallery-counter .current {
  color: var(--neon-green);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(6, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border: 1px solid rgba(57, 255, 20, 0.15);
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  margin-top: 1.5rem;
  text-align: center;
}
.lightbox-caption h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 3px;
}
.lightbox-caption p {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-green);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0.3rem;
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox-close:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(6, 14, 26, 0.7);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.lightbox-nav:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
}
.lightbox-prev {
  left: 2rem;
}
.lightbox-next {
  right: 2rem;
}

/* ═══ SHOP ═══ */
.shop-section {
  padding: 5rem 2rem;
  position: relative;
}
.shop-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 2.5rem auto 0;
}
.shop-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  opacity: 0;
  transform: translateY(25px);
}
.visible .shop-card {
  opacity: 1;
  transform: translateY(0);
}
.visible .shop-card:nth-child(1) {
  transition-delay: 0.05s;
}
.visible .shop-card:nth-child(2) {
  transition-delay: 0.1s;
}
.visible .shop-card:nth-child(3) {
  transition-delay: 0.15s;
}
.visible .shop-card:nth-child(4) {
  transition-delay: 0.2s;
}
.visible .shop-card:nth-child(5) {
  transition-delay: 0.25s;
}
.visible .shop-card:nth-child(6) {
  transition-delay: 0.3s;
}
.visible .shop-card:nth-child(7) {
  transition-delay: 0.35s;
}
.shop-card:hover {
  border-color: rgba(255, 215, 0, 0.25);
  transform: translateY(-5px);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 25px rgba(255, 215, 0, 0.06);
}
.shop-card-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.shop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.shop-card:hover .shop-card-img img {
  transform: scale(1.08);
}
.shop-card-info {
  padding: 1.2rem;
}
.shop-card-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.shop-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow-roller);
  margin-top: 0.4rem;
  display: inline-block;
}
.shop-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.shop-feature {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.visible .shop-feature {
  opacity: 1;
  transform: translateY(0);
}
.shop-feature img {
  display: block;
  width: 100%;
  height: auto;
}

/* ═══ PARTNERS ═══ */
.partners-section {
  background: var(--darker-blue);
  padding: 5rem 2rem;
  text-align: center;
}
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
  opacity: 0.5;
}
.partners-grid:hover {
  opacity: 0.8;
}
.partner-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 3px;
  color: var(--gray);
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s;
  text-decoration: none;
}
.partner-logo:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ═══ CTA ═══ */
.cta-section {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(57, 255, 20, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  position: relative;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
  position: relative;
}

/* ═══ CONTACT ═══ */
.contact-section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
  transition: all 0.3s;
}
.contact-card:hover {
  border-color: rgba(57, 255, 20, 0.15);
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: var(--neon-green);
}
.contact-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.8;
}
.contact-card a {
  color: var(--cyan-accent);
  text-decoration: none;
}
.contact-card a:hover {
  text-decoration: underline;
}

/* ═══ FOOTER ═══ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 2px;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--neon-green);
}
.footer-social {
  display: flex;
  gap: 1.5rem;
}
.footer-social a {
  color: var(--gray);
  text-decoration: none;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.footer-social a:hover {
  color: var(--neon-green);
  transform: translateY(-2px);
}

/* ═══ ANIMATIONS ═══ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .nav-links,
  .nav-socials {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }
  .programme-card {
    flex-direction: column;
    gap: 0.5rem;
  }
  .programme-time {
    min-width: unset;
  }
  .gallery-slide {
    width: 320px;
    height: 230px;
  }
}
@media (max-width: 600px) {
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  .stat-item {
    padding: 1.5rem 1rem;
  }
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .gallery-slide {
    width: 280px;
    height: 200px;
  }
  .gallery-nav {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
