* {
  box-sizing: border-box;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #101010;
}

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #f4f7fb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}

.divider {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  padding: 0;
  margin: 0;
  background: #1e5799;
  background: -moz-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0, #1e5799),
    color-stop(50%, #f300ff),
    color-stop(100%, #e0ff00)
  );
  background: -webkit-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -o-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: -ms-linear-gradient(left, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  background: linear-gradient(to right, #1e5799 0, #f300ff 50%, #e0ff00 100%);
  border-bottom: 1px solid #000;
  pointer-events: none;
}

main {
  width: min(100%, 440px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #88a709;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #d4d4d3;
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.description {
  margin: 10px 0 30px;
  color: #60a0dc;
  font-size: 0.94rem;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option {
  position: relative;
  min-height: 86px;
  padding: 18px 16px;
  border: 1px solid #343434;
  border-radius: 0;
  background: #181818;
  color: #d4d4d3;
  font: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.option::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

.player::before {
  background: #88a709;
}

.playlist::before {
  background: #60a0dc;
}

.option:hover {
  background: #202020;
  transform: translateY(-2px);
}

.player:hover {  border-color: #88a709;  color: #b5d52b;}

.playlist:hover {  border-color: #60a0dc;  color: #8fc5f4;}

.option:active {
  transform: translateY(0);
}

.player:focus-visible {
  outline: 2px solid #88a709;
  outline-offset: 3px;
}

.playlist:focus-visible {
  outline: 2px solid #60a0dc;
  outline-offset: 3px;
}

@media (max-width: 420px) {
  .options {
    grid-template-columns: 1fr;
  }

  .option {
    min-height: 70px;
  }
}