* {
  box-sizing: border-box;
}

:root {
  --bg: #060000;
  --bg2: #0b0b10;
  --panel: rgba(14, 14, 20, 0.82);
  --border: rgba(232, 0, 132, 0.28);
  --border-soft: rgba(255, 255, 255, 0.08);
  --pink: #E80084;
  --purple: #D800E8;
  --text: #f7f3f8;
  --muted: #c6bcc7;
  --shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(216, 0, 232, 0.10), transparent 30%),
    radial-gradient(circle at 15% 20%, rgba(232, 0, 132, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  position: relative;
  overflow-x: hidden;
}

.bg-glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.16;
}

.bg-glow-1 {
  width: 280px;
  height: 280px;
  top: 80px;
  left: -80px;
  background: var(--pink);
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  right: -100px;
  top: 360px;
  background: var(--purple);
}

.page {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.hero {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: min(86vw, 340px);
  height: auto;
  margin: 0 auto 14px;
  display: block;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.tagline {
  margin: 0 auto;
  max-width: 620px;
  font-size: clamp(1rem, 3.4vw, 1.35rem);
  line-height: 1.45;
  color: var(--muted);
}

.links {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.link-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 18px 22px;
  border-radius: 24px;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 18%, rgba(255,255,255,0.01) 100%),
    linear-gradient(180deg, rgba(18,18,30,0.96) 0%, rgba(10,10,18,0.94) 100%);
  border: 1px solid rgba(232, 0, 132, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 8px 18px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 500;
  overflow: hidden;
}

.link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0) 45%);
  pointer-events: none;
}

.link-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 10px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 0, 132, 0.10) 0%, rgba(216, 0, 232, 0.05) 45%, transparent 75%);
  filter: blur(12px);
  pointer-events: none;
}

.link-card:hover,
.link-card:focus {
  transform: translateY(-2px);
  border-color: rgba(216, 0, 232, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    inset 0 -1px 0 rgba(255,255,255,0.04),
    0 10px 22px rgba(0, 0, 0, 0.26);
}

.arrow {
  font-size: 1.8rem;
  color: #ffd2ee;
  margin-left: 12px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 4px 0 28px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(18, 18, 26, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 6px 14px rgba(0, 0, 0, 0.18);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-pill:hover,
.social-pill:focus {
  border-color: rgba(232, 0, 132, 0.30);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 16px rgba(0, 0, 0, 0.22);
}

@media (max-width: 640px) {
  .page {
    padding: 22px 14px 40px;
  }

  .link-card {
    min-height: 68px;
    padding: 16px 18px;
    border-radius: 20px;
  }

  .socials {
    gap: 10px;
  }

  .social-pill {
    width: 100%;
  }
}
