﻿:root {
  color-scheme: light;
  --bg-0: #020203;
  --bg-1: #05060a;
  --bg-2: #070a0f;
  --accent: #d8bb89;
  --accent-rgb: 216, 187, 137;
  --accent-2: #8fc6bd;
  --accent-2-rgb: 143, 198, 189;
  --glow-rgb: 244, 178, 60;
  --visualizer-glow-rgb: 61, 215, 194;
  --text: #eef1f8;
  --muted: #b0b8c4;
  --card: transparent;
  --border: rgba(255, 255, 255, 0.24);
  --shadow: none;
  --radius: 8px;
  --max-width: 1120px;
}

html[data-creator="aimp"] {
  --accent: #315dff;
  --accent-rgb: 49, 93, 255;
  --accent-2: #1db7ff;
  --accent-2-rgb: 29, 183, 255;
  --glow-rgb: 29, 83, 255;
  --visualizer-glow-rgb: 26, 183, 255;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: #020203;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(145, 145, 145, 0.6) rgba(8, 10, 14, 0.8);
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(8, 10, 14, 0.8);
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
}

*::-webkit-scrollbar-corner {
  background: transparent;
}

main {
  flex: 1;
}

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

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

a:focus-visible,
.btn:focus-visible,
.creator-switch button:focus-visible,
.language-switch button:focus-visible,
.platform-card:focus-visible,
.release-card:focus-visible,
.contact-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

#starfield {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.grain {
  display: none;
}

.container {
  width: min(100% - 2.5rem, var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(6, 10, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(var(--accent-rgb), 0) 0%,
    rgba(var(--accent-rgb), 0.75) 30%,
    rgba(var(--accent-2-rgb), 0.75) 70%,
    rgba(var(--accent-2-rgb), 0) 100%
  );
  background-size: 180% 100%;
  opacity: 0.16;
  pointer-events: none;
}

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  padding: 1.1rem 0;
  gap: 1rem;
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  margin-left: 0;
  justify-self: start;
}

.nav a {
  position: relative;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--text);
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.creator-switch,
.language-switch {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.2rem;
  padding: 0.24rem;
  border: 0;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.creator-switch:empty,
.language-switch:empty {
  display: none;
}

.creator-switch button,
.language-switch button {
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.48rem 0.62rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.language-switch button {
  position: relative;
  overflow: hidden;
  min-width: 2.35rem;
  color: rgba(255, 255, 255, 0.82);
}

.language-switch button::before {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  opacity: 0.32;
  filter: blur(3px);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.language-switch .language-de::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.9) 0 33%,
    rgba(221, 0, 0, 0.9) 33% 66%,
    rgba(255, 206, 0, 0.9) 66% 100%
  );
}

.language-switch .language-en::before {
  background:
    linear-gradient(90deg, transparent 42%, rgba(255, 255, 255, 0.95) 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, rgba(255, 255, 255, 0.95) 42% 58%, transparent 58%),
    linear-gradient(35deg, transparent 46%, rgba(198, 17, 43, 0.9) 46% 54%, transparent 54%),
    linear-gradient(-35deg, transparent 46%, rgba(198, 17, 43, 0.9) 46% 54%, transparent 54%),
    #012169;
}

.creator-switch button:hover,
.creator-switch button.is-active,
.language-switch button:hover,
.language-switch button.is-active {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--text);
}

.language-switch button:hover::before,
.language-switch button.is-active::before {
  opacity: 0.58;
  filter: blur(2px);
}

.header-audio {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  justify-self: end;
  padding: 0.36rem 0.55rem 0.36rem 0.42rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: none;
}

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  border-radius: 6px;
  padding: 0.35rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.audio-btn:hover {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.08);
}

.audio-meta {
  display: flex;
  flex-direction: column;
  min-width: 90px;
  line-height: 1.05;
}

.audio-now-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.46);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.16rem;
}

.audio-track-name {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  white-space: nowrap;
}

.audio-track-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}

.audio-play-btn {
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  border-radius: 6px;
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.16);
  border-color: rgba(var(--accent-rgb), 0.56);
}

.audio-play-btn img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.audio-track-btn {
  width: 1.55rem;
  height: 1.55rem;
  padding: 0;
}

.audio-track-btn:hover {
  transform: none;
}

.audio-btn.is-active {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.64);
  background: rgba(255, 255, 255, 0.06);
}

.audio-play-btn.is-playing {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.16);
  border-color: rgba(var(--accent-rgb), 0.56);
}

.audio-play-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.74);
  background: rgba(var(--accent-rgb), 0.24);
}

.audio-play-btn.is-playing:hover {
  border-color: rgba(var(--accent-rgb), 0.74);
  background: rgba(var(--accent-rgb), 0.24);
}

.btn.ghost.latest-youtube-btn,
.btn.ghost.latest-platform-btn {
  gap: 0.48rem;
  border: none;
  box-shadow: none;
  padding-left: 0;
  justify-content: flex-start;
}

.btn.ghost.latest-youtube-btn:hover,
.btn.ghost.latest-platform-btn:hover {
  box-shadow: none;
}

.latest-youtube-btn img,
.latest-platform-btn img {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.section {
  position: relative;
  z-index: 3;
  padding: 5.5rem 0;
}

.section:first-of-type {
  padding-top: 3.5rem;
}

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

.glow-anchor {
  position: relative;
}

.glow-anchor > :not(.section-glow) {
  position: relative;
  z-index: 1;
}

.glow-anchor .section-glow {
  z-index: 0;
}

.section-glow {
  display: none;
}

.glow-yellow {
  background: radial-gradient(circle, rgba(var(--glow-rgb), 0.35), transparent 70%);
}

.glow-about-yellow {
  width: 110%;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero {
  padding-top: 4.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.5rem;
  align-items: center;
}

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.logo-visualizer {
  position: relative;
  width: 400px;
  height: 400px;
  display: grid;
  place-items: center;
}

.logo-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 310px;
  height: 310px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 60px rgba(var(--visualizer-glow-rgb), 0.25);
  animation: ring-spin 18s linear infinite;
  z-index: 1;
}

.logo {
  position: relative;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}

.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero .cta-row .btn {
  padding: 0.72rem 1.28rem;
  font-size: 0.92rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.6rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.08);
}

.btn.primary {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.58);
}

.btn-cta-pulse {
  animation: none;
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
}

.btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  background: transparent;
  border: 1px solid var(--border);
}

.cta-music-btn {
  position: relative;
  gap: 0.55rem;
  overflow: hidden;
}

.cta-music-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(230, 230, 230, 0),
    rgba(230, 230, 230, 0.24),
    rgba(230, 230, 230, 0)
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.cta-music-btn:hover::after {
  animation: cta-sweep 0.85s ease;
}

.cta-eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 0.9rem;
}

.cta-eq i {
  width: 2px;
  border-radius: 2px;
  background: currentColor;
  opacity: 0.92;
  transform-origin: center bottom;
}

.cta-eq i:nth-child(1) { height: 0.34rem; }
.cta-eq i:nth-child(2) { height: 0.62rem; }
.cta-eq i:nth-child(3) { height: 0.44rem; }
.cta-eq i:nth-child(4) { height: 0.74rem; }
.cta-eq i:nth-child(5) { height: 0.5rem; }

.cta-music-btn:hover .cta-eq i:nth-child(1) { animation: eq-bounce 0.62s ease-in-out infinite; }
.cta-music-btn:hover .cta-eq i:nth-child(2) { animation: eq-bounce 0.5s ease-in-out infinite; }
.cta-music-btn:hover .cta-eq i:nth-child(3) { animation: eq-bounce 0.56s ease-in-out infinite; }
.cta-music-btn:hover .cta-eq i:nth-child(4) { animation: eq-bounce 0.47s ease-in-out infinite; }
.cta-music-btn:hover .cta-eq i:nth-child(5) { animation: eq-bounce 0.59s ease-in-out infinite; }

#audio-visualizer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  border: 0;
  background: transparent;
  pointer-events: none;
  z-index: 2;
}

#audio-visualizer.is-active {
  opacity: 1;
}

.music-live .logo-ring {
  animation: ring-spin 18s linear infinite, logo-pulse 2.8s ease-in-out infinite;
}

.latest-video {
  margin: 1.4rem auto 0.8rem;
}

.latest-video-intro {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.latest-video-intro h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.latest-video-intro p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.45;
}


.latest-video-card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.latest-video-item {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.latest-video-media {
  position: relative;
}

.latest-video-cover {
  width: 100%;
  aspect-ratio: 16 / 8.5;
  border-radius: 0;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
}

.latest-video-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.7rem;
  flex: 1;
}

.latest-video-body h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.86rem;
  line-height: 1.35;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-video-body p {
  color: var(--muted);
  line-height: 1.42;
  font-size: 0.74rem;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-video-actions {
  margin-top: auto;
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.latest-platform-btn {
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1;
}

.latest-video-card.is-loading {
  align-items: stretch;
}

.skeleton-block {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.skeleton-block::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  animation: shimmer 1.4s ease-in-out infinite;
}

.skeleton-cover {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.skeleton-title {
  height: 22px;
  width: 70%;
  margin-bottom: 0.8rem;
  border-radius: 999px;
}

.skeleton-line {
  height: 12px;
  width: 100%;
  margin-bottom: 0.5rem;
  border-radius: 999px;
}

.skeleton-line.short {
  width: 70%;
}

.skeleton-button {
  height: 38px;
  width: 180px;
  border-radius: 999px;
  margin-top: 0.8rem;
}

.release-card.is-loading {
  pointer-events: none;
}

.feed-error {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}


.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stacked-head {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}

.stacked-head p {
  max-width: none;
  white-space: nowrap;
}

.section-head h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-head h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
}

.section-head p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}


.platforms-head {
  margin-top: 3.5rem;
  flex-direction: column;
  align-items: flex-start;
}

.full-head p {
  max-width: none;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.platform-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.platform-card img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.platform-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(var(--accent-rgb), 0.5);
  box-shadow: 0 22px 55px rgba(2, 6, 15, 0.55);
}

.platform-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.platform-card p {
  color: var(--muted);
  font-size: 0.78rem;
}

.feed-status {
  color: var(--muted);
  margin: 1rem auto 1.6rem;
  text-align: left;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.feed-status .btn {
  padding: 0.45rem 0.9rem;
  font-size: 0.85rem;
}

.media-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 auto 1.2rem;
}

.filter-btn {
  cursor: pointer;
}

.filter-btn.is-active {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.6);
}


.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.4rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 600;
}

.contact-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}


.release-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.release-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.release-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(var(--accent-2-rgb), 0.45);
  box-shadow: 0 22px 55px rgba(2, 6, 15, 0.55);
}

.release-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.release-body {
  padding: 1.4rem;
}

.release-body h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.4rem;
}

.release-body p {
  color: var(--muted);
  font-size: 0.9rem;
}

.source-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(8, 10, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(2, 6, 15, 0.5);
  z-index: 2;
}

.source-badge img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}


.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.about-media {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}


.about-media img {
  width: min(100%, 280px);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.about-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem 1.6rem;
  margin-top: 1.2rem;
}

.meta-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.meta-items {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.meta-items span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
}

.meta-items img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

.about-copy h2,
.about-copy h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.about-copy h3 {
  margin-bottom: 0.8rem;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.inspire-block {
  margin-top: 3rem;
}

.inspire-block h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 1.2rem;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

.artist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.artist-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 22px 55px rgba(2, 6, 15, 0.55);
}

.artist-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
}

.artist-card span {
  font-weight: 600;
}



.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(5, 8, 14, 0.9);
  padding: 1.9rem 0;
  position: relative;
  z-index: 3;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(260px, 1.2fr);
  justify-content: space-between;
  gap: 1.3rem;
  color: var(--muted);
  align-items: start;
}

.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.footer-legal {
  margin-top: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-contact h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.6rem;
}

.footer-contact {
  max-width: 360px;
  margin-top: 0.45rem;
}

.footer-platforms h3 {
  font-family: "Space Grotesk", sans-serif;
  margin-bottom: 0.6rem;
}

.footer-email {
  display: inline-block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.footer-contact p {
  color: var(--muted);
  margin-bottom: 0.6rem;
}


.footer-contact .contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 0.4rem 1rem;
}

.footer-contact .contact-links a {
  font-size: 0.9rem;
}

.site-footer .contact-links a {
  font-weight: 400;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

.platform-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.release-card:hover {
  transform: translateY(-6px) scale(1.01);
}

.artist-card:hover {
  transform: translateY(-4px) scale(1.01);
}


@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes ring-spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--glow-rgb), 0); }
  50% { box-shadow: 0 0 26px rgba(var(--glow-rgb), 0.35); }
}

@keyframes nav-wave {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 12px 0, 12px 0; }
}

@keyframes header-wave {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

@keyframes eq-bounce {
  0%, 100% { transform: scaleY(0.45); }
  50% { transform: scaleY(1.45); }
}

@keyframes cta-sweep {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes logo-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(var(--accent-2-rgb), 0); }
  50% { box-shadow: 0 0 28px rgba(var(--accent-2-rgb), 0.28); }
}

/* Outline minimal global overrides */
*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.38);
}

.site-header {
  backdrop-filter: blur(10px);
  background: rgba(5, 8, 14, 0.86);
  border-bottom: 1px solid var(--border);
}

.nav a::after {
  height: 1px;
  background: var(--accent);
}

.header-audio {
  padding: 0.34rem 0.5rem 0.34rem 0.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  box-shadow: none;
}

.audio-btn {
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.audio-btn:hover {
  transform: none;
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.08);
}

.audio-btn.is-active {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.64);
  background: rgba(255, 255, 255, 0.06);
}

.audio-play-btn,
.audio-play-btn.is-playing {
  color: var(--text);
  background: rgba(var(--accent-rgb), 0.16);
  border-color: rgba(var(--accent-rgb), 0.56);
}

.audio-play-btn:hover,
.audio-play-btn.is-playing:hover {
  border-color: rgba(var(--accent-rgb), 0.74);
  background: rgba(var(--accent-rgb), 0.24);
}

.audio-play-btn img {
  filter: brightness(0) invert(1);
}

.btn {
  border-radius: 4px;
  border: 1px solid var(--border);
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.08);
}

.btn.primary {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.58);
}

.btn.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn.small {
  border-radius: 6px;
  background: transparent;
}

.cta-row .btn {
  border-radius: 4px;
}

.btn-cta-pulse {
  animation: none;
}

.logo-ring {
  border: 1px solid var(--border);
  box-shadow: none;
}

.latest-video-item,
.platform-card,
.release-card,
.artist-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: none;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.latest-video-cover {
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: filter 0.22s ease;
}

.release-cover,
.artist-card img,
.platform-card img {
  transition: filter 0.22s ease;
}

.skeleton-block,
.skeleton-cover {
  border-radius: var(--radius);
}

.skeleton-title,
.skeleton-line,
.skeleton-button {
  border-radius: 6px;
}

.latest-video-item:hover,
.platform-card:hover,
.release-card:hover,
.artist-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  border-color: rgba(var(--accent-rgb), 0.38);
  background: rgba(255, 255, 255, 0.012);
}

.latest-video-item:hover .latest-video-cover,
.release-card:hover .release-cover,
.artist-card:hover img {
  filter: saturate(1.04) brightness(1.02);
}

.platform-card:hover img {
  filter: brightness(0) invert(1) drop-shadow(0 0 5px rgba(var(--accent-rgb), 0.28));
}

.filter-btn.is-active {
  background: rgba(var(--accent-rgb), 0.16);
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.6);
}

.source-badge {
  border-radius: 6px;
  background: rgba(8, 10, 14, 0.62);
  border: 1px solid var(--border);
  box-shadow: none;
}

.about-media img,
.artist-card img {
  border-radius: var(--radius);
}

.section-glow {
  filter: blur(14px);
  opacity: 0.2;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(5, 8, 14, 0.55);
}

@media (max-width: 900px) {

  .nav-wrap {
    grid-template-columns: 1fr auto auto auto;
    grid-template-areas: "nav audio switch language";
    row-gap: 0;
  }

  .nav {
    grid-area: nav;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    justify-content: flex-start;
    margin-left: 0;
    justify-self: start;
  }

  .nav a {
    white-space: nowrap;
  }

  .header-audio {
    grid-area: audio;
  }

  .creator-switch {
    grid-area: switch;
  }

  .language-switch {
    grid-area: language;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-contact {
    justify-self: start;
  }

  .stacked-head p {
    white-space: normal;
  }
}

@media (max-width: 1120px) {
  .latest-video-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  .latest-video-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .section-glow {
    opacity: 0.35;
    filter: blur(14px);
  }

  .container {
    width: min(100% - 1.5rem, var(--max-width));
  }

  .nav-wrap {
    grid-template-columns: auto auto auto 1fr;
    grid-template-areas:
      "nav nav nav nav"
      "audio switch language .";
    row-gap: 0.55rem;
    column-gap: 0.55rem;
  }

  .nav {
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    margin-left: 0;
    justify-content: flex-start;
  }

  .btn.small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .header-audio {
    gap: 0.45rem;
    padding: 0.3rem 0.46rem 0.3rem 0.34rem;
  }

  .creator-switch button,
  .language-switch button {
    padding: 0.44rem 0.52rem;
    font-size: 0.7rem;
  }

  .audio-now-label {
    display: none;
  }

  .audio-meta {
    min-width: 72px;
  }

  .audio-track-name {
    font-size: 0.66rem;
  }

  .audio-play-btn {
    width: 1.88rem;
    height: 1.88rem;
    padding: 0;
  }

  .audio-play-btn img {
    width: 0.9rem;
    height: 0.9rem;
  }

  .audio-track-btn {
    width: 1.35rem;
    height: 1.35rem;
    font-size: 0.66rem;
    padding: 0;
  }

  .hero {
    padding-top: 0.8rem;
  }

  .hero-grid {
    gap: 0.75rem;
  }

  .hero-media {
    min-height: 200px;
  }

  .logo-ring {
    width: 180px;
    height: 180px;
  }

  .logo-visualizer {
    width: 220px;
    height: 220px;
  }

  .logo {
    width: 180px;
    height: 180px;
  }

  .hero-copy {
    text-align: center;
  }

  .cta-row {
    justify-content: center;
  }

  .section {
    padding: 4.5rem 0;
  }

  .section:first-of-type {
    padding-top: 2.8rem;
  }

  .latest-video-card {
    padding: 0;
  }

  .platform-card {
    padding: 1rem;
  }

}

@media (max-width: 520px) {
  .nav {
    gap: 0.24rem 0.48rem;
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .nav-wrap {
    align-items: center;
    padding: 0.85rem 0;
    row-gap: 0.42rem;
    column-gap: 0.45rem;
  }

  .nav a::after {
    bottom: -0.22rem;
  }

  .creator-switch {
    justify-self: start;
    padding: 0.16rem;
  }

  .language-switch {
    justify-self: start;
    padding: 0.16rem;
  }

  .creator-switch button,
  .language-switch button {
    padding: 0.42rem 0.56rem;
    font-size: 0.72rem;
  }

  .header-audio {
    justify-self: start;
    padding: 0.26rem 0.34rem 0.26rem 0.28rem;
    gap: 0.32rem;
  }

  .audio-meta {
    display: none;
  }

  .audio-track-switch {
    gap: 0.24rem;
  }

  .audio-track-btn {
    width: 1.24rem;
    height: 1.24rem;
    font-size: 0.62rem;
  }

  .audio-play-btn {
    width: 1.66rem;
    height: 1.66rem;
  }

  .audio-play-btn img {
    width: 0.78rem;
    height: 0.78rem;
  }

  .hero {
    padding-top: 0.75rem;
  }

  .hero-grid {
    gap: 0.9rem;
  }

  .hero-media {
    min-height: 190px;
  }

  .logo-ring {
    width: 178px;
    height: 178px;
  }

  .logo-visualizer {
    width: 220px;
    height: 220px;
  }

  .logo {
    width: 178px;
    height: 178px;
  }

  .release-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .latest-video-card {
    grid-template-columns: 1fr;
  }

  .cta-music-btn {
    gap: 0.45rem;
  }

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

  .footer-contact .contact-links {
    grid-template-columns: 1fr;
  }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav a::after,
  .site-header::after,
  .cta-music-btn::after,
  .cta-eq i,
  .logo-ring {
    animation: none !important;
  }

  .latest-video-item,
  .platform-card,
  .release-card,
  .artist-card,
  .latest-video-cover,
  .release-cover,
  .artist-card img,
  .platform-card img {
    transition: none !important;
  }

  .latest-video-item:hover,
  .platform-card:hover,
  .release-card:hover,
  .artist-card:hover,
  .latest-video-item:hover .latest-video-cover,
  .release-card:hover .release-cover,
  .artist-card:hover img,
  .platform-card:hover img {
    transform: none !important;
  }
}


