@charset "UTF-8";

@font-face {
  font-family: "LEMONMILK";
  src: url("/font/LEMONMILK-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-0: #0a0b0d;
  --bg-1: #0c0f14;
  --bg-2: #0f1319;
  --card: rgba(255,255,255,0.05);
  --card-strong: rgba(12,16,22,0.9);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #f97316;
  --accent-2: #38bdf8;
  --accent-3: #22c55e;
  --ring: rgba(255,255,255,0.14);
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "LEMONMILK", "Arial", sans-serif;
  background:
    radial-gradient(900px 520px at 10% 10%, rgba(255,255,255,0.035), transparent 60%),
    radial-gradient(800px 480px at 92% 18%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(700px 520px at 50% 58%, rgba(255,255,255,0.03), transparent 60%),
    radial-gradient(680px 520px at 60% 88%, rgba(255,255,255,0.025), transparent 60%),
    linear-gradient(160deg, var(--bg-0), var(--bg-2));
}

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
  display: none;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 1000;
  padding: 0 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--card-strong);
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: 18px 22px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  transition: padding 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, width 0.45s ease;
  width: min(1300px, 96vw);
  margin: 0 auto;
}

.site-nav.is-compact {
  padding: 10px 18px;
  box-shadow: 0 14px 36px rgba(0,0,0,0.32);
  width: min(1180px, 94vw);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
  transition: height 0.25s ease;
}

.site-nav.is-compact .brand img { height: 32px; }

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
  justify-content: flex-end;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--ring);
  background: rgba(255,255,255,0.05);
  font-weight: 600;
}

.lang-toggle .lang {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-toggle .lang.is-active {
  background: rgba(56,189,248,0.2);
  color: var(--text);
}

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

section { scroll-margin-top: 140px; }

.hero {
  padding: 140px 0 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
  font-size: 0.75rem;
}

h1, h2, h3 {
  font-family: "LEMONMILK", "Arial", sans-serif;
  margin: 0 0 14px;
}

h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  border-color: rgba(249,115,22,0.5);
  background: rgba(249,115,22,0.18);
}

.btn:hover:not(:disabled),
.btn:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.32);
}

.btn--primary:hover:not(:disabled),
.btn--primary:focus-visible:not(:disabled) {
  border-color: rgba(249,115,22,0.75);
  background: rgba(249,115,22,0.3);
}

.btn:disabled {
  opacity: 0.45;
  color: rgba(229,231,235,0.85);
  cursor: not-allowed;
  transform: none;
}

.hero-card {
  background: rgba(15,23,42,0.7);
  border: 1px solid var(--ring);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-card__title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(56,189,248,0.16);
  color: var(--text);
  font-size: 0.85rem;
  border: 1px solid rgba(56,189,248,0.35);
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.artist-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: rgba(15,23,42,0.5);
}

.artist-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.artist-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.artist-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px;
  background: linear-gradient(180deg, rgba(15,23,42,0) 0%, rgba(15,23,42,0.85) 60%);
  transform: translateY(40%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.artist-links {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.artist-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  border: none;
  color: #111827;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}

.artist-links a:hover,
.artist-links a:focus-visible {
  background: rgba(255,255,255,0.9);
  color: #0b0d10;
  transform: translateY(-1px);
}

.artist-card:hover .artist-media img,
.artist-card:focus-within .artist-media img {
  transform: scale(1.05);
}

.artist-card:hover .artist-overlay,
.artist-card:focus-within .artist-overlay {
  opacity: 1;
  transform: translateY(0);
}

.playlist-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--ring);
  background: rgba(15,23,42,0.6);
  box-shadow: var(--shadow);
}

.playlist-embed iframe {
  width: 100%;
  height: 540px;
  border: 0;
}

.section-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 12px;
}

.songs-card {
  border-radius: 18px;
  border: 1px solid var(--ring);
  background: rgba(15,23,42,0.6);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.songs-list {
  display: flex;
  flex-direction: column;
}

.song-group {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.song-group:last-child {
  border-bottom: 0;
}

.song-group__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.song-group__summary::-webkit-details-marker {
  display: none;
}

.song-group__summary::after {
  content: "\2193";
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}

.song-group[open] > .song-group__summary::after {
  content: "\2191";
}

.song-group__title {
  flex: 1;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.song-group-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #38bdf8;
  margin: 0;
  flex: 0 0 auto;
  cursor: pointer;
}

.song-group__count {
  color: var(--muted);
  font-size: 0.82rem;
}

.song-group__body {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.song-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  padding: 12px 20px 12px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.song-item:last-child {
  border-bottom: 0;
}

.song-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #38bdf8;
  margin: 0;
}

.song-name {
  display: block;
  flex: 1;
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
  word-break: break-word;
}

.song-group .song-name::before {
  content: "- ";
  color: var(--muted);
}

.song-empty {
  margin: 0;
  padding: 18px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.songs-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.songs-actions .btn {
  cursor: pointer;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 28px;
  align-items: start;
}

.about-card {
  background: rgba(15,23,42,0.7);
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: 22px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: inline-flex;
  gap: 16px;
}

.footer-links a { text-decoration: underline; }

.legal-wrap {
  padding: 110px 0 70px;
}

.legal-card {
  background: rgba(15,23,42,0.7);
  border: 1px solid var(--ring);
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}

.legal-meta {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.legal-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}

.legal-tabs a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  font-weight: 600;
}

.legal-tabs a.is-active {
  background: rgba(56,189,248,0.2);
  border-color: rgba(56,189,248,0.4);
}

.legal-card h2 { margin-top: 28px; }

.legal-card h1,
.legal-card h2,
.legal-card p,
.legal-card li,
.legal-card .legal-meta {
  color: #b7bcc5;
}

.legal-card h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.legal-card h2 { font-size: 1.1rem; }

.consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.consent.hidden { display: none; }

.consent__inner {
  width: min(980px, 95vw);
  background: rgba(10, 12, 16, 0.95);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
}

.consent__text {
  color: var(--text);
  font-size: 0.95rem;
}

.consent__text strong {
  display: block;
  margin-bottom: 4px;
}

.consent__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.consent__link {
  color: var(--text);
  text-decoration: underline;
  font-weight: 600;
}

.consent__btn {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(34,197,94,0.2);
  color: var(--text);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
}

@media (max-width: 760px) {
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .hero { padding: 120px 0 70px; }
  .artist-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consent__inner { flex-direction: column; align-items: flex-start; }
}

@media (hover: none) {
  .artist-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 700px) {
  .artist-overlay {
    opacity: 1;
    transform: translateY(0);
    inset: 0 0 auto 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.35) 0%, rgba(15,23,42,0) 35%);
    padding: 12px 12px 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }

  .artist-overlay h3 {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .artist-links {
    gap: 8px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    padding-top: 8px;
  }

  .artist-links::before {
    content: "";
    position: absolute;
    left: -12px;
    right: -12px;
    bottom: -8px;
    top: -6px;
    background: linear-gradient(0deg, rgba(15,23,42,0.55) 0%, rgba(15,23,42,0) 70%);
    border-radius: 16px;
    z-index: -1;
  }

  .artist-links a {
    background: rgba(255,255,255,0.45);
    color: #0b0d10;
  }

  .artist-links a:hover,
  .artist-links a:focus-visible {
    background: rgba(255,255,255,0.45);
    color: #0b0d10;
    transform: none;
  }
}

@media (max-width: 700px) {
  .about-grid p {
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  .legal-wrap {
    padding: 90px 0 50px;
  }

  .legal-card {
    padding: 20px;
    font-size: 0.88rem;
  }

  .legal-card h1 {
    font-size: clamp(1.3rem, 6vw, 1.7rem);
    word-break: break-word;
  }

  .legal-card h2 {
    font-size: 0.95rem;
  }
}

@media (max-width: 700px) {
  .playlist-embed iframe {
    height: 360px;
  }
}

@media (max-width: 700px) {
  .song-item {
    padding: 12px 12px;
  }

  .songs-actions .btn {
    width: 100%;
  }
}
