:root {
  color-scheme: dark;
  font-family: "Noto Sans", Arial, sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  background: #000;
}

body {
  width: min(100%, 500px);
  min-height: 100%;
  margin: 0 auto;
  overflow-x: hidden;
  background: transparent;
  color: #fff;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: 100%;
}

.promo {
  padding-top: 21.5px;
  text-align: center;
}

.hero-link {
  display: block;
  cursor: pointer;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  margin: 0 0 20px;
  object-fit: cover;
}

.primary-action {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 4px double transparent;
  border-radius: 6px;
  background:
    linear-gradient(#212121, #212121) padding-box,
    linear-gradient(137.48deg, #ffdb3b 10%, #fe53bb 45%, #8f51ea 67%, #0044ff 87%) border-box;
  background-size: 300% 300%;
  animation: gradient-shift 5s ease infinite;
  cursor: pointer;
}

.primary-action::before,
.primary-action::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.primary-action::before {
  inset: 0;
  background-image: radial-gradient(#fff 1px, transparent 1%);
  background-position: 0 0;
  background-size: 50px 50px;
  opacity: 0.72;
  animation: star-drift 18s linear infinite;
}

.primary-action::after {
  left: 50%;
  bottom: -17px;
  width: 192px;
  height: 30px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, rgba(254, 83, 187, 0.68), rgba(143, 81, 234, 0.7));
  filter: blur(18px);
  animation: glow-pulse 4s ease-in-out infinite;
}

.primary-action span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 13.333px;
  font-weight: 700;
  letter-spacing: 5px;
  line-height: 1;
  white-space: nowrap;
}

.action-list {
  display: grid;
  gap: 20px;
}

.action-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 37.5px;
  padding: 5px 8px;
  border: 3px solid transparent;
  background:
    linear-gradient(0deg, #6cd867, #000) padding-box,
    linear-gradient(137.48deg, #ffdb3b 10%, #fe53bb 45%, #8f51ea 67%, #0044ff 87%) border-box;
  background-size: auto, 400% 400%;
  color: #fff;
  line-height: 1;
  animation: border-flow 5s linear infinite;
  cursor: pointer;
}

.action-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px;
  background: linear-gradient(137.48deg, #ffdb3b 10%, #fe53bb 45%, #8f51ea 67%, #0044ff 87%);
  background-size: 400% 400%;
  filter: blur(38px);
  opacity: 0.55;
  animation: border-flow 5s linear infinite;
}

.article h1 {
  margin: 20px 0 0;
  color: #fdbe00;
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.article p {
  margin: 0 0 25px;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  text-align: justify;
}

.accent {
  color: #fdbe00;
}

hr {
  width: 100%;
  height: 2px;
  margin: 0;
  border: 1px inset #808080;
}

.footer {
  margin: 15px 0;
  text-align: center;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes border-flow {
  0%,
  100% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 0 0, 400% 0;
  }
}

@keyframes star-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 50px -100px;
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(0.75);
    opacity: 0.5;
  }

  70% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
}

@media (max-width: 359px) {
  .primary-action span {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .article h1 {
    font-size: 21px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .primary-action,
  .primary-action::before,
  .primary-action::after,
  .action-item,
  .action-item::after {
    animation: none;
  }
}
