:root {
  --background: #000000;
  --foreground: #ffffff;
  --brand-yellow: #fdc533;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.presentation-selector {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 35.7vh 24px 32px;
  background: #000000;
}

.selector-content {
  display: flex;
  width: min(424px, 100%);
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.n42-logo {
  display: block;
  width: 133.333px;
  height: 37.143px;
  object-fit: contain;
}

h1 {
  margin: 0;
  width: 100%;
  color: #ffffff;
  font-size: 32.5px;
  font-weight: 700;
  line-height: normal;
  text-align: left;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.presentation-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}

.presentation-option {
  display: flex;
  width: 162px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.option-image-wrap {
  position: relative;
  display: block;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.option-image-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  user-select: none;
}

.option-label {
  width: 100%;
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  transition: color 180ms ease;
}

.presentation-option:hover .option-image-wrap {
  transform: translateY(-3px) scale(1.025);
}

.presentation-option:hover .option-label {
  color: var(--brand-yellow);
}

.presentation-option:focus-visible .option-image-wrap {
  box-shadow: 0 0 0 4px #000000, 0 0 0 7px var(--brand-yellow);
}

.presentation-option:active .option-image-wrap {
  transform: scale(0.985);
}

@media (max-width: 600px) {
  .presentation-selector {
    align-items: center;
    overflow-y: auto;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 440px) {
  .presentation-selector {
    padding-inline: 20px;
  }

  .selector-content {
    gap: 26px;
  }

  h1 {
    font-size: clamp(25px, 7.5vw, 30px);
    text-align: center;
  }

  .presentation-options {
    width: 100%;
    gap: clamp(24px, 8vw, 38px);
  }

  .presentation-option,
  .option-image-wrap {
    width: clamp(128px, 36vw, 150px);
  }

  .option-image-wrap {
    height: clamp(128px, 36vw, 150px);
  }
}

@media (max-height: 620px) {
  .presentation-selector {
    align-items: center;
    padding-block: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .option-image-wrap,
  .option-label {
    transition: none;
  }
}
