* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #202020;
  color: #eeeeee;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: inherit;
}

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 48px 24px 26px;
}

.hero,
.bottom-image,
.center {
  text-align: center;
}

.promo-image {
  display: block;
  height: auto;
  object-fit: cover;
  margin: 0 auto;
}

.promo-image-top {
  width: 300px;
  max-width: 72vw;
  margin-bottom: 12px;
}

.promo-image-bottom {
  width: 280px;
  max-width: 72vw;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 24px;
  border-radius: 4px;
  background: #146da2;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #1986c6;
  transform: translateY(-1px);
}

.button-small {
  min-width: 200px;
  margin-bottom: 18px;
}

h1,
h2 {
  margin: 0;
  color: #f4f4f4;
  font-weight: 800;
  text-align: center;
  line-height: 1.12;
}

h1 {
  max-width: 1040px;
  margin: 0 auto 28px;
  font-size: 38px;
}

h2 {
  margin: 28px 0 28px;
  font-size: 24px;
}

.text-block {
  color: #dddddd;
  font-weight: 600;
  text-align: left;
}

.text-block p {
  margin: 0 0 22px;
}

.text-block strong {
  color: #f3f3f3;
  text-decoration: underline;
}

.video-section {
  margin-top: 18px;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111111;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-fallback {
  display: none;
  margin: 10px 0 0;
  color: #d8d8d8;
  text-align: center;
  font-weight: 700;
}

.video-fallback a {
  color: #ffd51e;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-fallback.is-visible,
.video-fallback-static {
  display: block;
}

.center {
  margin: 18px 0 12px;
}

.content-section {
  margin-top: 4px;
}

.faq {
  margin: 12px 0 12px;
}

.faq h2 {
  margin-top: 20px;
}

.faq details {
  border-bottom: 1px solid #8a8a96;
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  color: #f0f0f0;
  cursor: pointer;
  font-size: 21px;
  font-weight: 800;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: #e3c600;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: -4px 0 20px;
  color: #d8d8d8;
  font-weight: 600;
}

.footer {
  background: #1c1c1c;
  color: #d7d7d7;
}

.footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 12px 24px 34px;
}

.footer h2 {
  margin-top: 22px;
  margin-bottom: 16px;
  font-size: 21px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid #3f4750;
  border-radius: 4px;
  background: #262626;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 700;
}

.copyright {
  margin: 24px 0 0;
  color: #aaaaaa;
  text-align: center;
  font-size: 14px;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
}

.redirect-box {
  width: min(100%, 420px);
  padding: 24px;
  text-align: center;
}

.redirect-box p {
  margin: 0 0 18px;
  color: #eeeeee;
  font-weight: 700;
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .page {
    padding: 28px 16px 18px;
  }

  .promo-image-top {
    width: 260px;
  }

  .promo-image-bottom {
    width: 250px;
  }

  .button-small {
    min-width: 176px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 28px;
  }

  h2 {
    margin: 24px 0 20px;
    font-size: 21px;
  }

  .text-block p {
    margin-bottom: 18px;
  }

  .faq summary {
    gap: 16px;
    padding: 18px 0;
    font-size: 18px;
  }

  .faq summary::after {
    font-size: 26px;
  }

  .footer-inner {
    padding: 10px 16px 28px;
  }

  .tag-list {
    justify-content: flex-start;
  }
}
