:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.48);
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-width: 280px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.035), transparent 35%),
    #000;
  font-family: Arial, Helvetica, sans-serif;
}

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

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1100px);
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 20px 24px;
  text-align: center;
  animation: page-in 900ms cubic-bezier(.22, 1, .36, 1) both;
}

.logo-wrap {
  position: relative;
  display: grid;
  width: min(78vw, 670px);
  aspect-ratio: 1;
  place-items: center;
  margin: clamp(-64px, -5vw, -20px) 0 clamp(-78px, -6vw, -40px);
}

.logo-aura {
  position: absolute;
  width: 62%;
  height: 40%;
  border-radius: 50%;
  opacity: 0.45;
  background: rgba(255, 255, 255, 0.09);
  filter: blur(55px);
  animation: aura 5.5s ease-in-out infinite;
}

.band-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 7px rgba(255, 255, 255, 0.16))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.08));
  transition: filter 450ms ease, transform 450ms ease;
}

.logo-wrap:hover .band-logo {
  transform: scale(1.008);
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.24))
    drop-shadow(0 0 38px rgba(255, 255, 255, 0.13));
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 28px);
  width: 100%;
  margin-top: 6px;
}

.social-link {
  --brand: 255, 255, 255;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: clamp(72px, 10vw, 98px);
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.icon {
  position: relative;
  display: grid;
  width: clamp(58px, 7vw, 70px);
  height: clamp(58px, 7vw, 70px);
  overflow: hidden;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 8px 28px rgba(0, 0, 0, 0.42);
  transition:
    transform 260ms cubic-bezier(.22, 1, .36, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.icon::before {
  position: absolute;
  top: -35%;
  left: -90%;
  width: 55%;
  height: 170%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: rotate(18deg);
}

.icon svg {
  width: 46%;
  height: 46%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon svg .filled {
  fill: currentColor;
  stroke: none;
}

.youtube .icon svg > path:first-child {
  fill: none;
}

.youtube .icon svg .play {
  fill: currentColor;
  stroke: none;
}

.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.66;
  transition: opacity 220ms ease, color 220ms ease, transform 220ms ease;
}

.instagram { --brand: 225, 48, 108; }
.spotify { --brand: 30, 215, 96; }
.bandsintown { --brand: 0, 193, 213; }
.youtube { --brand: 255, 35, 35; }

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
}

.social-link:hover .icon,
.social-link:focus-visible .icon {
  transform: translateY(-6px) scale(1.055);
  border-color: rgba(var(--brand), 0.85);
  background: linear-gradient(145deg, rgba(var(--brand), 0.23), rgba(255, 255, 255, 0.025));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 14px rgba(var(--brand), 0.46),
    0 0 38px rgba(var(--brand), 0.22),
    0 14px 34px rgba(0, 0, 0, 0.5);
}

.social-link:hover .icon::before,
.social-link:focus-visible .icon::before {
  opacity: 1;
  animation: reflection 720ms ease-out both;
}

.social-link:hover .label,
.social-link:focus-visible .label {
  color: rgb(var(--brand));
  opacity: 1;
  transform: translateY(-1px);
}

.social-link:focus-visible .icon {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(40px, 7vh, 74px);
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.separator {
  opacity: 0.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes reflection {
  from { left: -90%; }
  to { left: 145%; }
}

@keyframes aura {
  0%, 100% { opacity: 0.34; transform: scale(0.96); }
  50% { opacity: 0.54; transform: scale(1.06); }
}

@media (max-width: 600px) {
  .landing {
    justify-content: center;
    padding-inline: 14px;
  }

  .logo-wrap {
    width: min(105vw, 560px);
    margin-top: -46px;
    margin-bottom: -65px;
  }

  .social-links {
    gap: 16px 10px;
  }

  .social-link {
    width: 72px;
  }

  .label {
    font-size: 0.61rem;
    letter-spacing: 0.07em;
  }

  .footer {
    margin-top: 42px;
    font-size: 0.64rem;
  }
}

@media (max-height: 680px) and (min-width: 601px) {
  .landing {
    padding-block: 18px;
  }

  .logo-wrap {
    width: min(62vh, 560px);
    margin-top: -48px;
    margin-bottom: -60px;
  }

  .footer {
    margin-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Make the complete icon and label area reliably clickable. */
.social-link {
  cursor: pointer;
  touch-action: manipulation;
}

.social-link .icon,
.social-link .icon *,
.social-link .label {
  pointer-events: none;
}

/* Click-Fix: Das gesamte Element – Icon und Text – gehört zum Link. */
.social-link {
  cursor: pointer;
  padding: 6px 0;
  touch-action: manipulation;
}

.social-link .icon,
.social-link .icon *,
.social-link .label {
  pointer-events: none;
}
