:root {
  --bg-1: #060b08;
  --bg-2: #0d1710;
  --card: rgba(14, 27, 19, 0.86);
  --line: rgba(114, 255, 148, 0.35);
  --text: #eaf8ee;
  --muted: #b8d1bf;
  --snake: #66ff8f;
  --snake-strong: #19d955;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Segoe UI", "Trebuchet MS", Verdana, sans-serif;
  background:
    radial-gradient(1200px 600px at 15% -5%, rgba(45, 255, 119, 0.14), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(18, 117, 52, 0.2), transparent 62%),
    linear-gradient(155deg, var(--bg-1), var(--bg-2));
  color: var(--text);
  display: flex;
  justify-content: center;
  padding: 24px 14px;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  inset: -30% auto auto -20%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 255, 143, 0.18), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
  animation: floatGlow 7s ease-in-out infinite;
}

.page {
  width: min(100%, 680px);
  display: grid;
  place-items: center;
}

.card {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px 20px 24px;
  backdrop-filter: blur(6px);
  position: relative;
  animation: rise 650ms ease-out both;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: repeating-linear-gradient(
    -35deg,
    rgba(102, 255, 143, 0.05) 0,
    rgba(102, 255, 143, 0.05) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: 0.3;
  pointer-events: none;
}

.logo {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(114, 255, 148, 0.7);
  box-shadow: 0 0 28px rgba(70, 255, 132, 0.3);
  display: block;
  margin: 0 auto 16px;
}

.pseudo {
  margin: 0;
  text-align: center;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 6vw, 2.7rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--snake);
  text-shadow: 0 0 14px rgba(102, 255, 143, 0.4);
}

.intro {
  margin: 14px auto;
  text-align: center;
  line-height: 1.58;
  color: var(--muted);
  max-width: 62ch;
}

.links {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.link-btn {
  --btn-color: var(--snake);
  --btn-color-2: var(--snake-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  text-decoration: none;
  border-radius: 999px;
  color: #f7fff9;
  background: linear-gradient(140deg, var(--btn-color), var(--btn-color-2));
  padding: 13px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.link-btn .icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
}

.link-btn .icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.link-btn:hover,
.link-btn:focus-visible {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
  filter: saturate(1.08);
}

.link-btn:focus-visible {
  outline: 2px solid #d9ffe5;
  outline-offset: 3px;
}

.twitch {
  --btn-color: #6f44ff;
  --btn-color-2: #5033b8;
}

.youtube {
  --btn-color: #ff2d2d;
  --btn-color-2: #b11616;
}

.kick {
  --btn-color: #41ff62;
  --btn-color-2: #1d8e34;
  color: #08270f;
}

.instagram {
  --btn-color: #ff7d35;
  --btn-color-2: #cc2e84;
}

.tiktok {
  --btn-color: #25f4ee;
  --btn-color-2: #fe2d52;
}

.status {
  margin: 10px 0 0;
  text-align: center;
  color: #ffdca7;
  min-height: 1.2em;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(28px, 18px);
  }
}

@media (max-width: 520px) {
  body {
    padding: 14px 10px 20px;
  }

  .card {
    border-radius: 18px;
    padding: 22px 14px 18px;
  }

  .logo {
    width: 82px;
    height: 82px;
    border-radius: 16px;
  }

  .intro {
    font-size: 0.97rem;
  }
}
