.reset-button {
  position: absolute;
  bottom: 1.5cqw;
  right: 2cqw;
  z-index: 10;
  cursor: pointer;

  font-family: 'Meursault', serif;
  font-size: 0.75cqw;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
}
.attract-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.attract-view-content {
  position: absolute;
  box-sizing: border-box;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  font-family: 'Meursault', serif;
  color: var(--color-white);
  text-align: center;
}

.attract-view-titles-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.attract-view h1 {
  font-size: 5cqw;
  font-weight: 400;
  margin: 0;
}

.attract-view h2 {
  font-size: 1.5cqw;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}
.starry-background {
  position: absolute;
  inset: 0;
  background-color: black;
}

.starry-background-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.starry-background-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.starry-background-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  mix-blend-mode: screen;
}

.starry-background-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-menu-view {
  position: relative;
  width: 100%;
  height: 100%;
}

.top-menu-view-content {
  position: absolute;
  box-sizing: border-box;
  inset: 0;
  padding: 2%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  font-family: 'Meursault', serif;
  color: var(--color-white);
  text-align: center;
}

.top-menu-view-buttons-wrapper {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 3vw;
}

.top-menu-view h1 {
  font-size: 5vh;
  font-weight: 400;
  margin: 0;
}

.top-menu-view h2 {
  font-size: 3vh;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0;
}

.touch-prompt {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Meursault', serif;
  color: var(--color-white);
  font-weight: 500;
}
.category-button {
  position: relative;
  width: 35vh;
  aspect-ratio: 11/7;
  padding: 0 25%;
  box-sizing: border-box;

  border-radius: 15vh;
  corner-shape: squircle;

  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(5px);
  /* inset | offset-x | offset-y | blur | spread | color */
  box-shadow: inset 2px 2px 0 0 rgba(255, 255, 255, 0.25);

  display: flex;
  justify-content: center;
  align-items: center;

  color: var(--color-white);
  font-family: 'Meursault', serif;
  text-transform: uppercase;
  text-align: center;

  font-size: 3vh;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
.content-view {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vh;
}

.content-view-header {
  width: 100%;
  max-width: calc(75vh * 16 / 9); /* match frame width */
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 2vw;
}

.content-view-header > * {
  flex: 1;
}

.content-view-header h1 {
  font-family: 'Meursault', serif;
  text-wrap: nowrap;
  font-size: 5vh;
  font-weight: 400;
  color: var(--color-white);
  margin: 0;
}

.content-view-back {
  font-family: 'Meursault', serif;
  font-size: 3vh;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--color-white);
  cursor: pointer;
  flex-shrink: 0;
}

.content-view-back.idle-warning {
  text-transform: none;
  font-style: oblique;
  font-weight: 400;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.content-view-frame {
  position: relative;
  height: 75vh;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;

  -webkit-box-shadow: 0 0 40px 5px rgba(255,255,255,0.25);
  -moz-box-shadow:    0 0 40px 5px rgba(255,255,255,0.25);
  box-shadow:         0 0 40px 5px rgba(255,255,255,0.25);
}

.content-view-frame > * {
  width: 100%;
  height: 100%;
  border: none;
}

.content-view-frame > * > * {
  width: 100%;
  height: 100%;
  border: none;
}
.cwt-idle-warning-modal {
  position: absolute;
  inset: 0;
  z-index: 100;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.25cqw;
}
:root {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  user-select: none;

  --color-light-blue: hsl(214, 22%, 81%);
  --color-green: hsl(70, 48%, 26%);
  --color-orange: hsl(33, 56%, 51%);
  --color-white: hsl(216, 17%, 88%);

  font-family: 'Franklin Gothic', sans-serif;
}

.rounded {
  border-radius: 32px;
  overflow: hidden;
}
/* noinspection CssUnknownProperty */
@supports (corner-shape: squircle) {
  .rounded {
    border-radius: 64px;
    corner-shape: squircle;
  }
}

@font-face {
  font-family: 'Meursault';
  font-weight: 100 900;
  font-style: normal;
  src: url('./Meursault%20VF-Bg5dlU_7.otf') format('opentype');
}
@font-face {
  font-family: 'Meursault';
  font-weight: 100 900;
  font-style: oblique 5deg;
  src: url('./Meursault%20VF-Bg5dlU_7.otf') format('opentype');
}

@font-face {
  font-family: 'Franklin Gothic';
  font-weight: 400;
  font-style: normal;
  src: url('./Franklin%20Gothic%20URW%20Book-BRw6aM9A.otf') format('opentype');
}
@font-face {
  font-family: 'Franklin Gothic';
  font-weight: 400;
  font-style: italic;
  src: url('./Franklin%20Gothic%20URW%20Book%20Italic-CSJ8bc-t.otf') format('opentype');
}
@font-face {
  font-family: 'Franklin Gothic';
  font-weight: 600;
  font-style: normal;
  src: url('./Franklin%20Gothic%20URW%20Demi-kSH8honA.otf') format('opentype');
}
@font-face {
  font-family: 'Franklin Gothic';
  font-weight: 600;
  font-style: italic;
  src: url('./Franklin%20Gothic%20URW%20Demi%20Italic-DA9h337a.otf') format('opentype');
}
