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

:root {
  --bg: #1a1930;
  --card: rgba(160, 161, 238, 0.08);
  --text: #fff;
  --muted: #a0a1ee;
  --font: "Fredoka", sans-serif;
}

html {
  background: var(--bg);
  user-select: none;
  -webkit-user-select: none;
}

body {
  font-family: var(--font);
  background: linear-gradient(170deg, #1a1930, #252345 50%, #1a1930);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.bg-stickers {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-stickers img {
  position: absolute;
  opacity: 0.05;
  animation: drift 22s ease-in-out infinite;
}

.bg-stickers img:nth-child(1) { top: 8%; left: 6%; animation-duration: 24s; }
.bg-stickers img:nth-child(2) { top: 20%; right: 10%; animation-delay: -4s; animation-duration: 19s; }
.bg-stickers img:nth-child(3) { top: 40%; left: 3%; animation-delay: -8s; animation-duration: 26s; }
.bg-stickers img:nth-child(4) { top: 60%; right: 7%; animation-delay: -11s; animation-duration: 21s; }
.bg-stickers img:nth-child(5) { top: 75%; left: 12%; animation-delay: -14s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  33% { transform: translate(20px, -15px) rotate(8deg); }
  66% { transform: translate(-15px, 10px) rotate(-5deg); }
}

.page {
  position: relative;
  z-index: 1;
  width: min(460px, 92%);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.4rem);
}

.logo { width: clamp(240px, 65vw, 380px); }
.dark-logo { display: none; }
@media (prefers-color-scheme: light) {
  .dark-logo { display: block; }
  .light-logo { display: none; }
}

.mascot {
  width: clamp(90px, 22vw, 140px);
  animation: wiggle 2.8s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0) translateY(0); }
  25% { transform: rotate(-5deg) translateY(-4px); }
  50% { transform: rotate(4deg) translateY(-2px); }
  75% { transform: rotate(-3deg) translateY(-5px); }
}

.tagline {
  font-size: clamp(0.95rem, 2.8vw, 1.2rem);
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  min-height: 1.8em;
  padding: 0 0.5rem;
}

.tagline .cursor {
  color: var(--muted);
  font-weight: 400;
}
.tagline .cursor.blink {
  animation: blink .7s step-end infinite;
}
@keyframes blink {
  50% { opacity: 0; }
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  width: 100%;
}

.links a {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 0.9rem);
  padding: clamp(0.7rem, 2vw, 0.9rem) clamp(1rem, 3vw, 1.4rem);
  border-radius: clamp(10px, 3vw, 14px);
  background: var(--card);
  border: 1px solid rgba(160, 161, 238, 0.1);
  color: var(--text);
  text-decoration: none;
  font-family: var(--font);
  font-size: clamp(0.88rem, 2.5vw, 1rem);
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}

.links a::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .25s;
  border-radius: 14px;
}
.links a:hover::before { opacity: 1; }

.links a:hover {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.links a:active { transform: translateY(0); }

.links a svg {
  width: clamp(20px, 5vw, 24px);
  height: clamp(20px, 5vw, 24px);
  flex-shrink: 0;
  z-index: 1;
}

.links a .name { z-index: 1; }

.links a .handle {
  z-index: 1;
  margin-left: auto;
  font-size: clamp(0.72rem, 2vw, 0.82rem);
  font-weight: 400;
  opacity: 0.4;
}

.twitch::before   { background: #9146ff; }
.youtube::before  { background: #c00; }
.bluesky::before  { background: #0071e3; }
.discord::before  { background: #5865f2; }
.instagram::before { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.tiktok::before   { background: #fe2c55; }

footer {
  text-align: center;
  padding: clamp(1.2rem, 3vw, 2rem) 1rem;
  position: relative;
  z-index: 1;
}
footer p {
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.35;
}

.bg-stickers img { width: clamp(35px, 8vw, 55px); }
