:root {
  --bg: #030712;
  --bg-soft: #071226;
  --bg-card: rgba(10, 19, 39, 0.58);
  --bg-card-strong: rgba(10, 19, 39, 0.8);
  --line: rgba(125, 171, 255, 0.18);
  --text: #eef4ff;
  --muted: #afbddc;
  --blue: #7fd8ff;
  --blue-strong: #40bfff;
  --violet: #8a74ff;
  --orange: #ff8a3d;
  --orange-strong: #ff5e2a;
  --glow-blue: 0 0 30px rgba(64, 191, 255, 0.18);
  --glow-orange: 0 0 40px rgba(255, 94, 42, 0.2);
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 129, 55, 0.35), transparent 18%),
    radial-gradient(circle at 50% 82%, rgba(255, 98, 0, 0.22), transparent 26%),
    linear-gradient(180deg, #01050d 0%, #04101f 35%, #071529 60%, #040a13 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(70, 116, 255, 0.12), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(105, 80, 255, 0.12), transparent 16%),
    radial-gradient(circle at 50% 72%, rgba(255, 132, 46, 0.2), transparent 26%);
  z-index: -2;
}

img {
  max-width: 100%;
  display: block;
}

canvas,
.sky-glow,
.aurora,
.stars-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#starfield {
  z-index: -1;
}

.sky-glow {
  z-index: -2;
  filter: blur(50px);
}

.sky-glow-1 {
  background: radial-gradient(circle at 50% 74%, rgba(255, 131, 60, 0.3), transparent 20%);
}

.sky-glow-2 {
  background: radial-gradient(circle at 50% 28%, rgba(58, 116, 255, 0.16), transparent 26%);
}

.aurora {
  z-index: -1;
  opacity: 0.4;
  filter: blur(24px);
  mix-blend-mode: screen;
}

.aurora-left {
  background: linear-gradient(120deg, transparent 10%, rgba(78, 172, 255, 0.38) 35%, transparent 70%);
  transform: translateX(-22%) rotate(-10deg);
  animation: auroraShift 14s ease-in-out infinite alternate;
}

.aurora-right {
  background: linear-gradient(220deg, transparent 10%, rgba(255, 143, 66, 0.3) 35%, transparent 70%);
  transform: translateX(22%) rotate(10deg);
  animation: auroraShift 18s ease-in-out infinite alternate-reverse;
}

.stars-layer {
  z-index: -1;
  opacity: 0.8;
}

.stars-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 0.8px, transparent 1.1px),
    radial-gradient(circle, rgba(143, 201, 255, 0.85) 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 198, 151, 0.7) 0.9px, transparent 1.3px);
  background-size: 240px 240px, 340px 340px, 420px 420px;
  background-position: 0 0, 120px 80px, 40px 160px;
  animation: twinkle 12s linear infinite;
}

.stars-layer-2::before {
  opacity: 0.55;
  transform: scale(1.1);
  animation-duration: 20s;
}

.stars-layer-3::before {
  opacity: 0.3;
  transform: scale(1.2);
  animation-duration: 28s;
}

.site-shell {
  position: relative;
}

.topbar {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 18px auto 0;
  padding: 16px 18px;
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(6, 14, 27, 0.55);
  border: 1px solid rgba(123, 160, 255, 0.14);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  box-shadow: 0 0 18px rgba(127, 216, 255, 0.9);
}

.brand-text {
  font-family: "Orbitron", sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a,
.mobile-menu a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.mobile-menu a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(78, 182, 255, 0.16), rgba(255, 121, 56, 0.18));
  border: 1px solid rgba(134, 179, 255, 0.2);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(125, 171, 255, 0.14);
  border-radius: 50%;
  background: rgba(8, 16, 30, 0.8);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu {
  position: fixed;
  top: 96px;
  left: 50%;
  transform: translate(-50%, -8px);
  width: min(calc(100% - 32px), var(--max-width));
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(6, 14, 27, 0.92);
  border: 1px solid rgba(123, 160, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  z-index: 80;
  max-height: calc(100vh - 120px);
  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 44px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  width: min(1100px, 90vw);
  height: 170px;
  transform: translateX(-50%);
  background: radial-gradient(circle at center, rgba(255, 141, 60, 0.44), rgba(255, 117, 29, 0.2) 35%, transparent 65%);
  filter: blur(18px);
  z-index: 0;
}

.hero-inner {
  width: min(100%, 1120px);
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: rgba(14, 27, 50, 0.66);
  border: 1px solid rgba(127, 165, 255, 0.15);
  color: #cad7f2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.festival-logo {
  width: min(860px, 94vw);
  margin: 0 auto 10px;
  filter: drop-shadow(0 0 32px rgba(66, 166, 255, 0.28)) drop-shadow(0 12px 30px rgba(0, 0, 0, 0.55));
}

.festival-header {
  margin: 12px 0 20px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, #7ed2ff 0%, #b9e7ff 30%, #ffb16e 70%, #ff6f3b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(127, 216, 255, 0.12);
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto 12px;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.72;
  color: #edf3ff;
}

.hero-subcopy {
  max-width: 800px;
  margin: 0 auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.cta-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 26px;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.cta-button:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn-primary,
.cta-button {
  color: #fff;
  background: linear-gradient(135deg, var(--orange-strong), var(--orange), #ffb15a);
  box-shadow: 0 12px 34px rgba(255, 94, 42, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(10, 21, 42, 0.65);
  border: 1px solid rgba(127, 171, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.cta-button-full {
  width: 100%;
}

.hero-stats {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.stat-card {
  padding: 22px 18px;
  text-align: center;
}

.stat-value {
  display: block;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: #fff;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding: 44px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3.4vw, 2.9rem);
  line-height: 1.2;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.glass-card {
  background: linear-gradient(180deg, rgba(10, 18, 36, 0.72), rgba(7, 15, 28, 0.58));
  border: 1px solid rgba(127, 171, 255, 0.14);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 22px;
}

.intro-card,
.step-card,
.experience-card,
.closing-card {
  padding: 28px;
}

.intro-card p,
.experience-card p,
.step-card p,
.closing-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.intro-card-large {
  min-height: 100%;
}

.intro-card h3,
.experience-card h3,
.step-card h3,
.closing-card h2,
.transfer-box h4,
.boat-grid h4 {
  margin: 0 0 12px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.experience-card {
  position: relative;
  overflow: hidden;
}

.experience-card::before,
.step-card::before,
.closing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(127, 216, 255, 0.08), transparent 34%, rgba(255, 114, 51, 0.08));
  opacity: 0.8;
  pointer-events: none;
}

.experience-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(74, 178, 255, 0.35), rgba(255, 128, 66, 0.26));
  box-shadow: var(--glow-blue);
}

.feature-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  color: #e8f0ff;
  line-height: 1.6;
}

.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
}

.compact-list {
  margin-top: 10px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card-wide {
  grid-column: 1 / -1;
}

.step-number {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  font-family: "Orbitron", sans-serif;
  font-size: 1rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(75, 188, 255, 0.7), rgba(255, 127, 67, 0.85));
  box-shadow: var(--glow-orange);
}

.small-note {
  display: block;
  margin-top: 10px;
  color: #b8c7e4;
  font-size: 0.92rem;
}

.boat-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.boat-cta-box {
  padding: 22px;
  border-radius: 20px;
  background: rgba(9, 19, 37, 0.72);
  border: 1px solid rgba(128, 170, 255, 0.12);
}

.boat-highlight {
  margin-bottom: 16px !important;
  color: #f6faff !important;
  font-weight: 700;
  line-height: 1.65 !important;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border-radius: 20px;
  border: 1px solid rgba(127, 171, 255, 0.12);
}

.airport-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: rgba(8, 16, 30, 0.55);
}

.airport-table th,
.airport-table td {
  padding: 16px 18px;
  text-align: left;
}

.airport-table thead th {
  font-size: 0.93rem;
  color: #fff;
  background: linear-gradient(135deg, rgba(48, 140, 255, 0.28), rgba(255, 120, 60, 0.24));
}

.airport-table tbody td {
  color: #dbe6fb;
  border-top: 1px solid rgba(127, 171, 255, 0.1);
}

.airport-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.02);
}

.transfer-box {
  margin-top: 16px;
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  background: rgba(9, 19, 37, 0.72);
  border: 1px solid rgba(128, 170, 255, 0.12);
}

.transfer-box p {
  margin: 0 0 18px;
}

.transfer-widget-container {
  margin-top: 18px;
  min-height: 120px;
}

.closing-section {
  padding-bottom: 90px;
}

.closing-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes twinkle {
  0%, 100% { opacity: 0.7; transform: translateY(0) scale(1); }
  50% { opacity: 1; transform: translateY(-8px) scale(1.02); }
}

@keyframes auroraShift {
  0% { transform: translateX(-18%) rotate(-9deg) scaleY(1); }
  100% { transform: translateX(-10%) rotate(-4deg) scaleY(1.08); }
}

@media (max-width: 1080px) {
  .intro-grid,
  .experience-grid,
  .steps-grid,
  .boat-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .step-card-wide,
  .step-card {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .topbar {
    border-radius: 24px;
  }

  .hero {
    padding-top: 110px;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: calc(100% - 20px);
    padding: 14px 16px;
    top: 10px;
  }

  .mobile-menu {
    width: calc(100% - 20px);
  }

  .section {
    width: calc(100% - 20px);
    padding: 30px 0;
  }

  .hero-copy,
  .hero-subcopy,
  .section-heading p,
  .intro-card p,
  .experience-card p,
  .step-card p,
  .closing-card p {
    font-size: 0.98rem;
  }

  .intro-card,
  .step-card,
  .experience-card,
  .closing-card {
    padding: 22px;
  }

  .festival-header {
    letter-spacing: 0.05em;
  }

  .btn,
  .cta-button {
    width: 100%;
  }

  .airport-table {
    min-width: 560px;
  }
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 24px;
  align-items: stretch;
}

.venue-card,
.venue-map-card {
  padding: 26px;
}

.venue-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.venue-card p {
  margin: 0 0 18px;
}

.venue-note {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.map-embed {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 18, 38, 0.55);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .venue-grid {
    grid-template-columns: 1fr;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .venue-card,
  .venue-map-card {
    padding: 18px;
  }

  .map-embed,
  .map-embed iframe {
    min-height: 320px;
  }
}