:root {
  --bg: #090b10;
  --bg-soft: #11151d;
  --panel: rgba(15, 19, 27, 0.8);
  --panel-strong: rgba(8, 11, 16, 0.9);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f8fd;
  --muted: #97a7bb;
  --accent: #9fc0ff;
  --accent-strong: #d4e3ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "SF Pro Display", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 10%, rgba(159, 192, 255, 0.12), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(113, 139, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #12161f 0%, #090b10 100%);
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -8rem;
  left: -10rem;
  background: rgba(127, 168, 255, 0.28);
}

.page-glow-right {
  right: -12rem;
  top: 8rem;
  background: rgba(99, 127, 255, 0.2);
}

.topbar,
.shell,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0;
  isolation: isolate;
}

.topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.site-version-switch {
  position: absolute;
  left: 50%;
  top: calc(50% + 0.5rem);
  z-index: 5;
  transform: translate(-50%, -50%);
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  min-height: 2.6rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.site-version-switch a {
  min-width: 5.2rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(214, 226, 242, 0.72);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 750;
}

.site-version-switch a.is-active {
  color: #08111d;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

body.site-enter-from-right .topbar > :not(.site-version-switch),
body.site-enter-from-right .shell,
body.site-enter-from-right .site-footer,
body.site-enter-from-right .page-glow {
  animation: pageEnterFromRight 520ms cubic-bezier(.16, 1, .3, 1) both;
}

body.site-enter-from-left .topbar > :not(.site-version-switch),
body.site-enter-from-left .shell,
body.site-enter-from-left .site-footer,
body.site-enter-from-left .page-glow {
  animation: pageEnterFromLeft 520ms cubic-bezier(.16, 1, .3, 1) both;
}

body.site-exit-left .topbar > :not(.site-version-switch),
body.site-exit-left .shell,
body.site-exit-left .site-footer,
body.site-exit-left .page-glow {
  animation: pageExitLeft 360ms cubic-bezier(.7, 0, .84, 0) both;
}

body.site-exit-right .topbar > :not(.site-version-switch),
body.site-exit-right .shell,
body.site-exit-right .site-footer,
body.site-exit-right .page-glow {
  animation: pageExitRight 360ms cubic-bezier(.7, 0, .84, 0) both;
}

@keyframes pageEnterFromRight {
  from { opacity: 0; transform: translateX(74px) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@keyframes pageEnterFromLeft {
  from { opacity: 0; transform: translateX(-74px) scale(.985); filter: blur(10px); }
  to { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
}

@keyframes pageExitLeft {
  from { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
  to { opacity: 0; transform: translateX(-96px) scale(.98); filter: blur(12px); }
}

@keyframes pageExitRight {
  from { opacity: 1; transform: translateX(0) scale(1); filter: blur(0); }
  to { opacity: 0; transform: translateX(96px) scale(.98); filter: blur(12px); }
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 248, 253, 0.9);
  text-decoration: none;
  font-weight: 600;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.topbar-link:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.topbar-link.is-active {
  background: rgba(159, 192, 255, 0.12);
  border-color: rgba(159, 192, 255, 0.18);
}

.topbar-link-buy {
  background: linear-gradient(180deg, #e6efff 0%, #a9c7ff 100%);
  color: #08111d;
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(122, 169, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.brand-badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
}

.brand-badge::before {
  content: "";
  position: absolute;
  inset: -0.42rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(159, 192, 255, 0.48) 0%, rgba(159, 192, 255, 0.18) 46%, transparent 72%);
  filter: blur(7px);
  opacity: 0.95;
}

.brand-badge img {
  position: relative;
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  filter: brightness(1.22) grayscale(0.08) contrast(1.08);
}

.shell {
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: rgba(214, 226, 242, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.hero-copy h1,
.section-head h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3.4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-copy p,
.feature-card p,
.premium-item p {
  margin: 0;
  color: rgba(151, 167, 187, 0.92);
  line-height: 1.58;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.download-meta {
  margin: 0.72rem 0 0;
  color: rgba(151, 167, 187, 0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #08111d;
  background: linear-gradient(180deg, #e6efff 0%, #a9c7ff 100%);
  box-shadow: 0 18px 40px rgba(122, 169, 255, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-buy {
  color: #08111d;
  background: linear-gradient(180deg, #f1f7ff 0%, #90b8ff 100%);
  box-shadow: 0 16px 34px rgba(122, 169, 255, 0.2);
}

.button-buy-large {
  min-width: 13rem;
}

.hero-stage,
.feature-card,
.premium-panel {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.hero-stage {
  padding: 1rem;
}

.player-shell {
  display: grid;
  gap: 0;
}

.island-player {
  display: grid;
  grid-template-columns: 4.8rem 1fr 7rem;
  gap: 1rem;
  align-items: center;
  position: relative;
  padding: 1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(9, 12, 18, 0.96), rgba(9, 11, 15, 0.9));
  overflow: hidden;
  transform: translateX(0);
}

.island-player.is-switching-next {
  animation: islandPushNext 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.island-player.is-loading > *:not(.player-loading) {
  filter: blur(1.2px);
  opacity: 0.16;
  pointer-events: none;
}

.player-loading {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  background: rgba(2, 4, 8, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.island-player.is-loading .player-loading {
  opacity: 1;
}

.player-loading-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.player-loading-bar span {
  width: 0.34rem;
  height: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #edf4ff, #a7c6ff);
  box-shadow: 0 0 18px rgba(167, 198, 255, 0.24);
  animation: loadingPulse 900ms ease-in-out infinite;
}

.player-loading-bar span:nth-child(2) {
  animation-delay: 0.14s;
}

.player-loading-bar span:nth-child(3) {
  animation-delay: 0.28s;
}

.player-cover {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: linear-gradient(135deg, #25324d, #131926 60%, #0a0d12 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.02) contrast(1.03);
}

.player-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.06), rgba(8, 11, 16, 0.18)),
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
  pointer-events: none;
}

.cover-shine {
  position: absolute;
  inset: -35%;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.14), transparent 62%);
  transform: translateX(-100%);
  pointer-events: none;
  animation: sweep 4.8s ease-in-out infinite;
}

.track-meta {
  min-width: 0;
}

.track-title {
  font-size: 1.18rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.track-artist {
  margin-top: 0.3rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-controls {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.control-button {
  position: relative;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  color: var(--text);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform 160ms ease, background 160ms ease;
}

.control-button:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.control-button:focus {
  outline: none;
}

.control-button:focus-visible {
  box-shadow: 0 0 0 2px rgba(159, 192, 255, 0.28);
}

.control-button-primary {
  background: linear-gradient(180deg, #edf4ff 0%, #aecbff 100%);
  border-color: transparent;
  color: #06111f;
}

.control-button span {
  position: absolute;
  display: block;
}

.control-button:not(.control-button-primary):not(.control-button-next) span:nth-child(1) {
  left: 0.78rem;
  top: 0.82rem;
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-right: 0.8rem solid currentColor;
}

.control-button:not(.control-button-primary):not(.control-button-next) span:nth-child(2) {
  left: 1.48rem;
  top: 0.82rem;
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-right: 0.8rem solid currentColor;
}

.control-button-next span:nth-child(1) {
  right: 1.48rem;
  top: 0.82rem;
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 0.8rem solid currentColor;
}

.control-button-next span:nth-child(2) {
  right: 0.78rem;
  top: 0.82rem;
  width: 0;
  height: 0;
  border-top: 0.6rem solid transparent;
  border-bottom: 0.6rem solid transparent;
  border-left: 0.8rem solid currentColor;
}

.play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 1.26rem;
  transform: translate(-50%, -50%);
}

.play-icon::before,
.play-icon::after {
  content: "";
  position: absolute;
  top: 0.02rem;
  width: 0.28rem;
  height: 1.22rem;
  border-radius: 999px;
  background: currentColor;
}

.play-icon::before {
  left: 0.1rem;
}

.play-icon::after {
  right: 0.1rem;
}

.control-button-primary.is-paused .play-icon {
  width: 0.94rem;
  height: 0.94rem;
}

.control-button-primary.is-paused .play-icon::before {
  top: 0.02rem;
  left: 0.18rem;
  width: 0;
  height: 0;
  border-top: 0.45rem solid transparent;
  border-bottom: 0.45rem solid transparent;
  border-left: 0.68rem solid currentColor;
  border-radius: 0;
  background: transparent;
}

.control-button-primary.is-paused .play-icon::after {
  display: none;
}

.player-side {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: flex-end;
}

.visualizer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.28rem;
  height: 3rem;
}

.visualizer span {
  width: 0.32rem;
  height: calc(0.5rem + (var(--h, 0.3) * 2rem));
  border-radius: 999px;
  background: linear-gradient(180deg, #f0f6ff, #a7c6ff);
  box-shadow: 0 0 18px rgba(167, 198, 255, 0.16);
  transition: height 90ms linear;
}

.volume-hover {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.32rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease;
}

.volume-hover:hover,
.volume-hover:focus-within {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(159, 192, 255, 0.18);
}

.volume-button {
  position: relative;
  width: 1.9rem;
  height: 1.9rem;
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.volume-glyph,
.volume-glyph::before,
.volume-glyph::after {
  position: absolute;
  content: "";
}

.volume-glyph {
  left: 50%;
  top: 50%;
  width: 0.34rem;
  height: 0.52rem;
  transform: translate(-60%, -50%);
  border-radius: 0.08rem;
  background: currentColor;
}

.volume-glyph::before {
  left: -0.34rem;
  top: 0.02rem;
  width: 0;
  height: 0;
  border-top: 0.24rem solid transparent;
  border-bottom: 0.24rem solid transparent;
  border-right: 0.34rem solid currentColor;
}

.volume-glyph::after {
  left: 0.42rem;
  top: -0.02rem;
  width: 0.5rem;
  height: 0.58rem;
  border-right: 0.11rem solid currentColor;
  border-top: 0.11rem solid transparent;
  border-bottom: 0.11rem solid transparent;
  border-radius: 0 0.55rem 0.55rem 0;
  opacity: 0.8;
}

.volume-slider-wrap {
  display: grid;
  align-items: center;
  width: 0;
  opacity: 0;
  overflow: hidden;
  transition: width 220ms ease, opacity 180ms ease;
}

.volume-hover:hover .volume-slider-wrap,
.volume-hover:focus-within .volume-slider-wrap {
  width: 5.4rem;
  opacity: 1;
}

.volume-slider {
  width: 5.4rem;
  height: 0.22rem;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(237, 244, 255, 0.92), rgba(122, 169, 255, 0.88));
  outline: none;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  appearance: none;
  width: 0.82rem;
  height: 0.82rem;
  border: 0;
  border-radius: 999px;
  background: #f3f8ff;
  box-shadow: 0 0 0 2px rgba(159, 192, 255, 0.14);
}

.volume-slider::-moz-range-thumb {
  width: 0.82rem;
  height: 0.82rem;
  border: 0;
  border-radius: 999px;
  background: #f3f8ff;
  box-shadow: 0 0 0 2px rgba(159, 192, 255, 0.14);
}

.site-admin-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.site-admin-panel.is-visible {
  display: block;
}

.site-admin-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.84);
  backdrop-filter: blur(16px);
}

.site-admin-card {
  position: relative;
  z-index: 1;
  width: min(980px, calc(100% - 1.5rem));
  max-height: calc(100vh - 2rem);
  overflow: auto;
  margin: 1rem auto;
  padding: 1.4rem;
  border-radius: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(9, 12, 18, 0.98), rgba(9, 11, 15, 0.96));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.site-admin-head,
.site-admin-toolbar,
.site-admin-review-head,
.site-admin-actions,
.site-admin-toolbar-actions,
.site-admin-review-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-admin-close {
  color: rgba(245, 248, 253, 0.84);
  text-decoration: none;
  font-weight: 600;
}

.site-admin-copy,
.site-admin-review-meta {
  color: rgba(151, 167, 187, 0.9);
}

.site-admin-form {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.site-admin-login[hidden],
.site-admin-dashboard[hidden] {
  display: none !important;
}

.site-admin-dashboard {
  display: grid;
  gap: 1rem;
}

.site-admin-section,
.site-admin-reviews {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.site-admin-session {
  color: rgba(214, 226, 242, 0.9);
  font-weight: 600;
}

.site-admin-section-head h3 {
  margin: 0.3rem 0 0;
  font-size: 1.05rem;
}

.site-admin-bound-head {
  display: grid;
  gap: 0.15rem;
  margin-top: 0.35rem;
}

.site-admin-bound-head h3 {
  margin: 0;
  font-size: 1rem;
}

.site-admin-license-form {
  margin-top: 0;
}

.site-admin-license-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-admin-licenses {
  display: grid;
  gap: 0.75rem;
  max-height: 20rem;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.site-admin-licenses::-webkit-scrollbar {
  width: 0.45rem;
}

.site-admin-licenses::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(159, 192, 255, 0.28);
}

.site-admin-license-card {
  display: grid;
  gap: 0.4rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.site-admin-license-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.site-admin-license-key {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-admin-license-meta,
.site-admin-license-notes {
  color: rgba(151, 167, 187, 0.9);
  line-height: 1.5;
}

.site-admin-license-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding-top: 0.25rem;
}

.site-admin-license-status {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.1rem 0.65rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.06);
}

.site-admin-license-status.is-active {
  color: rgba(183, 255, 209, 0.96);
  background: rgba(84, 198, 129, 0.14);
}

.site-admin-license-status.is-new {
  color: rgba(189, 219, 255, 0.96);
  background: rgba(120, 171, 255, 0.14);
}

.site-admin-license-status.is-disabled,
.site-admin-license-status.is-expired {
  color: rgba(255, 192, 192, 0.96);
  background: rgba(255, 107, 107, 0.14);
}

.site-admin-review-card {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

.site-admin-review-name {
  font-weight: 700;
}

.site-admin-edit-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-admin-edit-select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
}

.site-admin-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-admin-action.is-danger {
  border-color: rgba(255, 107, 107, 0.18);
  color: rgba(255, 192, 192, 0.96);
}

.site-admin-license-card-action.is-danger {
  border-color: rgba(255, 107, 107, 0.18);
  color: rgba(255, 192, 192, 0.96);
}

body.is-admin-route {
  overflow: hidden;
}

.player-note {
  margin: 0.85rem 0 0;
  color: rgba(151, 167, 187, 0.82);
  font-size: 0.84rem;
  line-height: 1.5;
  letter-spacing: 0.01em;
}

.player-credit {
  margin: 0.38rem 0 0;
  color: rgba(151, 167, 187, 0.66);
  font-size: 0.76rem;
  line-height: 1.45;
}

.player-credit-current {
  color: rgba(214, 226, 242, 0.72);
}

.player-credit-current span,
.player-credit-current a {
  color: rgba(245, 248, 253, 0.88);
}

.player-credit-current a {
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 248, 253, 0.18);
}

.player-credit-current a:hover {
  border-color: rgba(245, 248, 253, 0.42);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.7rem;
}

.feature-card,
.premium-panel,
.trust-card,
.reviews-panel {
  padding: 1.3rem;
}

.feature-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #eff6ff, #9bc0ff);
  box-shadow: 0 0 18px rgba(159, 192, 255, 0.38);
}

.feature-card h2 {
  margin: 0.8rem 0 0.65rem;
  font-size: 1.08rem;
  font-weight: 650;
}

.premium-panel {
  margin-top: 1.5rem;
}

.premium-purchase-card,
.release-panel {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.premium-purchase-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.1rem 1.2rem;
  border-color: rgba(159, 192, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at top right, rgba(159, 192, 255, 0.12), transparent 30%);
}

.premium-purchase-title {
  color: rgba(245, 248, 253, 0.98);
  font-size: 1.08rem;
  font-weight: 700;
}

.premium-purchase-copy {
  margin: 0.35rem 0 0;
  max-width: 40rem;
  color: rgba(151, 167, 187, 0.92);
  line-height: 1.58;
}

.premium-purchase-actions {
  display: grid;
  justify-items: end;
  gap: 0.65rem;
}

.premium-meta-links {
  display: inline-flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.premium-meta-links a,
.premium-link {
  color: rgba(170, 201, 255, 0.94);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.premium-meta-links a:hover,
.premium-link:hover {
  color: #eaf3ff;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-card,
.reviews-panel {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.faq-page {
  padding-top: 2.4rem;
}

.support-page {
  padding-top: 2.4rem;
}

.source-page {
  padding-top: 2.4rem;
  display: grid;
  gap: 1rem;
}

.faq-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.faq-intro {
  margin: 0 0 1rem;
  color: rgba(151, 167, 187, 0.9);
  line-height: 1.58;
}

.support-card {
  width: min(42rem, 100%);
}

.source-card {
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  padding: 1.3rem;
}

.source-code {
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.88);
}

.source-code pre {
  margin: 0;
  padding: 1rem 1.1rem;
  overflow-x: auto;
}

.source-code code {
  display: block;
  min-width: max-content;
  color: rgba(226, 237, 255, 0.94);
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 0.84rem;
  line-height: 1.6;
  white-space: pre;
}

.support-email {
  display: inline-flex;
  align-items: center;
  min-height: 3.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 248, 253, 0.96);
  font-size: 1.02rem;
  font-weight: 600;
  word-break: break-word;
}

.support-actions {
  margin-top: 1rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  padding: 0.15rem 0.95rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 0 0.4rem;
  font-weight: 600;
  color: rgba(245, 248, 253, 0.94);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.2rem 0 0;
  color: rgba(151, 167, 187, 0.9);
  line-height: 1.55;
}

.reviews-panel {
  margin-top: 1.5rem;
}

.release-panel {
  margin-top: 1.5rem;
  padding: 1.2rem;
}

.release-card {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.76);
  padding: 1rem;
}

.release-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  border-radius: 1rem;
  background: linear-gradient(180deg, #edf4ff 0%, #a7c6ff 100%);
  color: #08111d;
  font-size: 1.3rem;
  font-weight: 800;
}

.release-list {
  margin: 0;
  padding-left: 1.15rem;
  color: rgba(151, 167, 187, 0.92);
  line-height: 1.65;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1rem;
}

.review-form,
.reviews-list-shell {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.76);
  padding: 1rem;
}

.review-form {
  display: grid;
  gap: 0.95rem;
}

.reviews-list-shell {
  display: grid;
  gap: 0.9rem;
  min-height: 100%;
}

.reviews-list-head {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.reviews-list-head h3 {
  margin: 0;
  font-size: 1rem;
}

.input-group {
  display: grid;
  gap: 0.5rem;
}

.input-group span {
  color: rgba(214, 226, 242, 0.74);
  font-size: 0.9rem;
}

.input-group input,
.input-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font: inherit;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(159, 192, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}

.input-group textarea {
  resize: vertical;
  min-height: 6.5rem;
}

.rating-picker {
  display: inline-flex;
  gap: 0.3rem;
  flex-wrap: wrap;
}

.rating-star {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.star-shape {
  width: 0.92rem;
  height: 0.92rem;
  background: rgba(214, 226, 242, 0.42);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 92%,
    50% 71%,
    21% 92%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  transition: background 160ms ease, transform 160ms ease;
}

.rating-star:hover,
.rating-star.is-active {
  background: linear-gradient(180deg, #edf4ff 0%, #a7c6ff 100%);
  border-color: transparent;
  transform: translateY(-1px);
}

.rating-star:hover .star-shape,
.rating-star.is-active .star-shape {
  background: #0b1220;
  transform: scale(1.03);
}

.review-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.review-submit {
  min-width: 10rem;
}

.review-status {
  color: rgba(151, 167, 187, 0.84);
  font-size: 0.84rem;
  line-height: 1.45;
}

.reviews-list {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  max-height: 28rem;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.reviews-list::-webkit-scrollbar {
  width: 0.5rem;
}

.reviews-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.review-card {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.review-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.review-name {
  font-weight: 650;
  color: rgba(245, 248, 253, 0.94);
}

.review-date {
  margin-top: 0.22rem;
  color: rgba(151, 167, 187, 0.72);
  font-size: 0.78rem;
}

.review-stars {
  display: inline-flex;
  gap: 0.18rem;
  white-space: nowrap;
}

.review-star {
  width: 0.82rem;
  height: 0.82rem;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 92%,
    50% 71%,
    21% 92%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  background: rgba(185, 210, 255, 0.28);
}

.review-star.is-filled {
  background: linear-gradient(180deg, #edf4ff 0%, #a7c6ff 100%);
}

.review-card p {
  margin: 0;
  color: rgba(151, 167, 187, 0.92);
  line-height: 1.55;
}

.review-empty {
  color: rgba(151, 167, 187, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

.section-head {
  margin-bottom: 1rem;
}

.premium-frame {
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 15, 0.76);
  padding: 0.45rem;
}

.premium-scroll {
  max-height: 21rem;
  overflow-y: auto;
  padding-right: 0.3rem;
}

.premium-scroll::-webkit-scrollbar {
  width: 0.42rem;
}

.premium-scroll::-webkit-scrollbar-thumb {
  background: rgba(159, 192, 255, 0.34);
  border-radius: 999px;
}

.premium-item {
  display: grid;
  grid-template-columns: 0.7rem 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.025));
}

.premium-item + .premium-item {
  margin-top: 0.6rem;
}

.premium-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  margin-top: 0.28rem;
  background: linear-gradient(180deg, #eef6ff, #9bc0ff);
  box-shadow: 0 0 16px rgba(159, 192, 255, 0.22);
}

.premium-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.96rem;
  font-weight: 650;
}

.premium-item p {
  color: rgba(151, 167, 187, 0.88);
}

.premium-actions {
  margin-top: 0.7rem;
}

.site-footer {
  padding: 0 0 2rem;
}

.download-thanks {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 8, 12, 0.56);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.download-thanks.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.download-thanks-card {
  width: min(28rem, 100%);
  padding: 1.2rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 13, 18, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  transform: translateY(10px) scale(0.98);
  transition: transform 220ms ease;
}

.download-thanks.is-visible .download-thanks-card {
  transform: translateY(0) scale(1);
}

.download-thanks-title {
  color: rgba(245, 248, 253, 0.96);
  font-size: 1.2rem;
  font-weight: 700;
}

.download-thanks-card p {
  margin: 0.55rem 0 0;
  color: rgba(151, 167, 187, 0.9);
  line-height: 1.55;
}

.download-thanks-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.download-thanks-review,
.download-thanks-close {
  min-width: 9rem;
}

.footer-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 1.6rem;
  padding: 1rem 0.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: inline-flex;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  opacity: 0.86;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-note {
  margin: 0.9rem 0 0;
  color: rgba(151, 167, 187, 0.74);
  font-size: 0.86rem;
  line-height: 1.55;
  text-align: right;
}

.footer-note a {
  color: rgba(170, 201, 255, 0.94);
  text-decoration: none;
}

.footer-note a:hover {
  color: #eaf3ff;
}

.reveal-up {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}

.reveal-delay-2 {
  animation-delay: 0.22s;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  0%,
  100% {
    transform: translateX(-110%);
  }
  45%,
  65% {
    transform: translateX(110%);
  }
}

@keyframes islandPushNext {
  0% {
    transform: translateX(0);
  }
  35% {
    transform: translateX(16px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes loadingPulse {
  0%,
  100% {
    transform: scaleY(0.48);
    opacity: 0.56;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

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

  .premium-purchase-card,
  .release-card {
    grid-template-columns: 1fr;
  }

  .premium-purchase-card {
    display: grid;
  }

  .premium-purchase-actions {
    justify-items: start;
  }

  .reviews-list {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .topbar,
  .shell,
  .site-footer {
    width: calc(100% - 1rem);
  }

  .topbar {
    gap: 0.8rem;
    flex-wrap: wrap;
    padding-top: 4.7rem;
  }

  .site-version-switch {
    top: 1.2rem;
    transform: translateX(-50%);
  }

  .topbar-nav,
  .footer-links,
  .premium-meta-links {
    flex-wrap: wrap;
  }

  .hero-copy h1,
  .section-head h2 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .download-thanks-actions {
    flex-direction: column;
  }

  .premium-purchase-actions {
    width: 100%;
  }

  .button-buy-large {
    width: 100%;
  }

  .island-player {
    grid-template-columns: 1fr;
  }

  .player-side {
    justify-content: flex-start;
  }
  .footer-inner {
    justify-content: flex-start;
  }

  .footer-note {
    text-align: left;
  }
}
