/* ============================================
   12th Audio Video Show 2026 - Microsite Styles
   ============================================ */

/* ---------- Font Variables ---------- */
:root {
  --font-serif-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', 'Montserrat', system-ui, sans-serif;

  --gold: #C5A059;
  --gold-light: #E8D09A;
  --gold-dark: #8E6D2D;
  --gold-gradient: linear-gradient(135deg, #E8D09A 0%, #C5A059 50%, #8E6D2D 100%);
  --matte-black: #121212;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-gold: rgba(197, 160, 89, 0.1);
  --glass-gold-border: rgba(197, 160, 89, 0.2);
  --peach: #F4A460;
  --peach-light: #F4B878;
  --blue: #1E90FF;
  --cyan: #00BFFF;
  --orange: #FF6B35;
  --red: #FF4500;
}

/* ---------- Base ---------- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-serif-display);
  background: #000;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(197, 160, 89, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(244, 164, 96, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

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

/* ---------- Scroll Animations ---------- */

[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animated {
  opacity: 1;
}

/* Fade In Up */
[data-animate="fade-in-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in-up"].animated {
  transform: translateY(0);
}

/* Fade In Left */
[data-animate="fade-in-left"] {
  transform: translateX(-40px);
}

[data-animate="fade-in-left"].animated {
  transform: translateX(0);
}

/* Fade In Right */
[data-animate="fade-in-right"] {
  transform: translateX(40px);
}

[data-animate="fade-in-right"].animated {
  transform: translateX(0);
}

/* Zoom In */
[data-animate="zoom-in"] {
  transform: scale(0.9);
}

[data-animate="zoom-in"].animated {
  transform: scale(1);
}

/* ---------- Enhanced Visual Effects ---------- */

/* Glassmorphism Effects */
.section-image img,
.guest-image img {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Parallax Container */
.section {
  position: relative;
  overflow: hidden;
}

/* Gradient Overlays */
.section-alt {
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.section-alt .section-container {
  position: relative;
  z-index: 2;
}

/* Shimmer Effect on Images */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.guest-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: shimmer 3s infinite;
  z-index: 1;
}

/* Pulse Animation for Icons */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

.highlight-icon,
.feature-icon {
  animation: pulse-glow 3s ease-in-out infinite;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-icon {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 60;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
  width: 100%;
}

/* ---------- Hero Logo ---------- */
.hero-logo {
  width: 100%;
  max-width: 620px;
  margin-bottom: 0px;
}

.hero-logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 60px rgba(212, 168, 83, 0.2));
  animation: heroZoomIn 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes heroZoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- Tagline ---------- */
.tagline {
  font-family: var(--font-serif-display);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---------- Heading Group ---------- */
.heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 24px;
  animation: heroFadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}

.h2 {
  font-family: var(--font-serif-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.h1 {
  font-family: var(--font-serif-display);
  font-size: 46px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  background: linear-gradient(180deg, #F0D890 0%, #D4A853 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h3 {
  font-family: var(--font-serif-display);
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
}

.event-days {
  font-size: 28px;
  letter-spacing: 3px;
  color: #fff;
  font-weight: 600;
  text-transform: none;
  font-family: var(--font-serif-display);
}

/* ---------- Countdown ---------- */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  animation: heroFadeUp 1s cubic-bezier(0.2, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}

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

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-number {
  font-family: var(--font-serif-display);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 2px;
  transition: opacity 0.3s ease;
  font-variant-numeric: tabular-nums;
}

.countdown-sep {
  font-family: var(--font-serif-display);
  font-size: 72px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 28px;
}

.countdown-label {
  font-family: var(--font-serif-display);
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.5;
  margin-top: 8px;
}

/* ---------- CTA Section (inside wave) ---------- */
.cta-section {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
  pointer-events: auto;
}

.cta-section .cta-container {
  gap: 32px;
}

/* ---------- CTA Buttons ---------- */
.cta-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 44px;
  background: linear-gradient(135deg, #D4A853 0%, #C5A059 50%, #B8924A 100%);
  border: none;
  border-radius: 4px;
  color: #0A0A0A;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
              0 0 40px rgba(197, 160, 89, 0.15);
  position: relative;
  overflow: hidden;
}

.cta-btn::after {
  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.6s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              0 0 60px rgba(197, 160, 89, 0.25);
  background: linear-gradient(135deg, #E8D09A 0%, #C5A059 50%, #D4A853 100%);
}

.cta-btn:hover::after {
  left: 100%;
}

.cta-btn-alt {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-alt:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5),
              0 0 40px rgba(197, 160, 89, 0.1);
}

.cta-btn-alt::after {
  display: none;
}

.cta-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.cta-btn:active {
  transform: scale(0.97) translateY(0);
}

/* ---------- Background Visual Bars ---------- */
.visual-bars {
  position: relative;
  height: 400px;
  margin-top: -220px;
  pointer-events: none;
  z-index: 2;
}

.bars-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0 4px;
}

.visual-bar {
  width: 7px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 2px;
  opacity: 0.3;
  animation: barWave 3.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  filter: blur(1px);
}

@keyframes barWave {
  0%, 100% {
    transform: translateY(160px);
    opacity: 0.15;
    filter: brightness(0.5) blur(1.2px);
  }
  25% {
    transform: translateY(60px);
    opacity: 0.5;
    filter: brightness(0.8) blur(1px);
  }
  50% {
    transform: translateY(0px);
    opacity: 0.9;
    filter: brightness(1.2) blur(0.6px);
  }
  75% {
    transform: translateY(60px);
    opacity: 0.5;
    filter: brightness(0.8) blur(1px);
  }
}



/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-container {
    padding: 16px 24px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-link {
    font-size: 14px;
  }

  .h1 {
    font-size: 34px;
  }

  .h2 {
    font-size: 22px;
  }

  .h3 {
    font-size: 24px;
  }

  .event-days {
    font-size: 22px;
  }

  .countdown-number,
  .countdown-sep {
    font-size: 56px;
  }

  .hero-logo {
    max-width: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-logo-icon {
    height: 40px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 20px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 55;
    transform: translateX(100%);
    opacity: 0;
    display: none;
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    display: flex;
  }

  .nav-link {
    font-size: 18px;
  }

  .nav-container {
    padding: 14px 16px;
  }

  .nav-logo-text {
    font-size: 13px;
  }

  .hero {
    padding: 90px 16px 0;
    min-height: calc(100vh - 64px);
  }

  .visual-bar {
    width: 4px;
    height: 240px;
    animation-name: barWaveMobile;
  }

  @keyframes barWaveMobile {
    0%, 100% {
      transform: translateY(200px);
      opacity: 0.15;
      filter: brightness(0.5) blur(1.2px);
    }
    25% {
      transform: translateY(80px);
      opacity: 0.5;
      filter: brightness(0.8) blur(1px);
    }
    50% {
      transform: translateY(0px);
      opacity: 0.9;
      filter: brightness(1.2) blur(0.6px);
    }
    75% {
      transform: translateY(80px);
      opacity: 0.5;
      filter: brightness(0.8) blur(1px);
    }
  }

  .hero-logo {
    max-width: 90vw;
    margin-bottom: 24px;
  }

  .h1 {
    font-size: 30px;
    letter-spacing: 0.5px;
  }

  .h2 {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .h3 {
    font-size: 20px;
  }

  .event-days {
    font-size: 18px;
  }

  .tagline {
    font-size: 11px;
    letter-spacing: 1.5px;
  }

  .countdown {
    gap: 12px;
    margin-bottom: 36px;
  }

  .countdown-number,
  .countdown-sep {
    font-size: 40px;
  }

  .countdown-label {
    font-size: 11px;
  }

  .cta-container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .cta-btn {
    width: auto;
    padding: 10px 28px;
    font-size: 15px;
  }

  .heading-group {
    margin-bottom: 28px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .h1 {
    font-size: 24px;
  }

  .countdown-number,
  .countdown-sep {
    font-size: 32px;
  }

  .countdown {
    gap: 8px;
  }

  .countdown-label {
    font-size: 10px;
  }

  /* Guest nav & dots mobile */
  .guest-nav.slick-prev,
  .guest-nav.slick-next {
    width: 28px;
    height: 28px;
    font-size: 16px;
    background: rgba(0, 0, 0, 0.7);
  }

  .guest-dots.slick-dots {
    margin-top: 20px;
    gap: 8px;
  }

  .guest-dots.slick-dots li button {
    width: 6px;
    height: 6px;
  }

  .guest-dots.slick-dots li.slick-active button {
    width: 18px;
    height: 6px;
  }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  padding: 100px 24px;
  background: #000;
  position: relative;
  overflow: hidden;
}

/* Ambient gold glow that follows mouse */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(197,160,89,0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
  transition: background 0.08s ease;
}

.section-alt::before {
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 50%), rgba(197,160,89,0.06) 0%, transparent 60%);
  z-index: 1;
  height: auto;
}

.section-container,
.section-content-full {
  position: relative;
  z-index: 1;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(197,160,89,0.1) 15%, var(--gold) 50%, rgba(197,160,89,0.1) 85%, transparent 95%);
  pointer-events: none;
  z-index: 2;
  animation: dividerShimmer 4s ease-in-out infinite;
}

/* Gold diamond accent at center of divider */
.section-diamond {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.3;
  z-index: 3;
  pointer-events: none;
  animation: diamondPulse 4s ease-in-out infinite;
}

@keyframes dividerShimmer {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

@keyframes diamondPulse {
  0%, 100% { 
    opacity: 0.2; 
    transform: translateX(-50%) scale(1);
  }
  50% { 
    opacity: 0.6; 
    transform: translateX(-50%) scale(1.5);
  }
}

/* Hide divider on the last section */
.section:last-child::after {
  display: none;
}

.section-alt {
  background: #0A0A0A;
}

/* The Event section - add extra top margin */
#event {
  margin-top: 80px;
  padding-top: 120px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.section-content,
.section-image {
  flex: 1;
}

.section-content-full {
  flex: 1;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.section-image {
  position: relative;
  overflow: visible;
  border-radius: 4px;
}

.section-image::before {
  content: '';
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.section-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 1;
  pointer-events: none;
}

.section-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 2;
  filter: brightness(1.15) contrast(1.05);
}

.section-image:hover img {
  transform: scale(1.02);
  filter: brightness(1.25) contrast(1.1);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.7);
}

/* ---------- Organizer Logo ---------- */
#organizer .section-image {
  max-width: 420px;
  margin: 0 auto;
}

#organizer .section-image::before,
#organizer .section-image::after {
  display: none;
}

#organizer .section-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  filter: brightness(1.15) contrast(1.05);
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Gold shimmer sweep */
#organizer .section-image {
  position: relative;
  overflow: hidden;
}

#organizer .section-image::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(197, 160, 89, 0.15) 45%,
    rgba(232, 208, 154, 0.3) 50%,
    rgba(197, 160, 89, 0.15) 55%,
    transparent 70%
  );
  border: none;
  z-index: 3;
  pointer-events: none;
  animation: shimmerSweep 4s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes shimmerSweep {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.section-title {
  font-family: var(--font-serif-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0 0 16px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  position: relative;
  display: inline-block;
}

.section-title::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.section-content .section-title::before {
  left: 0;
  transform: none;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 5px;
  text-transform: uppercase;
  margin: 0 0 40px;
  position: relative;
  padding-bottom: 20px;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}

.section-content .section-subtitle::after {
  left: 0;
  transform: none;
}

.section-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  letter-spacing: 0.5px;
  margin: 0 0 24px;
}

.section-desc strong {
  color: var(--gold-light);
  font-weight: 600;
}

.section-desc:last-child {
  margin-bottom: 0;
}

/* ---------- Rundown Tabs ---------- */

.rundown-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 48px auto 0;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 6px;
  max-width: 520px;
  overflow: hidden;
}

.rundown-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  outline: none;
}

.rundown-tab .tab-num {
  font-family: var(--font-serif-display);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.rundown-tab .tab-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.rundown-tab .tab-date {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  transition: color 0.4s ease;
}

.rundown-tab:hover .tab-label {
  color: rgba(255, 255, 255, 0.6);
}

.rundown-tab.active .tab-num {
  color: var(--gold-light);
}

.rundown-tab.active .tab-label {
  color: #fff;
}

.rundown-tab.active .tab-date {
  color: var(--gold);
}

.tab-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(33.333% - 8px);
  height: calc(100% - 12px);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  pointer-events: none;
}

/* Tab indicator positions */
.rundown-tabs[data-active="1"] .tab-indicator { transform: translateX(0); }
.rundown-tabs[data-active="2"] .tab-indicator { transform: translateX(100%); }
.rundown-tabs[data-active="3"] .tab-indicator { transform: translateX(200%); }

/* ---------- Rundown Panels ---------- */

.rundown-panels {
  position: relative;
  min-height: 420px;
  margin-top: 40px;
}

.rundown-panel {
  display: none;
  animation: none;
}

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

.rundown-panel.active .rundown-day {
  animation: panelSlideUp 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.rundown-panel.active .rd-item {
  animation: itemFadeIn 0.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
  animation-delay: calc(0.1s + (var(--i) * 0.08s));
  opacity: 0;
  transform: translateY(16px);
}

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

@keyframes itemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Rundown Day Card ---------- */

.rundown-day {
  background: linear-gradient(180deg, #141414 0%, #0E0E0E 100%);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 48px 44px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  max-width: 640px;
  margin: 0 auto;
}

.rundown-day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.6;
}

.rundown-day-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  position: relative;
}

.rundown-day-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.rundown-date {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.rundown-day-name {
  font-family: var(--font-serif-display);
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.rundown-topic {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  color: rgba(197, 160, 89, 0.7);
  letter-spacing: 1px;
  display: block;
}

.rundown-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rundown-list .rd-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.rundown-list .rd-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.rundown-list .rd-item:first-child {
  padding-top: 0;
}

.rundown-list .rd-item:hover {
  padding-left: 10px;
}

.rundown-time {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  min-width: 56px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  padding-top: 1px;
}

.rundown-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rundown-item {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.4;
  font-weight: 400;
}

.rundown-venue {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  color: rgba(197, 160, 89, 0.55);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* ---------- Organizer Features ---------- */

.organizer-feature {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: all 0.5s ease;
}

.organizer-feature:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateX(10px);
}

.feature-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.8;
}

.feature-text {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-weight: 300;
}

/* Guest Carousel - Clean & Simple */

.guest-carousel {
  position: relative;
  margin-top: 48px;
}

.guest-track {
  margin: 0 -14px;
}

.guest-track .slick-slide {
  padding: 0 14px;
  height: auto;
  display: flex;
}

.guest-track .slick-track {
  display: flex;
}

.guest-track .slick-slide > div:only-child {
  height: 100%;
  display: flex;
  width: 100%;
}

.guest-card.slick-slide {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  float: none;
  height: auto;
  padding: 60px 20px 32px !important;
}

.guest-card.slick-slide .guest-image {
  width: 140px !important;
  height: 140px !important;
  flex: 0 0 auto;
  align-self: center;
}

.guest-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.guest-card:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.guest-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(197, 160, 89, 0.3);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.guest-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

.guest-card:hover .guest-image {
  border-color: var(--gold-light);
  transform: scale(1.05);
}

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

.guest-name {
  font-family: var(--font-serif-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  text-align: center;
  width: 100%;
  display: block;
}

.guest-card:hover .guest-name {
  color: var(--gold-light);
}

.guest-company {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
  display: block;
}

/* --- Slick Nav (Guest) --- */
.guest-nav.slick-prev,
.guest-nav.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  z-index: 5;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.3s ease;
  outline: none;
  font-size: 0;
}
.guest-nav.slick-prev::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
  margin-left: 4px;
}
.guest-nav.slick-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  margin-right: 4px;
}

.guest-nav:hover {
  background: rgba(197, 160, 89, 0.15);
  border-color: rgba(197, 160, 89, 0.3);
  color: var(--gold-light);
}

.guest-nav.slick-prev { left: -20px; }
.guest-nav.slick-next { right: -20px; }

/* Slick Dots (Guest) */
.guest-dots.slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.guest-dots.slick-dots li {
  width: auto;
  height: auto;
  margin: 0 5px;
}

.guest-dots.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
  outline: none;
  font-size: 0;
}

.guest-dots.slick-dots li.slick-active button {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.guest-dots.slick-dots li button:hover {
  background: rgba(197, 160, 89, 0.5);
}

.guest-dots.slick-dots li button::before {
  display: none;
}

/* ---------- Artist Grid ---------- */
/* Artist Background Decorations */
.artist-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.music-note {
  position: absolute;
  font-size: 48px;
  color: rgba(244, 164, 96, 0.15);
  animation: float-note 6s ease-in-out infinite;
  filter: blur(1px);
}

.note-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.note-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1.5s;
}

.note-3 {
  bottom: 30%;
  left: 12%;
  animation-delay: 3s;
}

.note-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 4.5s;
}

@keyframes float-note {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.15;
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(-40px) rotate(-5deg);
    opacity: 0.15;
  }
  75% {
    transform: translateY(-20px) rotate(3deg);
    opacity: 0.25;
  }
}

.sound-wave {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(244, 164, 96, 0.3), transparent);
  animation: pulse-wave 3s ease-in-out infinite;
}

.wave-1 {
  top: 40%;
  left: 0;
  right: 0;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 35%;
  left: 0;
  right: 0;
  animation-delay: 1.5s;
}

@keyframes pulse-wave {
  0%, 100% {
    opacity: 0;
    transform: scaleX(0.5);
  }
  50% {
    opacity: 0.5;
    transform: scaleX(1);
  }
}

/* Artist Stats */
.artist-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 40px auto 0;
  max-width: 800px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  background: linear-gradient(145deg, rgba(244, 164, 96, 0.08) 0%, rgba(244, 164, 96, 0.03) 100%);
  border: 1px solid rgba(244, 164, 96, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 164, 96, 0.4);
  box-shadow: 0 8px 30px rgba(244, 164, 96, 0.2);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 12px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.stat-value {
  font-family: var(--font-serif-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--peach);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
}

/* Artist Grid */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.artist-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--matte-black);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.artist-card:hover {
  transform: translateY(-10px);
  border-color: var(--peach-light);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(244, 164, 96, 0.1);
}

.artist-image {
  width: 100%;
  height: 350px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
  border: none;
  box-shadow: none;
}

.artist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.3) contrast(1.1) brightness(0.9);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.artist-card:hover .artist-image img {
  filter: sepia(0) contrast(1) brightness(1.1);
  transform: scale(1.1);
}

.artist-card-body {
  padding: 30px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.artist-name {
  font-family: var(--font-serif-display);
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 1px;
}

.artist-origin {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--peach-light);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.artist-genre {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  padding: 0;
  background: none;
  border: none;
  border-left: 2px solid var(--peach);
  padding-left: 12px;
  margin-top: 10px;
}

.artist-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: #fff;
  color: #000;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 10;
  border-radius: 0;
}

/* ---------- Floor Tabs ---------- */

.floor-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 48px auto 0;
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 6px;
  max-width: 560px;
  overflow: hidden;
}

.floor-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 16px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  outline: none;
}

.floor-tab .ft-num {
  font-family: var(--font-serif-display);
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
  transition: color 0.4s ease;
  line-height: 1.2;
}

.floor-tab .ft-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.4s ease;
}

.floor-tab .ft-desc {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}

.floor-tab:hover .ft-label {
  color: rgba(255, 255, 255, 0.6);
}

.floor-tab.active .ft-num {
  color: var(--gold-light);
}

.floor-tab.active .ft-label {
  color: #fff;
}

.floor-tab.active .ft-desc {
  color: var(--gold);
}

.ft-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(33.333% - 8px);
  height: calc(100% - 12px);
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 8px;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  pointer-events: none;
}

.floor-tabs[data-active="1"] .ft-indicator { transform: translateX(0); }
.floor-tabs[data-active="2"] .ft-indicator { transform: translateX(100%); }
.floor-tabs[data-active="3"] .ft-indicator { transform: translateX(200%); }

/* ---------- Floor Panels ---------- */

.floor-panels {
  position: relative;
  margin-top: 40px;
  min-height: 400px;
}

.floor-panel {
  display: none;
}

.floor-panel.active {
  display: block;
  animation: floorFadeIn 0.6s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes floorFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.floor-image-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6),
              0 0 40px rgba(197, 160, 89, 0.08);
  border: 1px solid var(--glass-border);
}

.floor-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.floor-image-wrap:hover img {
  transform: scale(1.03);
}

.floor-image-wrap a {
  display: block;
  position: relative;
  cursor: pointer;
}

.floor-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
  z-index: 3;
  pointer-events: none;
}

.floor-image-wrap:hover .floor-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.floor-image-wrap a:hover .floor-zoom-icon {
  background: rgba(197, 160, 89, 0.7);
  border-color: var(--gold);
}

/* Fancybox custom styling */
.fancybox-container {
  --fancybox-bg: rgba(0, 0, 0, 0.92);
}

.fancybox-toolbar {
  --fancybox-color: #fff;
}

.fancybox-infobar {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.fancybox-caption {
  font-family: var(--font-serif-display);
  font-size: 15px;
  padding: 18px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.floor-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  color: #000;
  background: var(--gold);
  padding: 8px 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  z-index: 2;
  border-radius: 3px;
}

.floor-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-family: var(--font-serif-display);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  z-index: 2;
}

/* ---------- Experience Highlights ---------- */

.experience-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.highlight-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.highlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, opacity 0.6s ease;
  animation: highlightFadeIn 0.8s ease forwards;
  opacity: 0;
}

@keyframes highlightFadeIn {
  from { opacity: 0; transform: scale(1.05); }
  to   { opacity: 1; transform: scale(1); }
}

.highlight-box:hover .highlight-img {
  transform: scale(1.08);
}

.highlight-box:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--gold);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.highlight-icon {
  font-size: 52px;
  margin-bottom: 25px;
  filter: grayscale(100%) brightness(1.5);
  transition: all 0.5s ease;
}

.highlight-box:hover .highlight-icon {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

.highlight-title {
  font-family: var(--font-serif-display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.experience-footer {
  margin-top: 48px !important;
}

.highlight-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  letter-spacing: 0.5px;
  font-weight: 300;
}

/* ---------- Register Form ---------- */

.register-form-wrap {
  margin-top: 40px;
}
.register-form-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.reg-left {
  flex: 1;
  min-width: 280px;
}
.reg-right {
  flex: 1;
  min-width: 300px;
}

.reg-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.reg-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  box-sizing: border-box;
}
.reg-input:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.reg-input::placeholder { color: rgba(255,255,255,0.25); }
select.reg-input option { background: #222; color: #fff; }

.reg-err {
  font-family: var(--font-sans);
  font-size: 11px;
  color: #ff6b6b;
  margin-top: 4px;
  min-height: 16px;
}

.reg-check-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.reg-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
}
.reg-check input[type=checkbox] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
}

.reg-btn {
  width: 100%;
  padding: 12px;
  background: var(--gold-gradient);
  border: none;
  border-radius: 6px;
  color: #000;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.reg-btn:hover { opacity: 0.9; }
.reg-btn:disabled { opacity: 0.5; cursor: default; }

.reg-success {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: #25D366;
  padding: 20px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
.reg-error {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  color: #ff6b6b;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .register-form-inner {
    flex-direction: column;
    gap: 24px;
  }
  .reg-left, .reg-right {
    min-width: 100%;
  }
  .reg-check-group {
    grid-template-columns: 1fr;
  }
}

/* ---------- Venue Info ---------- */

/* ---------- Exhibitor Carousel ---------- */

.exhibitor-carousel {
  position: relative;
  margin: 40px auto 0;
}

.exhibitor-track {}

.exhibitor-slide {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 4px;
}

.exhibitor-slide .exhibitor-card {
  height: auto;
  min-height: 130px;
}

.brand-carousel .exhibitor-card {
  min-height: 180px;
}

.exhibitor-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  transition: background 0.3s, border-color 0.3s;
}
.exhibitor-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(197,160,89,0.3);
}

.exhibitor-card .ex-icon {
  font-size: 80px;
  margin-bottom: 10px;
  opacity: 0.5;
  line-height: 1;
}
.exhibitor-card .ex-photo {
  width: 80%;
  max-width: 110px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 6px;
  object-fit: contain;
  margin-bottom: 10px;
  background: #fff;
  padding: 12px;
  box-sizing: border-box;
}
.brand-carousel .exhibitor-card .ex-photo {
  width: 85%;
  max-width: 130px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 6px;
  object-fit: contain;
  margin-bottom: 12px;
  background: #fff;
  padding: 14px;
  box-sizing: border-box;
}
.brand-carousel .exhibitor-card {
  min-height: 220px;
  padding: 24px 16px;
}
.brand-carousel .exhibitor-card .ex-name {
  font-size: 12px;
}
.brand-carousel .exhibitor-card .ex-icon {
  font-size: 80px;
  margin-bottom: 12px;
  line-height: 1;
}
.exhibitor-card .ex-name {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.5px;
}
.exhibitor-card .ex-room {
  font-family: var(--font-sans);
  font-size: 10px;
  color: var(--gold);
  margin-top: 4px;
  letter-spacing: 1px;
}
.exhibitor-card .ex-brands {
  font-family: var(--font-sans);
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
  line-height: 1.2;
  max-height: 22px;
  overflow: hidden;
}

.exhibitor-nav.slick-prev,
.exhibitor-nav.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  z-index: 10;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.3s, color 0.3s;
  font-size: 0;
}
.exhibitor-nav.slick-prev::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 0 2px 2px;
  transform: rotate(45deg);
  margin-left: 4px;
}
.exhibitor-nav.slick-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  margin-right: 4px;
}
.exhibitor-nav:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}
.exhibitor-nav.slick-prev { left: -20px; }
.exhibitor-nav.slick-next { right: -20px; }
.exhibitor-nav.slick-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.exhibitor-dots.slick-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  position: relative;
  bottom: auto;
  padding: 0;
}
.exhibitor-dots.slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.exhibitor-dots.slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
  font-size: 0;
}
.exhibitor-dots.slick-dots li.slick-active button {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}
.exhibitor-dots.slick-dots li button::before {
  display: none;
}

.venue-info {
  background: linear-gradient(145deg, rgba(212, 168, 83, 0.08) 0%, rgba(212, 168, 83, 0.04) 100%);
  border: 2px solid rgba(212, 168, 83, 0.3);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
  text-align: center;
}

.venue-title {
  font-family: var(--font-serif-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.venue-info {
  background: var(--matte-black);
  border: 1px solid var(--gold-dark);
  border-radius: 4px;
  padding: 80px 40px;
  margin-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.venue-info::before {
  content: "LOCATION";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 15vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  z-index: 0;
  pointer-events: none;
  white-space: nowrap;
}

.venue-title {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 5px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.venue-name {
  font-family: var(--font-serif-display);
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.venue-address {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.venue-description {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.venue-floors {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--gold-light);
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  margin-top: 40px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ============================================
   BOTTOM SECTION — Sponsor / Partner / Contact / Footer
   ============================================ */

.bottom-section {
  position: relative;
  background: linear-gradient(180deg, #0c0c2e 0%, #0a0a20 50%, #000 100%);
  padding: 80px 24px 0;
  text-align: center;
  overflow: hidden;
}

/* Subtle background decoration */
.bottom-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197,160,89,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.sponsor-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px 40px;
}
.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-item img {
  height: 80px;
  width: auto;
  opacity: 0.5;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.sponsor-item img:hover {
  opacity: 1;
  transform: scale(1.08);
}
.sponsor-item-text {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.partner-card {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  height: 160px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  flex-shrink: 0;
}
.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.partner-card img {
  max-width: 85%;
  max-height: 70%;
  object-fit: contain;
  transition: transform 0.3s;
}
.partner-card:hover img {
  transform: scale(1.05);
}

/* Divider */
.bottom-divider {
  width: 80px;
  height: 1px;
  background: var(--gold-gradient);
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}

/* Contact CTA */
.cta-wrap {
  max-width: 700px;
  margin: 0 auto 0;
  padding: 0 24px 60px;
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197,160,89,0.1);
  border: 1px solid rgba(197,160,89,0.2);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.cta-heading {
  font-family: var(--font-serif-display);
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.3;
}
.cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #25D366, #1da851);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.cta-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  color: #fff !important;
}
.cta-wa-icon {
  font-size: 22px;
  line-height: 1;
}
.cta-wa-text {
  line-height: 1;
}

/* Footer */
.bottom-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 50px 24px 40px;
  position: relative;
  z-index: 1;
}
.bottom-footer-inner {
  max-width: 900px;
  margin: 0 auto;
}
.bottom-footer-logo {
  text-align: center;
  margin-bottom: 28px;
}
.bottom-footer-logo img {
  height: 55px;
  opacity: 0.7;
  display: inline-block;
}
.bottom-footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
}
.bottom-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.4);
  font-size: 18px;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}
.bottom-footer-social a:hover {
  background: var(--gold);
  color: #000;
}
.bottom-footer-info p {
  font-family: var(--font-serif-display);
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}
.bottom-footer-location {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  color: rgba(255,255,255,0.2) !important;
  letter-spacing: 3px !important;
  text-transform: uppercase;
}
.bottom-footer-org {
  font-size: 11px !important;
  color: rgba(255,255,255,0.15) !important;
  margin-top: 16px !important;
}

/* ============================================
   SECTION RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .section {
    padding: 80px 24px;
  }

  #event {
    margin-top: 60px;
    padding-top: 100px;
  }

  .section-container {
    gap: 60px;
  }

  .section-title {
    font-size: 34px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-desc {
    font-size: 16px;
  }

  .rundown-tabs {
    max-width: 440px;
  }

  .rundown-tab {
    padding: 14px 12px;
  }

  .rundown-tab .tab-label {
    font-size: 11px;
  }

  .rundown-tab .tab-date {
    font-size: 9px;
  }

  .rundown-day {
    padding: 32px 28px;
  }

  .guest-track {
    gap: 20px;
    padding: 0;
  }

  .guest-card {
    padding: 28px 16px;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .guest-image {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }

  .guest-image img {
    filter: saturate(0.85) brightness(1.05);
  }

  .guest-name {
    font-size: 16px;
  }

  .guest-company {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .artist-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
  }

  .artist-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
  }

  .music-note {
    font-size: 36px;
  }

  .floor-tabs {
    max-width: 480px;
  }

  .floor-tab {
    padding: 14px 10px;
  }

  .floor-tab .ft-label {
    font-size: 11px;
  }

  .floor-tab .ft-desc {
    font-size: 9px;
  }

  .floor-caption {
    padding: 18px 20px;
    font-size: 14px;
  }

  .experience-highlights {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  #event {
    margin-top: 40px;
    padding-top: 80px;
  }

  .section-container {
    flex-direction: column;
    gap: 40px;
    max-width: 100% !important;
  }

  .section-content-full {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
  }

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

  .section-container .section-image {
    order: -1;
  }

  .section-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .section-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .section-desc {
    font-size: 15px;
    line-height: 1.8;
  }

  .rundown-tabs {
    max-width: 100%;
    padding: 4px;
  }

  .rundown-tab {
    padding: 12px 8px;
  }

  .rundown-tab .tab-num {
    font-size: 11px;
  }

  .rundown-tab .tab-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .rundown-tab .tab-date {
    font-size: 8px;
  }

  .rundown-day {
    padding: 24px 20px;
  }

  .rundown-day-name {
    font-size: 20px;
  }

  .rundown-topic {
    font-size: 12px;
  }

  .rundown-list .rd-item {
    padding: 12px 0;
    gap: 12px;
  }

  .rundown-time {
    font-size: 12px;
    min-width: 46px;
  }

  .rundown-item {
    font-size: 14px;
  }

  .guest-carousel {
    padding: 0;
  }

  .guest-track {
    gap: 16px;
    padding: 0;
  }

  .guest-card {
    padding: 28px 16px 24px;
  }

  .guest-image {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
    border-width: 2px;
  }

  .guest-image img {
    filter: none;
  }

  .guest-name {
    font-size: 17px;
    margin-bottom: 6px;
  }

  .guest-company {
    font-size: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
  }

  .guest-nav.slick-prev,
  .guest-nav.slick-next {
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.6);
  }

  .guest-nav.slick-prev { left: 4px; }
  .guest-nav.slick-next { right: 4px; }

  .artist-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 30px auto 0;
  }

  .stat-item {
    padding: 18px 12px;
  }

  .stat-icon {
    font-size: 28px;
  }

  .stat-value {
    font-size: 18px;
  }

  .stat-label {
    font-size: 12px;
  }

  .artist-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 32px;
  }

  .artist-card {
    padding: 0;
    flex-direction: column;
  }

  .artist-image {
    width: 100%;
    height: 280px;
  }

  .artist-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.9) 100%);
  }

  .artist-name {
    font-size: 24px;
    margin-bottom: 2px;
  }

  .artist-origin {
    font-size: 11px;
  }

  .artist-genre {
    font-size: 12px;
    margin-top: 8px;
  }

  .artist-badge {
    top: 14px;
    right: 14px;
    padding: 6px 14px;
    font-size: 10px;
  }

  .music-note {
    font-size: 32px;
  }

  .floor-tabs {
    max-width: 100%;
    padding: 4px;
  }

  .floor-tab {
    padding: 12px 8px;
  }

  .floor-tab .ft-num {
    font-size: 15px;
  }

  .floor-tab .ft-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .floor-tab .ft-desc {
    display: none;
  }

  .floor-badge {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 6px 14px;
  }

  .floor-caption {
    padding: 14px 16px;
    font-size: 13px;
  }

  .organizer-features {
    gap: 16px;
  }

  .organizer-feature {
    padding: 12px;
  }

  .feature-icon {
    font-size: 28px;
  }

  .feature-text {
    font-size: 14px;
  }

  .experience-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-box {
    padding: 0;
  }

  .highlight-img {
    max-width: 100%;
    height: auto;
  }

  .highlight-icon {
    font-size: 40px;
  }

  .highlight-title {
    font-size: 16px;
  }

  .highlight-desc {
    font-size: 13px;
  }

  .venue-info {
    padding: 28px 20px;
  }

  .venue-title {
    font-size: 18px;
  }

  .venue-name {
    font-size: 22px;
  }

  .venue-address,
  .venue-description {
    font-size: 14px;
  }

  .venue-floors {
    font-size: 13px;
  }

  .footer {
    padding: 40px 20px;
  }

  .footer-logo img {
    height: 60px !important;
  }
}

/* ===== Small Mobile Guest & Artist Fixes ===== */
@media (max-width: 480px) {
  /* Force full-width containers */
  .section-content-full {
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden;
  }

  .section-container {
    max-width: 100% !important;
  }

  /* Guest - clean single card, edge-to-edge */
  .guest-carousel {
    padding: 0;
    margin-top: 30px;
    box-sizing: border-box;
    width: 100%;
  }

  .guest-track {
    gap: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .guest-card {
    padding: 30px 16px 26px;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 0;
    box-shadow: none;
    box-sizing: border-box;
  }

  .guest-image {
    width: 140px;
    height: 140px;
    margin-bottom: 22px;
    border: 2px solid var(--gold);
  }

  .guest-image img {
    filter: none;
  }

  /* Force headers center on mobile */
  .section-title, 
  .section-subtitle, 
  .section-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .guest-name {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--gold-light);
  }

  .guest-company {
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
  }

  .guest-nav.slick-prev,
  .guest-nav.slick-next {
    width: 32px;
    height: 32px;
    font-size: 16px;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    top: 120px;
    z-index: 10;
  }

  .guest-nav.slick-prev { left: 10px; }
  .guest-nav.slick-next { right: 10px; }

  .guest-dots.slick-dots {
    margin-top: 22px;
    gap: 8px;
  }

  .guest-dots.slick-dots li button {
    width: 6px;
    height: 6px;
  }

  .guest-dots.slick-dots li.slick-active button {
    width: 20px;
    height: 6px;
    background: var(--gold);
  }

  /* Artist */
  .artist-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px auto 0;
  }

  .stat-item {
    padding: 16px 10px;
  }

  .stat-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .stat-value {
    font-size: 16px;
  }

  .stat-label {
    font-size: 11px;
  }

  .artist-grid {
    gap: 20px;
    margin-top: 28px;
  }

  .artist-image {
    height: 240px;
  }

  .artist-card-body {
    padding: 18px 16px;
  }

  .artist-name {
    font-size: 20px;
  }

  /* Bottom Section Mobile */
  .bottom-section {
    padding: 50px 16px 0;
  }
  .exhibitor-slide {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .exhibitor-card {
    min-height: 130px;
    padding: 14px 10px;
  }
  .exhibitor-card .ex-icon {
    font-size: 48px;
  }
  .exhibitor-card .ex-photo {
    max-width: 90px;
    padding: 10px;
  }
  .brand-carousel .exhibitor-card .ex-photo {
    max-width: 110px;
    padding: 14px;
  }
  .brand-carousel .exhibitor-card .ex-icon {
    font-size: 48px;
  }
  .brand-carousel .exhibitor-card {
    min-height: 160px;
    padding: 16px 10px;
  }
  .exhibitor-card .ex-name {
    font-size: 10px;
  }
  .exhibitor-nav.slick-prev,
  .exhibitor-nav.slick-next {
    width: 32px;
    height: 32px;
  }
  .exhibitor-nav.slick-prev::after,
  .exhibitor-nav.slick-next::after {
    width: 8px;
    height: 8px;
    border-width: 0 0 1.5px 1.5px;
  }
  .exhibitor-nav.slick-next::after {
    border-width: 0 1.5px 1.5px 0;
  }
  .exhibitor-nav.slick-prev { left: -14px; }
  .exhibitor-nav.slick-next { right: -14px; }

  #sponsor .section-content-full {
    max-width: 900px;
  }
  #sponsor .sponsor-row {
    gap: 16px 24px;
  }
  #sponsor .sponsor-item img {
    height: 55px;
  }
  #sponsor .partner-card {
    min-width: 100px;
    max-width: 140px;
    height: 120px;
    padding: 12px;
  }
  .cta-wrap {
    padding: 0 0 40px;
  }
  .cta-heading {
    font-size: 22px;
  }
  .cta-wa {
    font-size: 12px;
    padding: 14px 24px;
    gap: 8px;
  }
  .bottom-footer {
    padding: 40px 16px 30px;
  }
  .bottom-footer-logo img {
    height: 42px;
  }
  .bottom-footer-social a {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .bottom-footer-info p {
    font-size: 12px;
  }
}

/* Bottom Section Tablet */
@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .exhibitor-slide {
    grid-template-columns: repeat(2, 1fr);
  }
}
