:root {
  --bg: #06040d;
  --panel: rgba(12, 10, 24, 0.86);
  --pink: #ff2ea5;
  --cyan: #00f7ff;
  --yellow: #ffd84d;
  --text: #fff6ff;
  --muted: #c9b7ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Bold", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 46, 165, 0.24), transparent 24%),
    radial-gradient(circle at bottom right, rgba(0, 247, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #090511 0%, #16081f 45%, #04040a 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: -20%;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 216, 77, 0.06) 0,
    rgba(255, 216, 77, 0.06) 2px,
    transparent 2px,
    transparent 24px
  );
  transform: perspective(600px) rotateX(55deg) translateY(10%);
  animation: drift 12s linear infinite;
  pointer-events: none;
}

.bg-noise {
  position: fixed;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.2;
  mix-blend-mode: screen;
  pointer-events: none;
}

.spotlight {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 46, 165, 0.22), transparent 24%);
  pointer-events: none;
  z-index: 0;
}

.hero-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 18px 34px;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.95fr);
  gap: 18px;
  padding: 24px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(145deg, rgba(255, 46, 165, 0.1), rgba(0, 247, 255, 0.06));
  border-radius: 28px;
  box-shadow: 0 0 0 1px rgba(255, 216, 77, 0.18), 0 20px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(18px);
  overflow: hidden;
  align-items: start;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  pointer-events: none;
}

.hero-copy,
.hero-side {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--yellow);
}

h1 {
  margin: 0;
  font-size: clamp(3.1rem, 7vw, 5.8rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(255, 46, 165, 0.6), 0 0 24px rgba(0, 247, 255, 0.35);
  animation: pulse 2.6s ease-in-out infinite;
}

h1 span {
  display: block;
  color: var(--cyan);
}

h1 .vice {
  color: var(--pink);
  text-shadow: 0 0 14px rgba(255, 46, 165, 0.7), 0 0 32px rgba(255, 216, 77, 0.25);
}

.tagline {
  margin: 16px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn.primary {
  color: #120614;
  background: linear-gradient(90deg, var(--yellow), #ff8c1f);
  box-shadow: 0 0 22px rgba(255, 216, 77, 0.36);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stats div {
  min-width: 112px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(8, 6, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--cyan);
}

.stats span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.panel {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-width: 0;
}

.glow-card {
  background: linear-gradient(140deg, rgba(255, 46, 165, 0.2), rgba(0, 247, 255, 0.12));
  animation: bob 2.8s ease-in-out infinite;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--yellow);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.panel h2,
.panel h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.panel p, .panel li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.marquee-card {
  overflow: hidden;
}

.marquee {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: marquee 10s linear infinite;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--pink);
  font-size: 0.82rem;
}

.gallery-panel {
  padding: 0;
  overflow: hidden;
  min-height: 240px;
  max-height: 280px;
  background: #06040d;
  position: relative;
  border-radius: 18px;
}

.gallery-frame {
  position: absolute;
  inset: 0;
}

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  filter: saturate(1.2) contrast(1.15) brightness(0.82);
}

.gallery-image.active {
  opacity: 1;
}

.gallery-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.48) 100%);
  pointer-events: none;
}

.gallery-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 18%, transparent 82%, rgba(255, 255, 255, 0.06) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.18) 65%, rgba(0, 0, 0, 0.35) 100%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.gallery-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(8, 6, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  max-width: min(100%, 320px);
}

.gallery-overlay h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.3;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.tour-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.tour-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.tour-list span {
  color: var(--cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.spark {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  border-radius: 50%;
  animation: sparkle 1.4s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0);
    text-shadow: 0 0 8px rgba(255, 46, 165, 0.55), 0 0 24px rgba(0, 247, 255, 0.35);
  }
  50% {
    transform: translateY(-2px);
    text-shadow: 0 0 16px rgba(255, 46, 165, 0.85), 0 0 38px rgba(0, 247, 255, 0.6);
  }
}

@keyframes drift {
  from {
    transform: perspective(600px) rotateX(55deg) translateY(10%);
  }
  to {
    transform: perspective(600px) rotateX(55deg) translateY(10%) translateX(40px);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.6);
    opacity: 1;
  }
}

@media (max-width: 960px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-side {
    order: -1;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero-shell {
    padding: 10px 10px 20px;
  }

  .hero-card {
    padding: 16px;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
    line-height: 0.95;
    margin-top: 2px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .tagline {
    font-size: 0.96rem;
    margin-top: 12px;
  }

  .gallery-panel {
    min-height: 220px;
  }

  .gallery-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 14px 16px;
  }

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

  .stats div {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .tour-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .panel h2,
  .panel h3 {
    font-size: 1.15rem;
  }
}
