﻿.album {
  background: #0a0a0f;
  padding: 80px 20px;
}

.album__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.album__cover {
  text-align: center;
}

.album__cover-img {
  max-width: 100%;
  width: 300px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.album__content {
  text-align: center;
}

.album__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.album__description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.album__price {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 24px;
}

.album__what-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.album__list {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
}

.album__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.album__check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #667eea;
  margin-top: 2px;
}

.btn--album {
  display: inline-flex;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}






/* ============================================
   GOLUBAYA LISA - Mobile UX & Responsive CSS
   ============================================ */

/* === RESET & BASE (falls styles.css leer) === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0a0a0f;
  color: #ffffff;
}

/* === TOUCH OPTIMIZERS === */
/* Remove tap highlight on mobile */
* {
  -webkit-tap-highlight-color: transparent;
}

/* Ensure touch targets are large enough (min 44px) */
button,
a.btn,
input[type="email"],
.lang-btn {
  min-height: 44px;
  min-width: 44px;
  padding: 12px 20px;
  font-size: 16px; /* Prevents iOS zoom on focus */
}

/* Smooth touch scrolling */
html {
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

/* Prevent overscroll bounce on iOS */
body {
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

/* === HEADER / MOBILE MENU STYLES === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

body {
  padding-top: 68px;
}

.header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.header__logo-brand {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.header__logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
}

.header__nav {
  display: none;
  min-width: 0;
}

.header__lang-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 40px;
  min-width: 40px;
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn:active {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu__lang-switcher {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.mobile-menu__lang-switcher .lang-btn {
  font-size: 16px;
  padding: 12px 24px;
}

.header__buy {
  display: none;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.header__menu-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.header__menu-btn--active .header__menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn--active .header__menu-line:nth-child(2) {
  opacity: 0;
}

.header__menu-btn--active .header__menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 20px;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu__link {
  font-size: 24px;
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.mobile-menu__link:active {
  opacity: 0.6;
}

.mobile-menu__link--active {
  opacity: 0.7;
  color: #c8a86e;
}

.mobile-menu__buy {
  margin-top: 16px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding: 16px 24px;
}

/* === MOBILE STICKY BUY BUTTON === */
.mobile-sticky-buy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  display: none;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  will-change: transform;
}

.mobile-sticky-buy.visible {
  transform: translateY(0);
}

.mobile-sticky-buy__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.2s ease;
  min-height: 56px;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
}

.mobile-sticky-buy__link:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* Show on scroll down */
.mobile-sticky-buy.show-on-scroll {
  transform: translateY(0);
}

/* === RESPONSIVE BREAKPOINTS === */

/* Mobile first - base styles */

/* Tablet (768px+) - Show nav, hide hamburger */
@media (min-width: 768px) {
  .mobile-sticky-buy {
    display: none !important;
  }

  .header__menu-btn {
    display: none;
  }

  .header__nav {
    display: flex;
    gap: 16px;
    align-items: center;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .header__nav::-webkit-scrollbar {
    display: none;
  }

  .header__nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 10px;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .header__nav-link:active {
    opacity: 0.6;
  }

  .header__nav-link--active {
    opacity: 0.7;
    color: #c8a86e;
  }

  .header__buy {
    display: inline-flex;
  }

  .header__lang-switcher {
    display: flex;
  }
}

/* Tablet (768-1023px): mehr Platz fuer die Navi, ohne dass das Logo leidet */
@media (min-width: 768px) and (max-width: 1023px) {
  .header__nav {
    gap: 12px;
  }

  .header__nav-link {
    padding: 6px 8px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .header__nav-link--buy {
    display: none;
  }

  .header__inner {
    padding: 14px 16px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .header__inner {
    padding: 20px 40px;
  }

  .header__logo-text {
    font-size: 20px;
  }

  .header__logo-brand {
    font-size: 12px;
  }

  .header__nav-link {
    font-size: 13px;
  }

  .header__nav-link--buy {
    display: inline-flex;
  }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
  /* Large screen optimizations */
}

/* === SAFE AREA INSETS (iPhone notch) === */
@supports (padding: max(0px)) {
  .mobile-sticky-buy {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-buy {
    transition: none;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* === HIGH CONTRAST === */
@media (prefers-contrast: high) {
  .mobile-sticky-buy__link {
    border: 2px solid #ffffff;
  }
}

/* === DARK MODE === */
@media (prefers-color-scheme: dark) {
  /* Additional dark mode styles if needed */
}

/* === ORIENTATION CHANGE === */
@media (orientation: landscape) and (max-width: 1024px) {
  .mobile-sticky-buy {
    padding: 8px 16px;
  }
  .mobile-sticky-buy__link {
    padding: 12px 20px;
    min-height: 48px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1025 50%, #0a0a0f 100%);
  padding: 60px 20px 60px;
}

.hero__inner {
  max-width: 700px;
  width: 100%;
}

.hero__artist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero__portrait {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero__presents {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.hero__cover {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.hero__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.hero__description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
}

.hero__progress { margin-top: 40px; }

.hero__progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}

.hero__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transition: width 1s ease;
}

.hero__progress-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

/* ============================================
   RESPONSIVE - HERO
   ============================================ */

@media (min-width: 768px) {
  .hero__portrait {
    width: 100px;
    height: 100px;
  }

  .hero__presents {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

@media (min-width: 1024px) {
  .hero__portrait {
    width: 110px;
    height: 110px;
  }

  .hero__title {
    font-size: 42px;
    letter-spacing: 6px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  border-radius: 12px;
}

.btn--primary,
.btn--buy {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 32px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn--primary:hover,
.btn--buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 28px;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero .btn { margin: 8px; }

.hero__cta {
  margin-top: 16px;
}


/* ============================================
   WHY BUY SECTION
   ============================================ */

.why-buy {
  background: #0d0d14;
  padding: 80px 20px;
  text-align: center;
}

.why-buy__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.why-buy__grid {
  max-width: 800px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-buy__point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  text-align: left;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.why-buy__check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #667eea;
}

.why-buy .btn--buy {
  display: inline-flex;
  margin: 0 auto;
  margin-top: 20px;
}

/* ============================================
   SONGS SECTION
   ============================================ */

.songs {
  background: #0a0a0f;
  padding: 40px 20px 80px;
}

.songs__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}

.songs__subtitle {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: -20px auto 40px;
  max-width: 700px;
}

.songs__list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* --- Song Card (Accordion) --- */

.song {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.song__toggle {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.song__toggle:hover {
  background: rgba(255, 255, 255, 0.03);
}

.song__number {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  min-width: 28px;
  flex-shrink: 0;
}

.song__cover {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.song__title {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
}

.song__arrow {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-left: auto;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.song--open .song__arrow {
  transform: rotate(-135deg);
}

.song__body {
  padding: 0 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.song__preview-audio {
  width: 100%;
  height: 40px;
  margin-top: 16px;
}

/* --- Song Story --- */

.song__story {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.song__story h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.song__story p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* --- Audio Preview --- */

.song__preview {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.song__audio {
  display: none;
}

.song__play-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(102, 126, 234, 0.15);
  border: 1px solid rgba(102, 126, 234, 0.3);
  color: #667eea;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 44px;
  min-width: 44px;
}

.song__play-btn:hover {
  background: rgba(102, 126, 234, 0.25);
}

.song__play-btn--playing {
  background: rgba(102, 126, 234, 0.3);
  border-color: #667eea;
}

.song__play-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.song__play-label {
  display: none;
}

/* --- Story Toggle --- */

.song__story-tab {
  margin-top: 12px;
}

.song__story-toggle {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  letter-spacing: 0.5px;
  padding: 8px 0;
  transition: color 0.2s ease;
  min-height: 44px;
}

.song__story-toggle:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* --- Lyrics --- */

.song__lyrics {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.song__lyrics h4 {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.song__lyrics-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.song__lyrics-tab {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.song__lyrics-tab.active {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  color: #667eea;
}

.song__lyrics-tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.song__lyrics-content {
  display: block;
}

.song__lyrics-panel {
  display: none;
}

.song__lyrics-panel.active {
  display: block;
}

.song__lyrics-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  white-space: pre-wrap;
  word-break: normal;
  margin: 0;
  font-family: inherit;
}

/* --- Buy Button --- */

.song__buy-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.song__buy {
  display: inline-flex;
  font-size: 13px;
  padding: 12px 24px;
}

.song__permalink {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.song__permalink:hover {
  color: #667eea;
}

/* --- Unpublished / Coming Soon --- */

.song--unpublished {
  opacity: 0.75;
}

.song__coming-soon {
  text-align: center;
  padding: 16px 0;
}

.song__soon-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #667eea;
  background: rgba(102, 126, 234, 0.12);
  padding: 6px 16px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.song__soon-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.song__notify-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.song__notify-input {
  width: 100%;
  max-width: 320px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #ffffff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s ease;
}

.song__notify-input:focus {
  outline: none;
  border-color: rgba(102, 126, 234, 0.5);
}

.song__notify-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.song__notify-btn {
  width: 100%;
  max-width: 320px;
  margin: 0;
  padding: 14px 24px;
}

/* ============================================
   RESPONSIVE - SONGS
   ============================================ */

@media (min-width: 768px) {
  .songs {
    padding: 60px 40px 100px;
  }

  .songs__title {
    font-size: 32px;
    margin-bottom: 60px;
  }

  .songs__list {
    gap: 40px;
  }

  .song__toggle {
    padding: 24px 32px;
  }

  .song__body {
    padding: 0 32px 32px;
  }

  .song__title {
    font-size: 18px;
  }

  .song__cover {
    width: 72px;
    height: 72px;
  }

  .song__preview-audio {
    height: 44px;
  }

  .song__preview {
    align-self: flex-start;
  }

  .song__notify-form {
    flex-direction: row;
    justify-content: center;
  }

  .song__notify-input {
    flex: 1;
  }

  .song__notify-btn {
    width: auto;
    min-width: 140px;
  }
}

/* ============================================
   STREAMING SECTION
   ============================================ */

.streaming {
  background: #0d0d14;
  padding: 80px 20px;
  text-align: center;
}

.streaming__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.streaming__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.streaming__icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.streaming__icon-link:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.streaming__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* ============================================
   RESPONSIVE - STREAMING
   ============================================ */

@media (min-width: 768px) {
  .streaming {
    padding: 100px 40px;
  }

  .streaming__title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .streaming__icon-link {
    width: 72px;
    height: 72px;
  }

  .streaming__icon {
    width: 48px;
    height: 48px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  background: #0a0a0f;
  padding: 80px 20px;
  text-align: center;
}

.about__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.about__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.about__photo {
  flex-shrink: 0;
}

.about__portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.about__quote {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px 0;
  padding: 0 12px;
  border-left: 3px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px;
  text-align: left;
}

.about__content {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.about__content p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ============================================
   RESPONSIVE - ABOUT
   ============================================ */

@media (min-width: 768px) {
  .about {
    padding: 100px 40px;
  }

  .about__title {
    font-size: 32px;
  }

  .about__layout {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 48px;
    max-width: 800px;
  }

  .about__photo {
    flex-shrink: 0;
    padding-top: 8px;
  }

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

  .about__quote {
    font-size: 19px;
    padding-left: 24px;
    margin-bottom: 32px;
  }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: #0d0d14;
  padding: 80px 20px;
  text-align: center;
}

.contact__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.contact__message {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  margin: 0 auto 32px;
}

.contact__email {
  font-size: 16px;
  margin: 0 auto 12px;
}

.contact__email a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__email a:hover {
  color: rgba(102, 126, 234, 0.7);
  text-decoration: underline;
}

.contact__phone {
  font-size: 16px;
  margin: 0 auto 40px;
}

.contact__phone a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact__phone a:hover {
  color: rgba(102, 126, 234, 0.7);
  text-decoration: underline;
}

.contact__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.contact__social a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.contact__social a:hover {
  background: rgba(102, 126, 234, 0.15);
  border-color: rgba(102, 126, 234, 0.4);
  color: #667eea;
}

/* ============================================
   RESPONSIVE - CONTACT
   ============================================ */

@media (min-width: 768px) {
  .contact {
    padding: 100px 40px;
  }

  .contact__title {
    font-size: 32px;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #0a0a0f;
  padding: 48px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.footer__nav a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer__email {
  font-size: 14px;
  margin: 0;
}

.footer__email a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__email a:hover {
  color: rgba(102, 126, 234, 0.7);
  text-decoration: underline;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  min-height: 44px;
}

.footer__social a:hover {
  background: rgba(102, 126, 234, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
  color: #667eea;
}

.footer__legal {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 8px;
}

.footer__legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer__copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   RESPONSIVE - FOOTER
   ============================================ */

@media (min-width: 768px) {
  .footer {
    padding: 60px 40px;
  }

  .footer__social a {
    padding: 10px 18px;
  }
}

/* ============================================
   LEGAL PAGE
   ============================================ */

.legal-section {
  background: #0a0a0f;
  padding: 80px 20px;
  min-height: calc(100vh - 68px - 200px);
}

.legal-section__inner {
  max-width: 700px;
  margin: 0 auto;
}

.legal-section__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}

.legal-section__tab {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.2s ease;
  min-height: 44px;
}

.legal-section__tab.active {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  color: #667eea;
}

.legal-section__tab:not(.active):hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.8);
}

.legal-section__content {
  display: block;
}

.legal-section__panel {
  display: none;
}

.legal-section__panel.active {
  display: block;
}

.legal-section__panel h1 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.legal-section__panel h2 {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-section__panel p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.legal-section__panel strong {
  color: rgba(255, 255, 255, 0.9);
}

.legal-section__panel ul {
  margin: 12px 0 20px 20px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
  line-height: 1.8;
}

.legal-section__panel li {
  margin-bottom: 4px;
}

.legal-section__panel a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-section__panel a:hover {
  color: rgba(102, 126, 234, 0.7);
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE - LEGAL
   ============================================ */

@media (min-width: 768px) {
  .legal-section {
    padding: 100px 40px;
  }

  .legal-section__panel h1 {
    font-size: 32px;
  }

  .legal-section__panel h2 {
    font-size: 18px;
  }
}

/* ============================================
   MUSIC LICENSING
   ============================================ */

.licensing {
  background: #0a0a0f;
  padding: 80px 20px;
  min-height: calc(100vh - 68px - 200px);
  text-align: center;
}

.licensing__inner {
  max-width: 700px;
  margin: 0 auto;
}

.licensing__title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.licensing__text {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.licensing__cta {
  margin: 32px 0 48px;
}

.licensing__h2 {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 16px;
}

.licensing__steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0 auto 16px;
  max-width: 420px;
  text-align: left;
}

.licensing__steps li {
  position: relative;
  padding: 8px 0 8px 36px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.licensing__steps li::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(102, 126, 234, 0.5);
  color: #667eea;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.licensing__note {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
}

.licensing__note p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.licensing__note p:last-child {
  margin-bottom: 0;
}

/* Songseiten: License-Button + Hinweis */
.song-license {
  margin-top: 28px;
  text-align: center;
}

.song-license__link {
  padding: 14px 28px;
  font-size: 13px;
}

.song-license__hint {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Akkordeon (songs.html / index.html): kompakter License-Button,
   exakt unter dem Bandcamp-Button (linksbuendig, nicht zentriert) */
.song__license-wrap {
  margin-top: 14px;
}

.song__license-wrap .song-license__link {
  padding: 10px 20px;
  font-size: 12px;
}

/* ============================================
   RESPONSIVE - LICENSING
   ============================================ */

@media (min-width: 768px) {
  .licensing {
    padding: 100px 40px;
  }

  .licensing__title {
    font-size: 32px;
  }

  .licensing__h2 {
    font-size: 18px;
  }
}







