/* Lokale Schrift: Gin Test (abgelegt im Projektordner) */
@font-face {
  font-family: "Gin Test";
  src: url("GinTest-Regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-display: "Gin Test", Impact, sans-serif;
  --bg: #090909;
  --surface: #121212;
  --surface-soft: #1b1b1b;
  --text: #fff7ea;
  --muted: #f3d8a0;
  --red: #ff4946;
  --red-deep: #d92f34;
  --yellow: #ffb703;
  --cream: #f6dc7b;
  --blue: #1696c4;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 183, 3, 0.14), transparent 28%),
    linear-gradient(180deg, #120707 0%, #090909 100%);
  color: var(--text);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

main, footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(14, 5, 5, 0.96), rgba(10, 5, 5, 0.92));
  border-bottom: 1px solid rgba(255, 183, 3, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 73, 70, 0.18),
    0 4px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease-out;
}

.header-ticker {
  overflow: hidden;
  background: linear-gradient(90deg, var(--red-deep), #c0392b 40%, var(--red) 70%, var(--red-deep));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-track {
  display: flex;
  gap: 2rem;
  padding: 0.6rem 0;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 247, 234, 0.95);
  width: max-content;
}

.ticker-track span {
  flex-shrink: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo-wrap {
  position: relative;
  flex-shrink: 0;
}

.brand-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--red), var(--yellow), var(--red));
  z-index: -1;
  animation: logo-spin 6s linear infinite;
  opacity: 0.7;
}

@keyframes logo-spin {
  to { transform: rotate(360deg); }
}

.brand img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  display: block;
  border: 2px solid #0a0505;
  box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.08);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
}

.brand-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: rgba(255, 247, 234, 0.88);
  font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cream);
}

.nav-cta {
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow) 0%, #ff9a00 100%);
  color: #1a1100 !important;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(255, 183, 3, 0.4), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  box-shadow: 0 0 28px rgba(255, 183, 3, 0.65), 0 6px 18px rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
  color: #1a1100 !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 3rem;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 183, 3, 0.55), transparent 26%),
    radial-gradient(circle at 50% 30%, rgba(255, 73, 70, 0.28), transparent 44%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(255, 183, 3, 0.08);
  filter: blur(30px);
}

.hero::before {
  top: -8rem;
  left: -6rem;
}

.hero::after {
  right: -8rem;
  bottom: -10rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.16) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.32;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
}

.page-watermark {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("Freibad%20Tanzt%20Logo%20Original.png") center center / clamp(28rem, 55vw, 72rem) no-repeat;
  opacity: 0.055;
  filter: saturate(0.4) blur(1px);
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.25rem;
  padding: 0.9rem 1.1rem 0.9rem 0.9rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 183, 3, 0.08));
  border: 1px solid rgba(255, 183, 3, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
}

.hero-mark-disc {
  position: relative;
  flex-shrink: 0;
  width: clamp(6.5rem, 12vw, 9.5rem);
  height: clamp(6.5rem, 12vw, 9.5rem);
  padding: 0.38rem;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--red), var(--yellow), #18a1cc, var(--red));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 0 30px rgba(255, 183, 3, 0.22);
}

.hero-mark-disc::before {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.22), transparent 68%);
  z-index: 0;
}

.hero-mark-disc img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 3px solid #090909;
  object-fit: cover;
}

.hero-mark-copy {
  display: grid;
  gap: 0.2rem;
}

.hero-mark-label {
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-mark-copy strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-mark-copy span:last-child {
  color: rgba(255, 247, 234, 0.78);
  font-size: 0.95rem;
}

.eyebrow,
.section-label,
.lineup-day {
  margin: 0 0 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--cream);
}

h1,
h2,
h3,
summary {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(4rem, 12vw, 7.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  text-shadow:
    -3px -3px 0 #000,
    3px -3px 0 #000,
    -3px 3px 0 #000,
    3px 3px 0 #000;
}

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.96;
  text-transform: uppercase;
}

h3 {
  margin: 0 0 0.8rem;
  font-size: 2rem;
  text-transform: uppercase;
}

.hero-date,
.hero-kicker {
  margin: 1rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
}

.hero-date {
  color: var(--cream);
}

.hero-kicker {
  color: #ffffff;
}

.hero-text,
.text-stack p,
.feature-card p,
.lineup-card p,
.ticket-copy p,
.faq-intro p,
details p,
.site-footer p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 247, 234, 0.84);
}

.hero-text {
  max-width: 40rem;
  margin-top: 1.25rem;
}

.hero-actions,
.ticket-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0 1.4rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--yellow), #ffd54f);
  color: #1a1100;
  box-shadow: 0 12px 26px rgba(255, 183, 3, 0.25);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary.dark {
  color: #2d1700;
  border-color: rgba(45, 23, 0, 0.18);
  background: rgba(255, 255, 255, 0.4);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.poster {
  width: 100%;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.event-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem 1.4rem;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 73, 70, 0.12), rgba(255, 183, 3, 0.1));
  border: 1px solid rgba(255, 183, 3, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.event-strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  text-align: center;
}

.event-strip-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  opacity: 0.9;
}

.event-strip-item strong {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.event-strip-divider {
  width: 1px;
  height: 2.2rem;
  background: linear-gradient(180deg, transparent, rgba(255, 183, 3, 0.45), transparent);
  flex-shrink: 0;
}

.footer-wrap strong {
  display: block;
  font-size: 1rem;
}

.section {
  padding: 5.5rem 0;
}

.section-dark {
  background: transparent;
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(255, 73, 70, 0.1), rgba(255, 73, 70, 0.02)),
    transparent;
}

.section-light {
  background: linear-gradient(180deg, rgba(246, 220, 123, 0.88), rgba(255, 183, 3, 0.82));
  color: #2d1700;
}

.section-grid,
.faq-wrap,
.ticket-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.text-stack {
  display: grid;
  gap: 1rem;
}

.feature-grid,
.lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.feature-card,
.lineup-card,
.faq-list details {
  padding: 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.lineup-card {
  background:
    linear-gradient(180deg, rgba(255, 183, 3, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 10, 10, 0.45);
}

.lineup-day {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--yellow);
}

.ticket-panel {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(45, 23, 0, 0.12);
}

.ticket-copy p,
.section-light .section-label {
  color: rgba(45, 23, 0, 0.8);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details[open] {
  border-color: rgba(255, 183, 3, 0.42);
}

summary {
  cursor: pointer;
  font-size: 1.35rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin-top: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #080808;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-credit {
  padding: 0.9rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-credit p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 247, 234, 0.45);
}

.footer-credit strong {
  font-weight: 700;
  color: rgba(255, 247, 234, 0.65);
}

@media (max-width: 960px) {
  .hero-grid,
  .section-grid,
  .faq-wrap,
  .ticket-panel,
  .feature-grid,
  .lineup-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .event-strip {
    padding: 0.8rem 1rem;
  }
}

@media (max-width: 720px) {
  .site-header.header-hidden {
    transform: translateY(-100%);
  }

  .nav-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero-mark {
    width: 100%;
    align-items: center;
    padding: 0.85rem;
  }

  .hero-mark-copy span:last-child {
    font-size: 0.88rem;
  }

  .section,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.1rem);
  }

  .hero-actions,
  .ticket-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .ticket-panel {
    padding: 1.4rem;
  }
}

/* ============ Floating Music Player ============ */

.music-player {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.music-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--red-deep), #9b1b1b);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 8px 28px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: visible;
}

.music-trigger:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 183, 3, 0.3),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

.music-trigger.is-playing {
  background: linear-gradient(135deg, var(--yellow), #ff9a00);
  color: #1a1100;
}

.music-trigger-icon {
  line-height: 0;
}

.music-pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.6);
  animation: pulse-ring 2s ease-out infinite;
}

.music-trigger.is-playing .music-pulse {
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(255, 73, 70, 0.6);
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 183, 3, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 183, 3, 0); }
}

.music-panel {
  width: min(360px, calc(100vw - 3.2rem));
  border-radius: 1.4rem;
  overflow: hidden;
  background: rgba(14, 5, 5, 0.97);
  border: 1px solid rgba(255, 183, 3, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
}

.music-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1rem 0.9rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.music-panel-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.music-panel-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.music-panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 247, 234, 0.7);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
  transition: background 0.2s;
}

.music-close:hover {
  background: rgba(255, 73, 70, 0.25);
  color: #fff;
}

.music-embed {
  background: #000;
}

.music-embed iframe {
  display: block;
}

.music-hint {
  margin: 0;
  padding: 0.45rem 1rem;
  font-size: 0.7rem;
  color: rgba(255, 247, 234, 0.35);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 480px) {
  .music-player {
    bottom: 1rem;
    right: 1rem;
  }

  .music-trigger-text {
    display: none;
  }

  .music-trigger {
    padding: 0.8rem;
    border-radius: 50%;
  }
}

/* ============ Intro Overlay ============ */

.intro-open {
  overflow: hidden;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.intro-overlay.intro-out {
  opacity: 0;
  pointer-events: none;
}

.intro-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 73, 70, 0.45), transparent 55%),
    rgba(5, 2, 2, 0.92);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.intro-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 2rem;
  animation: intro-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes intro-rise {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.intro-flyer {
  width: min(400px, calc(100vw - 4rem));
  border-radius: 1.6rem;
  box-shadow:
    0 0 0 1px rgba(255, 183, 3, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.7),
    0 0 60px rgba(255, 73, 70, 0.25);
  transform: rotate(-1.5deg);
  transition: transform 0.3s ease;
}

.intro-flyer:hover {
  transform: rotate(0deg) scale(1.01);
}

.intro-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow), #ff9a00);
  color: #1a1100;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow:
    0 0 0 1px rgba(255, 183, 3, 0.3),
    0 16px 40px rgba(255, 183, 3, 0.35),
    0 0 60px rgba(255, 183, 3, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.3), 0 16px 40px rgba(255, 183, 3, 0.35), 0 0 60px rgba(255, 183, 3, 0.15); }
  50%       { box-shadow: 0 0 0 1px rgba(255, 183, 3, 0.5), 0 20px 50px rgba(255, 183, 3, 0.5),  0 0 90px rgba(255, 183, 3, 0.25); }
}

.intro-cta:hover {
  transform: translateY(-3px) scale(1.03);
  animation: none;
  box-shadow: 0 24px 56px rgba(255, 183, 3, 0.45);
}

.intro-hint {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 247, 234, 0.45);
}

@media (max-width: 480px) {
  .intro-cta {
    font-size: 1.1rem;
    padding: 0.85rem 1.5rem;
  }
}
