/* ===== RESET / BASE ===== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(58,160,255,0.12), transparent 25%),
    radial-gradient(circle at top right, rgba(58,160,255,0.08), transparent 18%),
    linear-gradient(180deg, #000 0%, #090909 52%, #000 100%);
  color: #fff;
  font-size: 17px;
  line-height: 1.65;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
}

p {
  color: #b7c6d4;
}

h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#about,
#contact {
  scroll-margin-top: 90px;
}

#contact,
.contact-section {
  overflow-x: hidden;
}

#music {
  scroll-margin-top: 15px;
  padding-top: 70px;
  padding-bottom: 90px;
  position: relative;
}

#music::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(58,160,255,0.10), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.012), rgba(255,255,255,0));
  z-index: 0;
}

#music .container {
  position: relative;
  z-index: 1;
}
.catalogue-cta {
  margin-top: 34px;
  text-align: center;
}

.catalogue-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.catalogue-btn:hover {
  transform: translateY(-2px);
}

/* ===== LAYOUT ===== */

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===== HEADER ===== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lang-switch a:hover,
.lang-switch a.active {
  color: #ffffff;
}

.lang-switch span {
  color: rgba(255,255,255,0.35);
}

@media (max-width: 768px) {
  .nav-right {
    gap: 14px;
  }

  .lang-switch {
    font-size: 12px;
    gap: 6px;
  }
}

.logo img {
  height: 60px;
  filter: drop-shadow(0 0 14px rgba(58,160,255,0.25));
}

/* ===== NAVIGATION ===== */

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: #3aa0ff;
}

/* ===== HERO ===== */

.hero {
  text-align: center;
  min-height: calc(100vh - 77px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 70px;
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  animation: subtleFlow 18s ease infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(58,160,255,0.20), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.92), rgba(0,0,0,0.96)),
    url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.8;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 120px;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%) scale(0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  background:
    radial-gradient(
      circle,
      rgba(255,255,255,0.16) 0%,
      rgba(110,193,255,0.14) 18%,
      rgba(58,160,255,0.10) 32%,
      rgba(58,160,255,0.05) 48%,
      rgba(58,160,255,0.00) 70%
    );
  filter: blur(10px);
  animation: heroPulseExpand 2.8s ease-out 1.2s forwards;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}

.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
}

.hero-logo {
  width: 220px;
  max-width: 62vw;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(58,160,255,0.22));
}

.neon-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(-28px) scale(0.965);
  animation:
    aaLogoDrop 2.4s cubic-bezier(.16,1,.3,1) forwards,
    aaLogoGlow 4.5s ease-in-out 1.4s infinite;
}

.hero h1 {
  font-size: 64px;
  margin: 0 0 10px 0;
  letter-spacing: -0.03em;
}

.hero-subline {
  font-size: 18px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfd8e3;
  margin-bottom: 18px;
}

.hero-text {
  color: #b7b7b7;
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
}

.hero .btn {
  position: relative;
  z-index: 10;
}

.hero .btn.reveal-4 {
  opacity: 0;
  transform: translateY(18px);
  animation:
    heroTextReveal 1s ease forwards,
    premiumPulse 4.8s ease-in-out 3.7s infinite;
  animation-delay: 2.7s, 3.7s;
}

/* ===== BUTTON ===== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  padding: 15px 36px;

  background: linear-gradient(135deg, #1588ff 0%, #63c8ff 100%);
  color: #ffffff !important;

  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.30);

  box-shadow:
    0 18px 42px rgba(20,110,210,0.38),
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 0 28px rgba(58,160,255,0.22);

  text-shadow:
    0 1px 2px rgba(0,0,0,0.42),
    0 0 8px rgba(0,0,0,0.22);

  position: relative;
  z-index: 5;
  overflow: hidden;
  
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.08) 25%,
    rgba(255,255,255,0) 50%
  );
  opacity: 0.35;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px) scale(1.015);
  background: linear-gradient(135deg, #0f7fff 0%, #49bcff 100%);
  border-color: rgba(255,255,255,0.36);
  box-shadow:
    0 26px 50px rgba(20,110,210,0.44),
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 0 36px rgba(58,160,255,0.26);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

/* ===== SECTIONS ===== */

.section {
  min-height: calc(100vh - 77px);
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
}

.section > .container {
  width: 100%;
}

#music,
#about,
#contact {
  min-height: calc(100vh - 77px);
  display: flex;
  align-items: center;
  padding: 20px 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.015) 0%,
    rgba(255,255,255,0) 18%,
    rgba(255,255,255,0) 82%,
    rgba(255,255,255,0.02) 100%
  );
}

.dark {
  background: rgba(255,255,255,0.03);
}

/* ===== ABOUT ===== */

.about-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(58,160,255,0.10), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(58,160,255,0.06), transparent 22%),
    linear-gradient(180deg, rgba(10,16,28,0.97), rgba(7,11,20,0.99));
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.025) 0%,
      rgba(255,255,255,0) 22%,
      rgba(255,255,255,0) 78%,
      rgba(255,255,255,0.02) 100%
    );
}

.about-wrap {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.about-intro {
  text-align: center;
  margin-bottom: 42px;
}

.about-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(173, 204, 232, 0.86);
}

.about-intro h2 {
  margin: 0 0 16px 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: #f2f8ff;
}

.about-lead {
  max-width: 780px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.8;
  color: #d7e3ee;
}

.about-body {
  max-width: 820px;
  margin: 0 auto;
text-align: center;
}

.about-body p {
  margin: 0 0 24px 0;
  font-size: 18px;
  line-height: 1.9;
  color: #b9c7d5;
}

.about-quote {
  margin-top: 34px !important;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 24px !important;
  line-height: 1.5 !important;
  color: #edf6ff !important;
  text-align: center;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-shadow: 0 0 18px rgba(58,160,255,0.08);
}
.about-section h2 {
  color: #eaf4ff;
}

.about-section p {
  color: #b7c6d4;
  line-height: 1.75;
}

.about-section strong {
  color: inherit;
}

#about a {
  color: #3aa0ff;
}

/* ===== GRID / CARDS ===== */

.grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.025));
  padding: 20px;
  border-radius: 12px;
  flex: 1;
  border: 1px solid rgba(255,255,255,0.08);
}

.no-break {
  white-space: nowrap;
}

/* ===== RELEASES ===== */

.section-head {
  margin-bottom: 34px;
  text-align: center;
}

.section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  letter-spacing: -0.02em;
  color: #eef6ff;
}

.section-head p {
  color: #aebdcc;
  margin-top: 0;
  font-size: 17px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.release-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.release-carousel-shell {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 18px;
}

.release-carousel {
  overflow: hidden;
  width: 100%;
  padding-top: 14px;
}

.release-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.release-card {
  min-width: calc((100% - 72px) / 4);
  max-width: calc((100% - 72px) / 4);
  box-sizing: border-box;
  padding: 17px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(58,160,255,0.05), rgba(10,20,35,0.92));

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 16px 34px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.015) inset;

  backdrop-filter: blur(8px);
  transition:
    transform 0.26s ease,
    border-color 0.26s ease,
    box-shadow 0.26s ease;
}

.release-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0));
  opacity: 0.7;
}

.release-card:hover {
  transform: translateY(-6px);
  border-color: rgba(58,160,255,0.24);
  box-shadow:
    0 22px 42px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.025) inset,
    0 0 22px rgba(58,160,255,0.08);
  z-index: 2;
}

.release-card h3 {
  margin: 0 0 7px 0;
  line-height: 1.2;
  height: 2.45em;
  overflow: hidden;
  color: #f5f9fd;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.release-card p {
  color: #b7c3cf;
  margin: 0 0 10px 0;
}

.release-card > p:first-of-type {
  font-size: 0.95rem;
  color: #9fb3c7;
}

.release-new-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 26px;
  padding: 4px 10px;

  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);

  color: #f8fbff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.18),
    0 0 16px rgba(58,160,255,0.10);

  backdrop-filter: blur(6px);
}

.release-card.is-new {
  border-color: rgba(58,160,255,0.16);
  box-shadow:
    0 20px 42px rgba(0,0,0,0.32),
    0 0 0 1px rgba(255,255,255,0.02) inset,
    0 0 22px rgba(58,160,255,0.08);
}

.cover {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top right, rgba(58,160,255,0.22), transparent 34%),
    linear-gradient(160deg, #181818 0%, #090909 100%);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.035) inset;
}

.cover-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.45s ease;
}


.release-card:hover .cover img {
  transform: scale(1.06);
  filter: brightness(1.06) saturate(1.03);
}


.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,0.10) 0%,
      rgba(255,255,255,0.025) 34%,
      rgba(255,255,255,0) 64%
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 45%,
      rgba(0,0,0,0.28) 100%
    );
  pointer-events: none;
}

.cover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0,0,0,0.10), rgba(0,0,0,0.28));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.release-card:hover .cover-overlay {
  opacity: 1;
}

.play-button {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 24px;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.26),
    0 0 18px rgba(58,160,255,0.14);
  backdrop-filter: blur(6px);
  transform: scale(0.92);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.release-card:hover .play-button {
  transform: scale(1);
  box-shadow:
    0 18px 34px rgba(0,0,0,0.34),
    0 0 24px rgba(58,160,255,0.18);
}

.release-extra {
  display: inline-flex;
  align-items: center;
  min-height: auto !important;
  margin: 2px 0 12px 0 !important;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow:
    0 0 14px rgba(255,255,255,0.03),
    0 0 0 1px rgba(255,255,255,0.02) inset;
}

/* Released */
.badge-live {
  background: linear-gradient(180deg, rgba(58,160,255,0.18), rgba(58,160,255,0.08));
  border: 1px solid rgba(58,160,255,0.28);
  color: #dcecff !important;
}

/* Release with date */
.badge-date {
  background: linear-gradient(180deg, rgba(214,177,92,0.16), rgba(214,177,92,0.08));
  border: 1px solid rgba(214,177,92,0.26);
  color: #f5e7c3 !important;
}

/* In progress / coming soon */
.badge-progress {
  background: linear-gradient(180deg, rgba(148,120,255,0.14), rgba(148,120,255,0.08));
  border: 1px solid rgba(148,120,255,0.24);
  color: #e4dcff !important;
}

/* ===== LINKS ===== */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.platform-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  min-height: 32px;
  padding: 6px 11px;

  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.09);

  color: #d9ebff !important;
  text-decoration: none;

  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.015em;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.platform-link:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(58,160,255,0.18), rgba(58,160,255,0.08));
  border-color: rgba(58,160,255,0.28);
  box-shadow: 0 8px 18px rgba(58,160,255,0.12);
  color: #ffffff !important;
}

.platform-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.platform-label {
  white-space: nowrap;
 line-height: 1;
}
.platform-spotify {
  border-color: rgba(30,215,96,0.34);
}

.platform-amazon {
  border-color: rgba(255,170,0,0.30);
}

.platform-youtube {
  border-color: rgba(255,0,0,0.28);
}

.platform-soundcloud {
  border-color: rgba(255,119,0,0.30);
}

.platform-distrokid {
  border-color: rgba(210,210,210,0.22);
  opacity: 0.92;
}

.links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  color: #d9ebff !important;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.015em;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.links a:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(58,160,255,0.18), rgba(58,160,255,0.08));
  border-color: rgba(58,160,255,0.28);
  color: #ffffff !important;
  box-shadow: 0 8px 18px rgba(58,160,255,0.10);
}


.text-link {
  color: #3aa0ff !important;
  text-decoration: none;
  font-weight: bold;
}

.text-link:hover {
  color: #6ec1ff !important;
}

/* ===== CONTACT ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(circle at center, rgba(58,160,255,0.14), transparent 62%),
    linear-gradient(180deg, rgba(4,8,16,0.96), rgba(2,5,12,0.99)),
    url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0) 20%,
      rgba(255,255,255,0) 82%,
      rgba(255,255,255,0.018) 100%
    );
}

.contact-wrap {
  position: relative;
  z-index: 1;
}

.contact-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px auto;
}

.contact-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(173, 204, 232, 0.86);
}

.contact-intro h2 {
  margin: 0 0 14px 0;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: #f2f8ff;
}

.contact-lead {
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.8;
  color: #d0ddeb;
  max-width: 720px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 950px;
  margin: 0 auto;
}

.contact-grid > div {
  flex: 1;
  min-width: 250px;
}

.contact-grid a {
  font-weight: bold;
  font-size: 18px;
  color: #3aa0ff;
  text-decoration: none;
}

.contact-card {
  padding: 28px 30px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    linear-gradient(180deg, rgba(58,160,255,0.04), rgba(10,20,35,0.90));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 18px 38px rgba(0,0,0,0.28),
    0 0 0 1px rgba(255,255,255,0.015) inset;
  backdrop-filter: blur(8px);
}

.contact-card h3 {
  margin: 0 0 14px 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dcecff;
}

.contact-card p {
  margin: 0;
  color: #c0cfdd;
  font-size: 17px;
  line-height: 1.85;
}

.contact-card strong {
  color: #f3f9ff;
}

.contact-card a {
  color: #7cc8ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.contact-card a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(58,160,255,0.18);
}

.contact-subhead {
  margin-top: 28px !important;
}

#contact {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(58,160,255,0.16), transparent 65%),
    linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.97)),
    url("../images/contact-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

/* ===== FOOTER PREMIUM ===== */

.footer,
.footer-premium {
  position: relative;
  text-align: center;
  padding: 54px 0 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(58,160,255,0.10), transparent 28%),
    linear-gradient(180deg, rgba(2,5,12,0.98), rgba(0,0,0,1));
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.footer::before,
.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.025) 0%,
    rgba(255,255,255,0) 18%,
    rgba(255,255,255,0) 100%
  );
}

.footer-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-logo {
  width: 92px;
  opacity: 0.9;
  filter:
    drop-shadow(0 0 12px rgba(58,160,255,0.14))
    drop-shadow(0 0 22px rgba(58,160,255,0.08));
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 16px rgba(58,160,255,0.18))
    drop-shadow(0 0 28px rgba(58,160,255,0.10));
}

.footer-tagline {
  max-width: 640px;
  margin: 0;
  color: #9eb0c2;
  font-size: 15px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  margin: 0;
  color: #7f8d9b;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer a {
  color: #b8dfff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(58,160,255,0.18);
  transform: translateY(-1px);
}/* ===== FOOTER PREMIUM ===== */

.footer,
.footer-premium {
  position: relative;
  text-align: center;
  padding: 54px 0 42px;
  background:
    radial-gradient(circle at 50% 0%, rgba(58,160,255,0.10), transparent 28%),
    linear-gradient(180deg, rgba(2,5,12,0.98), rgba(0,0,0,1));
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.footer::before,
.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.025) 0%,
    rgba(255,255,255,0) 18%,
    rgba(255,255,255,0) 100%
  );
}

.footer-wrap {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-logo {
  width: 92px;
  opacity: 0.9;
  filter:
    drop-shadow(0 0 12px rgba(58,160,255,0.14))
    drop-shadow(0 0 22px rgba(58,160,255,0.08));
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

.footer-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
  filter:
    drop-shadow(0 0 16px rgba(58,160,255,0.18))
    drop-shadow(0 0 28px rgba(58,160,255,0.10));
}

.footer-tagline {
  max-width: 640px;
  margin: 0;
  color: #9eb0c2;
  font-size: 15px;
  line-height: 1.7;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-copy {
  margin: 0;
  color: #7f8d9b;
  font-size: 14px;
  letter-spacing: 0.01em;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a,
.footer a {
  color: #b8dfff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease, transform 0.2s ease;
}

.footer-nav a:hover,
.footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(58,160,255,0.18);
  transform: translateY(-1px);
}

/* ===== CAROUSEL BUTTONS / DOTS ===== */

.carousel-btn {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 22px;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.carousel-btn:hover {
  transform: scale(1.05);
  background:
    linear-gradient(180deg, rgba(58,160,255,0.24), rgba(58,160,255,0.10));
  border-color: rgba(58,160,255,0.32);
  box-shadow: 0 12px 24px rgba(58,160,255,0.14);
}

.carousel-btn:disabled {
  opacity: 0.30;
  cursor: default;
  transform: none;
  box-shadow: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.16);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.carousel-dot.active {
  background: #3aa0ff;
  border-color: rgba(58,160,255,0.45);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(58,160,255,0.24);
}

/* ===== HERO TEXT ANIMATION ===== */

.reveal-1,
.reveal-2,
.reveal-3,
.reveal-4 {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextReveal 1s ease forwards;
}

.reveal-1 {
  animation-delay: 1.6s;
}

.reveal-2 {
  animation-delay: 2s;
}

.reveal-3 {
  animation-delay: 2.35s;
}

.reveal-4 {
  animation-delay: 2.7s;
}

/* ====CATALOGUE=== */
 .catalogue-page {
  min-height: auto;
  display: block;
  padding: 120px 0 90px;
}

.catalogue-page::before {
  display: none;
}

.catalogue-page .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 40px;
  align-items: start;
}
 
.catalogue-grid .release-card {
  min-width: 0;
  max-width: none;
  width: 100%;
}

.catalogue-page h1 {
  font-size: clamp(40px, 6vw, 64px);
  margin-bottom: 12px;
}

.catalogue-page .section-lead {
  max-width: 760px;
}

@media (max-width: 980px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-page {
    padding: 105px 0 80px;
  }
}

/* ===== KEYFRAMES ===== */

@keyframes subtleFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 12px 28px rgba(58,160,255,0.25);
  }
  50% {
    box-shadow: 0 18px 40px rgba(58,160,255,0.4);
  }
  100% {
    box-shadow: 0 12px 28px rgba(58,160,255,0.25);
  }
}

@keyframes heroPulseExpand {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }
  12% {
    opacity: 0.9;
  }
  45% {
    opacity: 0.42;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(16);
  }
}

@keyframes aaLogoGlow {
  0% {
    filter:
      drop-shadow(0 0 8px rgba(58,160,255,0.20))
      drop-shadow(0 0 18px rgba(58,160,255,0.10));
  }
  50% {
    filter:
      drop-shadow(0 0 12px rgba(58,160,255,0.34))
      drop-shadow(0 0 28px rgba(58,160,255,0.18));
  }
  100% {
    filter:
      drop-shadow(0 0 8px rgba(58,160,255,0.20))
      drop-shadow(0 0 18px rgba(58,160,255,0.10));
  }
}

@keyframes aaLogoDrop {
  0% {
    opacity: 0;
    transform: translateY(-40px) scale(0.97);
  }
  60% {
    opacity: 1;
    transform: translateY(4px) scale(1.005);
  }
  80% {
    transform: translateY(-2px) scale(0.998);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroTextReveal {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 980px) {
  .release-carousel-shell {
    grid-template-columns: 48px 1fr 48px;
    gap: 14px;
  }

  .release-track {
    gap: 20px;
  }

  .release-card {
    min-width: calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }

  .carousel-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

@media (max-width: 640px) {
  #music {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .section-head {
    margin-bottom: 26px;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .section-head p {
    font-size: 15px;
  }

  .release-carousel-shell {
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
  }

  .release-track {
    gap: 16px;
  }

  .release-card {
    min-width: 100%;
    max-width: 100%;
    padding: 16px;
  }

  .carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {

  /* ===== GENERELLE SECTION-KORREKTUR ===== */

  .section,
  #music,
  #about,
  #contact {
    min-height: auto;
    display: block;
    padding: 72px 0 64px;
  }

  .section > .container,
  #music .container,
  #about .container,
  #contact .container {
    width: 92%;
    max-width: 100%;
    margin: 0 auto;
  }

  /* ===== MUSIC ===== */

  #music {
    text-align: center;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .section-head {
    text-align: center;
    margin-bottom: 26px;
  }

  .section-head h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .section-head p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .release-carousel-shell {
    grid-template-columns: 42px 1fr 42px;
    gap: 10px;
    align-items: center;
  }

  .release-carousel {
    width: 100%;
  }

  .release-track {
    gap: 16px;
  }

  .release-card {
    min-width: 100%;
    max-width: 100%;
    padding: 16px;
    text-align: left;
  }

 .release-card h3 {
  margin: 0 0 8px 0;
  line-height: 1.22;
  height: 2.55em;
  overflow: hidden;
  color: #f5f9fd;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

  .links {
    justify-content: flex-start;
  }

  /* ===== ABOUT ===== */

  #about {
    text-align: center;
  }

  #about h2 {
    text-align: center;
    margin-bottom: 20px;
  }

  #about p {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.75;
  }

  /* ===== CONTACT ===== */

  #contact {
    text-align: center;
  }

  
  #contact h2,
  #contact h3,
  #contact p {
    text-align: center;
  }

  #contact a {
    display: inline-block;
    word-break: break-word;
  }
}

@keyframes premiumPulse {
  0% {
    box-shadow:
      0 18px 40px rgba(20,110,210,0.32),
      0 0 24px rgba(58,160,255,0.16);
  }
  50% {
    box-shadow:
      0 22px 44px rgba(20,110,210,0.42),
      0 0 34px rgba(58,160,255,0.22);
  }
  100% {
    box-shadow:
      0 18px 40px rgba(20,110,210,0.32),
      0 0 24px rgba(58,160,255,0.16);
  }
}



@media (min-width: 1600px) {
  .btn {
    padding: 16px 40px;
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .release-card {
    text-align: left;
    padding: 16px;
    border-radius: 18px;
  }

  .cover {
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .play-button {
    width: 56px;
    height: 56px;
    font-size: 21px;
  }

  .release-card h3 {
    font-size: 1.08rem;
  }

  .links {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .about-wrap {
    width: 92%;
  }

  .about-intro {
    margin-bottom: 30px;
  }

  .about-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .about-intro h2 {
    margin-bottom: 14px;
  }

  .about-lead {
    font-size: 17px;
    line-height: 1.75;
  }

  .about-body p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
  }

  .about-quote {
    font-size: 20px !important;
    line-height: 1.55 !important;
    padding-top: 22px;
    margin-top: 26px !important;
  }
}
@media (max-width: 768px) {
  .contact-section,
  #contact {
    overflow-x: clip;
  }

  .contact-wrap,
  #contact .container {
    width: 92%;
    max-width: 92%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .contact-intro {
    margin-bottom: 30px;
  }

  .contact-kicker {
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .contact-lead {
    font-size: 16px;
    line-height: 1.7;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  .contact-grid > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .contact-card {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 22px 18px;
    box-sizing: border-box;
    border-radius: 20px;
    text-align: center;
  }

  .contact-card h3,
  .contact-card p {
    text-align: center;
  }

  .contact-card a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-subhead {
    margin-top: 22px !important;
  }
}
@media (max-width: 768px) {
  .footer,
  .footer-premium {
    padding: 44px 0 36px;
  }

  .footer-brand {
    gap: 12px;
    margin-bottom: 22px;
  }

  .footer-logo {
    width: 82px;
  }

  .footer-tagline {
    font-size: 14px;
    line-height: 1.65;
    max-width: 92%;
  }

  .footer-copy {
    font-size: 13px;
  }

  .footer-nav {
    gap: 14px;
  }

  .footer-nav a {
    font-size: 13px;
  }
}
@media (max-width: 768px) {

  .contact-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .contact-grid {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }

  .contact-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 22px 18px;
    box-sizing: border-box;
    border-radius: 20px;
  }
@media (max-width: 768px) {
  .links {
    gap: 7px;
    justify-content: flex-start;
  }

  .platform-link {
    min-height: 30px;
    padding: 6px 10px;
    font-size: 11px;
    gap: 6px;
  }

  .platform-icon {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 480px) {
  .platform-link {
    padding: 5px 9px;
    font-size: 10.5px;
  }
}
}
