* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus {
  outline: 0;
}

html {
  background: #000000;
  color-scheme: dark;
}

body {
  min-height: 100svh;
  background: #000000;
  color: #ffffff;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page-shell {
  width: min(500px, 100%);
  min-height: 100svh;
  margin: 0 auto;
  background: #000000;
}

.landing {
  padding: 18px 0 0;
}

.logo-link {
  display: block;
  width: min(300px, 94%);
  margin: 0 auto 18px;
}

.site-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 9px rgba(253, 203, 83, 0.72));
}

.poster-frame {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 auto 20px;
  border-radius: 10px;
  padding: 3px;
  background: #000000;
}

.poster-frame::before,
.poster-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 10px;
  background: linear-gradient(45deg, #0dff00, #000000, #e7ff00, #55ff1f, #dba536);
  background-size: 220%;
  animation: border-flow 5s linear infinite;
}

.poster-frame::after {
  filter: blur(24px);
  opacity: 0.82;
}

.poster-frame img {
  width: 100%;
  border-radius: 8px;
}

.cta-list {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.cta-button {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 3px solid #e2e5e1;
  border-radius: 10px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #ff2b00 0%, #a40500 48%, #000000 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-align: center;
  text-shadow:
    0 0 6px rgba(0, 255, 4, 0.8),
    0 0 12px rgba(51, 255, 119, 0.68),
    0 0 18px rgba(17, 255, 0, 0.58);
  box-shadow:
    0 0 10px rgba(0, 255, 38, 0.74),
    0 0 22px rgba(51, 255, 51, 0.62),
    inset 0 0 10px rgba(255, 255, 255, 0.12);
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.cta-button::before,
.cta-button::after {
  display: none;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: scale(1.03);
  filter: brightness(1.17);
  box-shadow:
    0 0 18px rgba(0, 255, 38, 0.95),
    0 0 42px rgba(51, 255, 51, 0.78),
    inset 0 0 13px rgba(255, 255, 255, 0.16);
}

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

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

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

@media (min-width: 480px) {
  .landing {
    padding: 24px 0 0;
  }

  .logo-link {
    width: 360px;
    margin-bottom: 22px;
  }

  .cta-button {
    min-height: 54px;
    font-size: 18px;
  }

}


.link-map,
.info-page {
  padding: 24px 18px 42px;
}

.link-map h1,
.info-page h1 {
  margin: 10px 0 12px;
  color: #e7b847;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.link-map p,
.info-page p {
  margin: 0 auto 14px;
  color: #f8eac0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.info-page h2 {
  margin: 20px 0 8px;
  color: #e7b847;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.link-map ul {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  list-style: none;
}

.link-map a {
  display: block;
  border: 1px solid rgba(231, 184, 71, 0.5);
  border-radius: 8px;
  padding: 12px;
  background: rgba(231, 184, 71, 0.08);
  color: #f6df9b;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.text-link {
  color: #e7b847;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}
