:root {
  color-scheme: dark;
  --bg: #000;
  --text: #fff;
  --accent: #dd0000;
  --muted: #1a1a1a;
  --text-muted: #b3b3b3;
  --container-max-width: 1200px;
  --container-padding: 16px;
  --gutter-x: 16px;
  --gutter-y: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.anchor-nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background: #050505;
  border-bottom: 1px solid #222;
}

main {
  padding-top: 72px;
}

.anchor-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px var(--container-padding);
  justify-self: center;
}

.anchor-nav__link {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #303030;
}

.anchor-nav__link.is-active {
  color: var(--text);
  background: var(--accent);
  border-color: var(--accent);
}

.container,
.container-fluid {
  width: min(100%, var(--container-max-width));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.container-fluid {
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-inline: calc(var(--gutter-x) * -0.5);
  margin-block: calc(var(--gutter-y) * -0.5);
}

[class*="col-xs-"],
[class*="col-s-"],
[class*="col-m-"],
[class*="col-l-"],
[class*="col-xl-"],
[class*="col-hd-"] {
  width: 100%;
  max-width: 100%;
  padding-inline: calc(var(--gutter-x) * 0.5);
  padding-block: calc(var(--gutter-y) * 0.5);
}

.col-xs-1 { width: 8.3333%; }
.col-xs-2 { width: 16.6667%; }
.col-xs-3 { width: 25%; }
.col-xs-4 { width: 33.3333%; }
.col-xs-5 { width: 41.6667%; }
.col-xs-6 { width: 50%; }
.col-xs-7 { width: 58.3333%; }
.col-xs-8 { width: 66.6667%; }
.col-xs-9 { width: 75%; }
.col-xs-10 { width: 83.3333%; }
.col-xs-11 { width: 91.6667%; }
.col-xs-12 { width: 100%; }

@media (min-width: 576px) {
  .col-s-1 { width: 8.3333%; }
  .col-s-2 { width: 16.6667%; }
  .col-s-3 { width: 25%; }
  .col-s-4 { width: 33.3333%; }
  .col-s-5 { width: 41.6667%; }
  .col-s-6 { width: 50%; }
  .col-s-7 { width: 58.3333%; }
  .col-s-8 { width: 66.6667%; }
  .col-s-9 { width: 75%; }
  .col-s-10 { width: 83.3333%; }
  .col-s-11 { width: 91.6667%; }
  .col-s-12 { width: 100%; }
}

@media (min-width: 768px) {
  .col-m-1 { width: 8.3333%; }
  .col-m-2 { width: 16.6667%; }
  .col-m-3 { width: 25%; }
  .col-m-4 { width: 33.3333%; }
  .col-m-5 { width: 41.6667%; }
  .col-m-6 { width: 50%; }
  .col-m-7 { width: 58.3333%; }
  .col-m-8 { width: 66.6667%; }
  .col-m-9 { width: 75%; }
  .col-m-10 { width: 83.3333%; }
  .col-m-11 { width: 91.6667%; }
  .col-m-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-l-1 { width: 8.3333%; }
  .col-l-2 { width: 16.6667%; }
  .col-l-3 { width: 25%; }
  .col-l-4 { width: 33.3333%; }
  .col-l-5 { width: 41.6667%; }
  .col-l-6 { width: 50%; }
  .col-l-7 { width: 58.3333%; }
  .col-l-8 { width: 66.6667%; }
  .col-l-9 { width: 75%; }
  .col-l-10 { width: 83.3333%; }
  .col-l-11 { width: 91.6667%; }
  .col-l-12 { width: 100%; }
}

@media (min-width: 1200px) {
  .col-xl-1 { width: 8.3333%; }
  .col-xl-2 { width: 16.6667%; }
  .col-xl-3 { width: 25%; }
  .col-xl-4 { width: 33.3333%; }
  .col-xl-5 { width: 41.6667%; }
  .col-xl-6 { width: 50%; }
  .col-xl-7 { width: 58.3333%; }
  .col-xl-8 { width: 66.6667%; }
  .col-xl-9 { width: 75%; }
  .col-xl-10 { width: 83.3333%; }
  .col-xl-11 { width: 91.6667%; }
  .col-xl-12 { width: 100%; }
}

@media (min-width: 1440px) {
  .col-hd-1 { width: 8.3333%; }
  .col-hd-2 { width: 16.6667%; }
  .col-hd-3 { width: 25%; }
  .col-hd-4 { width: 33.3333%; }
  .col-hd-5 { width: 41.6667%; }
  .col-hd-6 { width: 50%; }
  .col-hd-7 { width: 58.3333%; }
  .col-hd-8 { width: 66.6667%; }
  .col-hd-9 { width: 75%; }
  .col-hd-10 { width: 83.3333%; }
  .col-hd-11 { width: 91.6667%; }
  .col-hd-12 { width: 100%; }
}

.gutter-0 { --gutter-x: 0; --gutter-y: 0; }
.gutter-sm { --gutter-x: 8px; --gutter-y: 8px; }
.gutter-md { --gutter-x: 16px; --gutter-y: 16px; }
.gutter-lg { --gutter-x: 24px; --gutter-y: 24px; }

.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.section {
  border-bottom: 1px solid #141414;
}

.section-dark {
  background: var(--bg);
}

.page-section {
  min-height: 300px;
  padding-block: 48px;
}

.section-content {
  min-width: 0;
}

.section-title,
.heading-h1,
.heading-h2,
.heading-h3 {
  color: var(--accent);
}

.section-title {
  margin: 0 0 12px;
}

.section-subtitle,
.text-muted {
  color: var(--text-muted);
}

.text-body {
  margin: 0;
  line-height: 1.6;
}

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

.text-right {
  text-align: right;
}

.site-footer {
  padding: 18px var(--container-padding);
  text-align: center;
  border-top: 1px solid #222;
}

.site-footer p {
  margin: 0;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-media {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  border: 1px solid #252525;
  padding: 18px;
  background: #060606;
}

.hero-media-picture {
  display: inline-block;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0;
}

.hero-description {
  max-width: 58ch;
}

.embed-frame-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid #262626;
  border-radius: 12px;
  overflow: hidden;
  background: #090909;
}

.embed-frame {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 10px 12px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #313131;
  border-radius: 10px;
  background: #101010;
  transition: opacity 120ms ease-in-out, border-color 120ms ease-in-out;
}

.hero-cta:hover {
  opacity: 0.88;
  border-color: var(--accent);
}

.hero-cta:focus-visible,
.anchor-nav__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hero-cta img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

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

.platform-logo-card,
.embed-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #303030;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 12px;
}

.platform-logo-card {
  justify-content: center;
  min-height: 82px;
}

button.platform-logo-card {
  width: 100%;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: center;
}

.platform-logo-card.is-platform-selected {
  border-color: var(--accent);
  background: #141414;
}

.platform-embed-section.is-collapsed {
  display: none;
}

.platform-logo-card img,
.embed-brand-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.embed-brand-link {
  margin-top: 8px;
  max-width: 220px;
}

.platform-logo-card:hover,
.embed-brand-link:hover {
  border-color: var(--accent);
}

.platform-logo-card:focus-visible,
.embed-brand-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.embed-frame-wrap-apple {
  aspect-ratio: 3 / 2;
}

/* Amazon Music embed: fixed height from official iframe snippet */
.embed-frame-wrap-amazon {
  aspect-ratio: unset;
  height: 352px;
  max-width: 100%;
  border-radius: 20px;
}

.soundcloud-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 960px;
  justify-self: center;
}

.soundcloud-tracklist {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #252525;
  border-radius: 12px;
  overflow: hidden;
}

.soundcloud-tracklist li {
  border-bottom: 1px solid #1d1d1d;
}

.soundcloud-tracklist li:last-child {
  border-bottom: 0;
}

.soundcloud-tracklist a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  padding: 11px 12px;
  background: #0a0a0a;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.soundcloud-tracklist a:hover {
  background: #121212;
}

.soundcloud-tracklist a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.play-icon {
  color: var(--accent);
  font-size: 0.8rem;
  flex: 0 0 auto;
}

.share-block {
  margin-top: 26px;
}

.share-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-social-btn,
.share-platform-btn,
.share-fallback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #2d2d2d;
  border-radius: 10px;
  background: #111;
  color: var(--text);
  text-decoration: none;
  padding: 10px 12px;
  cursor: pointer;
  font: inherit;
}

.share-social-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.share-social-btn:hover,
.share-platform-btn:hover,
.share-fallback-btn:hover {
  border-color: var(--accent);
}

.share-social-btn:focus-visible,
.share-platform-btn:focus-visible,
.share-fallback-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.share-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 30;
}

.share-modal.is-open {
  display: block;
}

.share-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.share-modal__content {
  position: relative;
  margin: min(10vh, 80px) auto 0;
  width: min(92vw, 560px);
  background: #0b0b0b;
  border: 1px solid #282828;
  border-radius: 12px;
  padding: 18px;
}

.share-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
  cursor: pointer;
}

.share-platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.share-fallback {
  margin-top: 14px;
  border-top: 1px solid #1f1f1f;
  padding-top: 12px;
}

.share-fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-cta {
    width: auto;
  }

  .platform-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}
