*{box-sizing:border-box}

:root{
  --panel:rgba(255,255,255,.075);
  --panel-2:rgba(255,255,255,.105);
  --text:#f4f7fb;
  --muted:#aab3c2;
  --line:rgba(255,255,255,.13);
  --accent:#7cc7ff;
  --youtube:#ff4d4d;
  --twitch:#b98cff;
  --discord:#8ea1ff;
  --kick:#85ff69;
}

body{
  margin:0;
  min-height:100vh;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);

  background:
    radial-gradient(circle at 15% 10%,rgba(124,199,255,.18),transparent 30%),
    radial-gradient(circle at 85% 5%,rgba(145,255,212,.09),transparent 25%),
    linear-gradient(135deg,#151821 0%,#1e222b 45%,#14171d 100%);
}

.page{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:56px 0 80px;
}

.hero{
  position:relative;
  overflow:hidden;

  padding:62px 42px 76px;

  border:1px solid rgba(255,255,255,.12);
  border-radius:36px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.105),
      rgba(255,255,255,.035)
    );

  backdrop-filter:blur(6px);

  box-shadow:
    0 24px 90px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.hero::before{
  content:"";
  position:absolute;
  inset:-120px;

  background:
    radial-gradient(
      circle,
      rgba(124,199,255,.07),
      transparent 58%
    );

  pointer-events:none;
}

.hero-top{
  position:absolute;
  top:26px;
  left:32px;
}

.mini-title{
  font-size:13px;
  color:var(--muted);
  letter-spacing:.12em;
  font-weight:700;
}

.hero-center{
  position:relative;
  z-index:1;
  text-align:center;
}

.eyebrow{
  margin:0;
  color:var(--accent);
  letter-spacing:.22em;
  font-size:13px;
  font-weight:700;
}

.main-title{
  display:inline-block;

  margin:14px 0 18px;
  padding:0 0 .16em;

  font-size:clamp(64px,10vw,124px);

  line-height:1.12;
  letter-spacing:-.045em;
  font-weight:900;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #7cc7ff 34%,
      #9b8cff 62%,
      #ffffff 100%
    );

  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;

  text-shadow:
    0 0 10px rgba(124,199,255,.10);
}

.hero-sub{
  margin:0;
  font-size:15px;
  color:var(--muted);
  letter-spacing:.04em;
}

.section{
  margin-top:42px;
}

.section-head{
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:28px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(190px,1fr));
  gap:18px;
}

.card{
  overflow:hidden;

  border-radius:22px;
  border:1px solid var(--line);

  background:var(--panel);

  box-shadow:
    0 12px 32px rgba(0,0,0,.18);

  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease;
}

.card:hover{
  transform:translateY(-4px);

  background:var(--panel-2);

  border-color:rgba(124,199,255,.36);
}

.avatar-wrap{
  aspect-ratio:1/1;
  background:rgba(0,0,0,.22);
}

.avatar{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card-body{
  padding:14px;
}

.name{
  margin:0 0 12px;
  font-size:17px;
  line-height:1.3;
  word-break:break-word;
}

.links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.link{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:38px;
  height:38px;

  border-radius:999px;

  color:#06121d;
  background:var(--accent);

  text-decoration:none;

  font-size:17px;
  font-weight:900;
}

.link.x{
  background:var(--text);
}

.link.twitch{
  background:var(--twitch);
}

.link.youtube{
  background:var(--youtube);
  color:#fff;
}

.link.kick{
  background:var(--kick);
}

.link.discord{
  background:var(--discord);
}

@media (max-width:720px){

  .page{
    width:min(100% - 22px,1180px);
    padding-top:22px;
  }

  .hero{
    padding:50px 22px 58px;
  }

  .hero-top{
    left:22px;
  }

  .main-title{
    font-size:clamp(52px,14vw,82px);
    line-height:1.14;
    padding-bottom:.18em;
  }

  .grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
  }
}
