:root {
  color-scheme: dark;
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #06090d;
  color: #f8fbff;
  --blue: #7aa7c3;
  --gold: #f4bd45;
  --line: rgba(122, 167, 195, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 960px;
  min-height: 100%;
  background:
    radial-gradient(circle at 15% -10%, rgba(122, 167, 195, 0.18), transparent 32rem),
    #06090d;
}

body {
  padding: 20px;
}

.evaluator-shell {
  width: min(1500px, calc(100vw - 40px));
  margin: 0 auto;
}

.module-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  padding: 4px 2px 14px;
  border-bottom: 1px solid var(--line);
}

.kicker {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.direction {
  max-width: 31rem;
  margin: 0;
  color: #cbd5df;
  font-size: 0.9rem;
  line-height: 1.35;
  text-align: right;
}

.player-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.player-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 2px 0;
  color: #8ea0af;
  font-size: 0.75rem;
}

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