:root {
  --amber: #ffb454;
  --amber-dim: #c98a3a;
  --amber-glow: rgba(255, 180, 84, .55);
  --screen-black: #0a0806;
  --static: #7a746b;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
  background: #0d0906;
  color: var(--amber);
  font-family: 'JetBrains Mono', monospace;
}

.bnny-studio-page .site-header {
  color: var(--ink);
  font-family: 'TC Volume', Georgia, serif;
}

.bnny-studio-page .site-header button { line-height: normal; }

.skip-link {
  position: fixed;
  z-index: 10;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: #fff7e7;
  color: #24170d;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.scene {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  line-height: 0;
}

.scene > img {
  display: block;
  width: 100%;
  height: auto;
}

.screen-base {
  position: absolute;
  overflow: hidden;
  background: var(--screen-black);
  color: var(--amber);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, .85);
  font-family: 'JetBrains Mono', monospace;
}

.screen-base::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255, 180, 84, .05) 0, rgba(255, 180, 84, .05) 1px, transparent 1px, transparent 3px);
  content: '';
  pointer-events: none;
}

.text-panel {
  left: 21.8%;
  top: 37.9%;
  display: flex;
  width: 18.8%;
  height: 19%;
  padding: 10px 12px;
  flex-direction: column;
  justify-content: center;
}

.track-title {
  overflow-wrap: break-word;
  margin: 0 0 .25em;
  color: var(--amber);
  font-family: 'Fraunces', serif;
  font-size: clamp(10px, 1.5vw, 18px);
  font-weight: 700;
  font-style: normal;
  line-height: 1.2;
  text-shadow: 0 0 8px var(--amber-glow);
}

.artist-name {
  margin: 0;
  color: var(--amber-dim);
  font-size: clamp(8px, 1.05vw, 13px);
  letter-spacing: .02em;
  line-height: 1.25;
}

.signal-note {
  min-height: 1.2em;
  margin: 3px 0 0;
  color: var(--static);
  font-size: clamp(6px, .75vw, 9px);
  font-style: italic;
  line-height: 1.2;
}

.transport-row {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.xport-btn {
  flex: 1;
  padding: clamp(2px, .5vw, 5px) 0;
  border: 1px solid rgba(255, 180, 84, .4);
  border-radius: 3px;
  background: transparent;
  color: var(--amber);
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(8px, 1vw, 12px);
}

.xport-btn:hover,
.xport-btn:focus-visible { background: rgba(255, 180, 84, .12); }
.xport-btn:active { transform: translateY(1px); }
.xport-btn.primary { border-color: var(--amber); font-weight: 600; }

.art-panel {
  left: 43.2%;
  top: 38.3%;
  display: flex;
  width: 18.5%;
  height: 18.2%;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-size: clamp(16px, 2.4vw, 30px);
}

footer {
  padding: 14px 10px 28px;
  background: #0d0906;
  color: #7a6a54;
  font-size: 11px;
  letter-spacing: .05em;
  line-height: 1.5;
  text-align: center;
}

footer p { margin: 0; }
footer a { display: inline-block; margin-top: 8px; color: #b59468; text-underline-offset: 3px; }

@media (max-width: 700px) {
  .text-panel,
  .art-panel {
    position: static;
    width: 100%;
    height: auto;
  }

  .text-panel { padding: 20px 22px; }
  .track-title { font-size: 24px; }
  .artist-name { font-size: 15px; }
  .signal-note { font-size: 12px; }
  .xport-btn { padding: 12px 0; font-size: 16px; }

  .art-panel {
    max-width: 260px;
    margin: 0 auto;
    aspect-ratio: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { scroll-behavior: auto !important; }
}
