:root {
  --site-bg: #0b0b0f;
  --site-panel: #171821;
  --site-panel-soft: #202231;
  --site-border: rgba(255, 255, 255, 0.08);
  --site-text: #f5f7fb;
  --site-muted: #b7bdd0;
  --site-brand: #7f34ad;
  --site-brand-strong: #a04dd2;
  --site-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top, rgba(127, 52, 173, 0.24), transparent 34%),
    linear-gradient(180deg, #0b0b0f 0%, #11131c 100%);
  color: var(--site-text);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  color: #d3b1ff;
}

a:hover {
  color: #eddcff;
}

.site-shell {
  min-height: 100vh;
}

.site-nav {
  background: rgba(11, 11, 15, 0.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--site-border);
}

.brand-mark {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.96rem;
}

.site-nav .navbar {
  gap: 1rem;
}

.site-nav .navbar-brand {
  white-space: normal;
  max-width: min(70vw, 22rem);
}

.site-nav .navbar-collapse {
  flex-grow: 0;
}

.site-nav-toggler {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.95rem;
  padding: 0.6rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(127, 52, 173, 0.22);
}

.site-nav-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,247,251,0.92%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-pills .nav-link {
  color: var(--site-muted);
  border-radius: 999px;
  padding-inline: 1rem;
  padding-block: 0.72rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-pills .nav-link:hover {
  background: rgba(127, 52, 173, 0.18);
  color: #fff;
}

.hero-panel,
.content-panel,
.video-card,
.product-card,
.quote-panel {
  background: linear-gradient(180deg, rgba(32, 34, 49, 0.95), rgba(23, 24, 33, 0.95));
  border: 1px solid var(--site-border);
  box-shadow: var(--site-shadow);
}

.hero-panel {
  border-radius: 2rem;
  overflow: hidden;
}

.hero-image {
  min-height: 22rem;
  background-position: center;
  background-size: cover;
}

.hero-image--contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(23, 24, 33, 0.96);
}

.hero-image--auto {
  min-height: 0;
  aspect-ratio: auto;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.eyebrow {
  color: #d8b6ff;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.section-kicker {
  color: #d8b6ff;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.content-panel,
.quote-panel,
.video-card,
.product-card {
  border-radius: 1.5rem;
}

.content-panel img,
.product-card img,
.video-thumb,
.photo-frame img {
  border-radius: 1rem;
}

.photo-frame {
  padding: 0.75rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--site-border);
}

.media-carousel {
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--site-border);
}

.media-carousel .carousel-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-carousel .carousel-control-prev,
.media-carousel .carousel-control-next {
  width: 12%;
}

.media-carousel .carousel-control-prev-icon,
.media-carousel .carousel-control-next-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background-color: rgba(11, 11, 15, 0.58);
  background-size: 55%;
}

.media-carousel .carousel-indicators [data-bs-target] {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.section-divider {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.btn-brand {
  background: linear-gradient(135deg, var(--site-brand), var(--site-brand-strong));
  border: 0;
  color: #fff;
}

.btn-brand:hover {
  color: #fff;
  filter: brightness(1.08);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.24);
}

.accordion {
  --bs-accordion-bg: rgba(57, 40, 80, 0.62);
  --bs-accordion-color: var(--site-text);
  --bs-accordion-border-color: var(--site-border);
  --bs-accordion-btn-bg: rgba(57, 40, 80, 0.62);
  --bs-accordion-btn-color: var(--site-text);
  --bs-accordion-active-bg: rgba(127, 52, 173, 0.52);
  --bs-accordion-active-color: #fff;
}

.accordion-item {
  background: rgba(57, 40, 80, 0.62);
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}

.accordion-button:hover {
  background: rgba(127, 52, 173, 0.2);
}

.accordion-body {
  background: linear-gradient(180deg, rgba(32, 34, 49, 0.95), rgba(23, 24, 33, 0.95));
}

.accordion-button::after {
  filter: brightness(0) invert(1) opacity(0.85);
}

.ratio iframe {
  border: 0;
  border-radius: 1rem;
}

.muted {
  color: var(--site-muted);
}

.platform-logo {
  max-height: 44px;
  object-fit: contain;
}

.lyrics-text {
  margin: 0;
  color: var(--site-text);
  font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
  font-size: 1rem;
  line-height: 1.75;
  white-space: pre-wrap;
}

.footer-bar {
  border-top: 1px solid var(--site-border);
  color: var(--site-muted);
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1040;
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.9rem;
  background: linear-gradient(180deg, rgba(32, 34, 49, 0.96), rgba(23, 24, 33, 0.96));
  color: #fff;
  box-shadow: var(--site-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease, background 0.2s ease;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--site-brand), var(--site-brand-strong));
  color: #fff;
}

.back-to-top svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 767.98px) {
  main.container.py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .site-nav .container,
  .footer-bar .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .site-nav .navbar-brand {
    max-width: calc(100% - 4.75rem);
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .site-nav .navbar-collapse {
    width: 100%;
  }

  .site-nav .nav {
    margin-top: 0.25rem;
    padding: 0.75rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-item,
  .site-nav .nav-link {
    width: 100%;
  }

  .hero-panel,
  .content-panel,
  .video-card,
  .product-card,
  .quote-panel {
    border-radius: 1.25rem;
  }

  .hero-panel .p-4,
  .hero-panel .p-md-5,
  .content-panel.p-4,
  .content-panel.p-lg-5 {
    padding: 1.25rem !important;
  }

  .hero-image {
    min-height: 16rem;
  }

  .section-title {
    font-size: clamp(1.9rem, 9vw, 2.6rem);
  }

  .eyebrow,
  .section-kicker {
    letter-spacing: 0.14em;
  }

  .media-carousel .carousel-control-prev,
  .media-carousel .carousel-control-next {
    width: 16%;
  }

  .media-carousel .carousel-item img {
    aspect-ratio: 4 / 5;
  }

  .btn.btn-lg {
    width: 100%;
  }

  .back-to-top {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 2.8rem;
    height: 2.8rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .site-nav .navbar-collapse {
    width: 100%;
  }

  .site-nav .nav {
    margin-top: 0.5rem;
    padding: 0.9rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav .nav-item,
  .site-nav .nav-link {
    width: 100%;
  }

  .hero-image {
    min-height: 18rem;
  }
}
