:root {
  color-scheme: dark;
  --toad-yellow: #fff468;
  --toad-green: #05933d;
  --hot-pink: #f20b75;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #000 url("assets/wall1.jpg") repeat;
}

body {
  margin: 0;
  color: #fff;
  background: transparent;
  font-family: "Times New Roman", Times, serif;
}

.page-shell {
  width: 680px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 5px 24px;
  background: #000;
  box-shadow: 0 0 24px rgb(242 11 117 / 22%);
}

.contract-bar {
  display: flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 8px 3px;
  border-bottom: 1px solid #333;
  color: var(--toad-yellow);
  background: #050505;
  font: 700 11px/1.2 Arial, Helvetica, sans-serif;
  letter-spacing: .3px;
}

.contract-address {
  overflow: hidden;
  max-width: 330px;
  padding: 2px 5px;
  border: 1px dotted var(--toad-green);
  color: #9dff70;
  background: #000;
  font: 700 11px/1.2 "Courier New", monospace;
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: pointer;
}

.contract-address:hover,
.contract-address:focus-visible {
  color: #fff;
  border-style: solid;
  outline: 0;
}

.copy-status {
  color: #aaa;
  font-size: 9px;
  white-space: nowrap;
}

.site-header {
  padding: 0 25px;
  text-align: center;
}

.battletoads-logo {
  display: block;
  width: 620px;
  height: 270px;
  object-fit: contain;
}

.content-grid {
  display: grid;
  grid-template-columns: 490px 1fr;
  gap: 10px;
}

.main-column {
  text-align: center;
}

.commercial-frame {
  position: relative;
  width: 480px;
  height: 401px;
  overflow: hidden;
  border: 2px ridge #777;
  background:
    radial-gradient(circle at center, rgb(0 255 77 / 20%), transparent 55%),
    repeating-linear-gradient(0deg, #080808 0, #080808 2px, #131313 3px);
}

.commercial-frame iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 18px;
  color: var(--toad-yellow);
  font: 900 29px/1.05 Arial Black, Arial, sans-serif;
  letter-spacing: -1px;
  text-shadow: 3px 3px 0 var(--toad-green);
}

.play-button {
  display: grid;
  width: 72px;
  height: 56px;
  margin: auto;
  place-content: center;
  border: 3px outset #777;
  color: #fff;
  background: #191919;
  text-shadow: none;
}

h1 {
  margin: 7px 0 4px;
  color: var(--toad-yellow);
  font: 900 30px/1.08 "Arial Black", Arial, sans-serif;
  letter-spacing: -1.5px;
}

.phone-number {
  color: inherit;
  white-space: nowrap;
  text-decoration: none;
}

.phone-number:hover,
.phone-number:focus-visible {
  color: #fff;
  text-decoration: underline;
}

hr {
  height: 2px;
  margin: 5px 0;
  border: 0;
  border-top: 1px solid #777;
  border-bottom: 1px solid #222;
}

.pitch {
  margin: 10px 0 8px;
  font: 18px/1.24 Arial, Helvetica, sans-serif;
}

.pitch strong {
  color: var(--toad-yellow);
  font-weight: normal;
}

.countdown-wrap {
  padding-top: 9px;
}

.elapsed-label {
  margin: 0 0 4px;
  color: var(--toad-yellow);
  font: 900 13px/1 "Arial Black", Arial, sans-serif;
  letter-spacing: 1px;
}

.countdown {
  display: inline-flex;
  align-items: flex-start;
  gap: 3px;
  padding: 4px 7px 3px;
  border: 1px solid #282828;
  background: #050505;
  font-family: "Courier New", monospace;
}

.countdown > div {
  display: grid;
  gap: 2px;
}

.countdown span {
  display: inline-block;
  min-width: 54px;
  padding: 1px 4px;
  border: 1px inset #555;
  color: var(--hot-pink);
  background: #090909;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 0 0 7px var(--hot-pink);
}

.countdown #days {
  min-width: 86px;
}

.countdown b {
  color: var(--hot-pink);
  font-size: 27px;
  line-height: 34px;
}

.countdown small {
  color: #aaa;
  font-size: 8px;
  letter-spacing: 1px;
}

.release-date {
  display: block;
  width: 350px;
  max-width: 100%;
  height: auto;
  margin: 8px auto 0;
}

.reviews {
  padding: 4px 2px 0 0;
  font-size: 16px;
  line-height: 1.15;
}

blockquote {
  margin: 0 0 17px;
}

blockquote p {
  margin: 0;
  font-style: italic;
}

blockquote cite {
  display: block;
  margin: 2px 0 0 9px;
  font-style: normal;
}

@media (max-width: 700px) {
  .page-shell {
    width: min(100%, 520px);
    padding-inline: 10px;
  }

  .site-header {
    padding: 0;
  }

  .battletoads-logo {
    width: 100%;
    height: auto;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .commercial-frame {
    width: 100%;
    height: auto;
    aspect-ratio: 480 / 401;
  }

  .reviews {
    padding: 18px 14px 0;
    border-top: 1px solid #555;
    column-count: 2;
    column-gap: 22px;
  }

  blockquote {
    break-inside: avoid;
  }
}

@media (max-width: 480px) {
  .contract-bar {
    flex-wrap: wrap;
    gap: 3px 5px;
  }

  .contract-address {
    max-width: min(75vw, 300px);
  }

  .copy-status {
    width: 100%;
    text-align: center;
  }

  h1 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .pitch {
    font-size: 15px;
  }

  .pitch br {
    display: none;
  }

  .countdown {
    gap: 1px;
    transform: scale(.88);
  }

  .reviews {
    column-count: 1;
  }
}
