:root {
  --ink: #f2f4ff;
  --deep: #02030b;
  --glass: rgba(16, 20, 48, 0.42);
  --stroke: rgba(165, 220, 255, 0.4);
  --blue: #738dcb;
  --violet: #242354;
  --pink: #d06cff;
  --cyan: #7cf8ff;
  --green: #baff98;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.62);
  --ui: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #01020a url("./background.png") center center / cover no-repeat fixed;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: var(--ui);
  background:
    linear-gradient(90deg, rgba(9, 10, 32, 0.92), rgba(3, 5, 18, 0.54) 30%, rgba(3, 5, 18, 0.58) 70%, rgba(10, 35, 52, 0.9)),
    linear-gradient(180deg, rgba(1, 2, 8, 0.54), rgba(1, 2, 8, 0.88)),
    url("./background.png") center center / cover no-repeat fixed,
    var(--deep);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(80, 110, 170, 0.08), transparent 34%),
    radial-gradient(circle at 0% 50%, rgba(28, 33, 98, 0.54), transparent 34%),
    radial-gradient(circle at 100% 50%, rgba(0, 105, 130, 0.34), transparent 36%),
    rgba(1, 2, 10, 0.22);
  opacity: 1;
}

.shell {
  width: min(100%, 560px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 44px 18px;
  display: grid;
  place-items: center;
}

.hero {
  width: 100%;
  position: relative;
  padding: clamp(24px, 5vw, 38px);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(115, 145, 210, 0.13), rgba(5, 7, 24, 0.74) 48%, rgba(5, 210, 255, 0.08)),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(1.45);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 10px;
  border: 1px solid rgba(124, 248, 255, 0.22);
  border-radius: 6px;
}

.hero::after {
  top: 0;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 248, 255, 0.9), transparent);
}

.logo-wrap {
  display: grid;
  place-items: center;
  min-height: 110px;
  margin-bottom: 12px;
}

.logo {
  width: min(100%, 470px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 12px 0 rgba(63, 56, 99, 0.14))
    drop-shadow(0 24px 34px rgba(48, 42, 89, 0.26));
}

.badge {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 7px 12px;
  color: #e9f8ff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(165, 220, 255, 0.44);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 248, 255, 0.22), rgba(18, 22, 58, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 28px rgba(0, 0, 0, 0.28);
}

.tagline,
.schedule {
  margin: 12px auto 0;
  text-align: center;
}

.tagline {
  max-width: 34rem;
  color: #f2f4ff;
  font-weight: 800;
  font-size: clamp(0.92rem, 2.8vw, 1.05rem);
}

.tagline span {
  color: var(--cyan);
}

.schedule {
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  color: #e9f8ff;
  font-size: 0.9rem;
  line-height: 1.4;
  border: 1px solid rgba(165, 220, 255, 0.34);
  border-radius: 8px;
  background: rgba(13, 17, 48, 0.46);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.link {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  color: #f5f8ff;
  text-decoration: none;
  border: 1px solid rgba(165, 220, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(190, 220, 255, 0.24), rgba(9, 13, 38, 0.58)),
    linear-gradient(90deg, var(--tint), transparent 56%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 34px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.link:hover,
.link:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(124, 248, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 42px rgba(0, 0, 0, 0.48);
  outline: none;
}

.link:active {
  transform: translateY(-1px);
}

.twitch {
  --tint: rgba(116, 89, 255, 0.34);
}

.discord {
  --tint: rgba(69, 103, 255, 0.34);
}

.tiktok {
  --tint: rgba(124, 248, 255, 0.32);
}

.twitter {
  --tint: rgba(208, 108, 255, 0.3);
}

.link-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 950;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.3), transparent 38%),
    linear-gradient(145deg, var(--violet), var(--blue));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 10px 20px rgba(48, 42, 89, 0.22);
}

.link-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.link-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.link-copy small {
  color: #b6c9f6;
  font-size: 0.82rem;
  line-height: 1.35;
}

.arrow {
  color: var(--cyan);
  font-size: 1.15rem;
  font-weight: 900;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  color: rgba(235, 243, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.sparkle {
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 138, 200, 0.72);
}

@media (max-width: 440px) {
  .shell {
    padding: 22px 12px;
  }

  .hero {
    padding: 22px 14px;
  }

  .logo-wrap {
    min-height: 92px;
  }

  .link {
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    gap: 10px;
    min-height: 72px;
    padding: 12px;
  }

  .link-icon {
    width: 40px;
    height: 40px;
  }
}
