:root {
  --bg: #0b0b0f;
  --bg-soft: #13131a;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --text: #f3f3f5;
  --text-soft: #b4b7c2;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #d6ff57;
  --accent-2: #7ae7ff;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1180px;
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Space Grotesk', Arial, sans-serif;
  background: linear-gradient(180deg, #09090c 0%, #111118 100%);
  color: var(--text);
  line-height: 1.5;
}

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

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

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section {
  padding: 72px 0;
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.section-text {
  margin: 0;
  max-width: 760px;
  color: var(--text-soft);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--panel-strong);
}

.button--primary {
  background: var(--accent);
  color: #0a0a0d;
  border-color: transparent;
  font-weight: bold;
}

.button--primary:hover {
  border-color: transparent;
  filter: brightness(1.12);
}

.button--ghost {
  background: transparent;
}

.button--sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 14, 0.68);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}

.brand {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 14px;
}

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

.hero {
  padding: 40px 0 56px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: stretch;
}

.hero__panel,
.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero__title {
  margin: 0 0 14px;
  font-size: clamp(40px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.hero__text {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero__about-title {
  margin: 0 0 6px;
  font-size: 17px;
}

.hero__about-text {
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.hero__cover {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1016;
  min-height: 300px;
}

.hero__cover img,
.hero__cover video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 28px;
}

.release-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform var(--transition), border-color var(--transition);
}

.release-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
}

.release-card__art {
  aspect-ratio: 1 / 1;
  background: #0f1016;
}

.release-card__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.release-card__title {
  margin: 0;
  font-size: 18px;
}

.release-card__meta {
  color: var(--text-soft);
  font-size: 14px;
}

.release-card__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.release-card__empty {
  color: var(--text-soft);
}

body.landing-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.landing {
  position: relative;
  flex: 1;
  display: grid;
  place-items: center;
  padding: 40px 16px;
  overflow: hidden;
}

.landing__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  text-align: center;
}

.site-footer {
  padding: 22px 0 28px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 14px;
}

.landing__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(122, 231, 255, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(214, 255, 87, 0.12), transparent 35%);
}


.landing__title {
  margin: 0 0 14px;
  font-size: clamp(44px, 9vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.landing__subtitle {
  margin: 0 auto 34px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: 18px;
}

.artist-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.artist-card {
  padding: 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.artist-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.artist-card__label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.artist-card h2 {
  margin: 0 0 10px;
  font-size: 34px;
}

.artist-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
}

.artist-card__cta {
  font-weight: bold;
}

.notice {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.spotify-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 13px;
  margin-top: 18px;
}

.spotify-badge strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .hero__grid,
  .grid-2,
  .artist-selector,
  .hero__about {
    grid-template-columns: 1fr;
  }

  .site-header__inner {
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }

  .site-nav {
    justify-content: center;
  }
}



/* ===== LANDING AVATAR ===== */

.artist-avatar {
  width: 250px;
  height: 250px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0f1016;
}

.artist-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ===== ARTIST THEME ===== */

.theme-mraibabylon {
  --accent: #7ae7ff;
}


/* ===== SKELETON LOADING ===== */

@keyframes skeleton-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.85; }
}

.loading-card {
  animation: skeleton-pulse 1.5s ease infinite;
  pointer-events: none;
}

.loading-card .release-card__art {
  background: rgba(255, 255, 255, 0.1);
}

.loading-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.loading-card__line {
  height: 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
}

.loading-card__line--short {
  width: 50%;
}


/* ===== VIDEO SECTION ===== */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  gap: 28px;
  justify-content: center;
  margin-top: 28px;
}

.video-item video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #0f1016;
  display: block;
}


/* ===== SIGNAL FORM ===== */

.signal-form {
  margin-top: 32px;
  max-width: 680px;
}

.signal-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.signal-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.signal-form__field--full {
  grid-column: 1 / -1;
}

.signal-form__field label {
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.signal-form__field input,
.signal-form__field textarea {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
  transition: border-color var(--transition);
  outline: none;
}

.signal-form__field input:focus,
.signal-form__field textarea:focus {
  border-color: var(--accent);
}

.signal-form__field textarea {
  min-height: 120px;
}

.signal-form__status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.signal-form__status--ok {
  border: 1px solid rgba(122, 231, 255, 0.3);
  background: rgba(122, 231, 255, 0.08);
  color: var(--accent);
}

.signal-form__status--err {
  border: 1px solid rgba(255, 100, 100, 0.3);
  background: rgba(255, 100, 100, 0.08);
  color: #ff7070;
}


/* ===== MOBILE EXTRA ===== */

@media (max-width: 600px) {
  .artist-avatar {
    width: 160px;
    height: 160px;
  }

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }

  .signal-form__fields {
    grid-template-columns: 1fr;
  }

  .signal-form__field--full {
    grid-column: 1;
  }
}