:root {
  color-scheme: dark;
  --background: #070b10;
  --surface: #101823;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f7fa;
  --muted: #aeb8c5;
  --accent: #8fd3ff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

.player-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  overflow: hidden;
}

.player-shell {
  width: 100%;
  line-height: 0;
}

.player-shell video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100dvh;
  background: #000;
  object-fit: contain;
}

.player-error {
  position: fixed;
  inset: auto 1rem 1rem;
  margin: 0 auto;
  max-width: 42rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 148, 148, 0.4);
  border-radius: 0.5rem;
  background: rgba(74, 15, 15, 0.94);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 125, 165, 0.24), transparent 36rem),
    var(--background);
}

.service-card {
  width: min(100%, 46rem);
  padding: clamp(1.5rem, 5vw, 3.5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(16, 24, 35, 0.9);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.3);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-card h1 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 8vw, 4.75rem);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.9;
}

.service-card .small {
  font-size: 0.88rem;
}

.service-link {
  display: inline-block;
  margin-top: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  text-decoration: none;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--accent);
}
