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

:root {
  --white: #f7f7f7;
  --muted: #a8a8a8;
  --glass: rgba(8, 8, 8, .48);
  --line: rgba(255,255,255,.17);
  --accent: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: #050505;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.video-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #050505;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12) brightness(.52);
  transform: scale(1.035);
}

.video-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.08), transparent 35%),
    linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.82) 88%, #050505 100%);
}

.grain {
  position: absolute;
  inset: -50%;
  opacity: .075;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
  animation: grain .22s steps(2) infinite;
}

@keyframes grain {
  0% { transform: translate(0,0); }
  25% { transform: translate(2%,-1%); }
  50% { transform: translate(-1%,2%); }
  75% { transform: translate(1%,1%); }
  100% { transform: translate(-2%,-2%); }
}

.page {
  width: min(680px, calc(100% - 30px));
  margin: auto;
  padding: 58px 0 30px;
}

.profile {
  text-align: center;
  animation: rise .8s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.avatar-wrap {
  width: 92px;
  height: 92px;
  margin: 0 auto 17px;
  position: relative;
}

.avatar {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(0,0,0,.62);
  font-family: "Bebas Neue", sans-serif;
  font-size: 48px;
  box-shadow: 0 0 35px rgba(255,255,255,.08);
}

.online-dot {
  position: absolute;
  right: 3px;
  bottom: 7px;
  width: 15px;
  height: 15px;
  border: 3px solid #050505;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(255,255,255,.8);
}

.eyebrow {
  color: #cfcfcf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  margin-bottom: 7px;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 13vw, 92px);
  line-height: .82;
  letter-spacing: 2px;
  text-shadow: 5px 5px 0 rgba(255,255,255,.05);
}

h1 span {
  display: block;
  -webkit-text-stroke: 1px #fff;
  color: transparent;
}

.bio {
  color: #c3c3c3;
  font-size: 13px;
  margin-top: 15px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 20px 0 27px;
}

.social {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  font-size: 10px;
  font-weight: 800;
  transition: .25s ease;
  backdrop-filter: blur(10px);
}

.social:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px) rotate(-4deg);
}

.links {
  display: grid;
  gap: 12px;
}

.link-card {
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: var(--glass);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 12px 35px rgba(0,0,0,.22);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  animation: cardIn .65s ease both;
}

.link-card:nth-child(2) { animation-delay: .08s; }
.link-card:nth-child(3) { animation-delay: .16s; }
.link-card:nth-child(4) { animation-delay: .24s; }

@keyframes cardIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.link-card:hover {
  transform: translateY(-4px) scale(1.008);
  border-color: rgba(255,255,255,.5);
  background: rgba(18,18,18,.62);
}

.link-card.featured {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.09);
}

.icon {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f4f4f4;
  color: #080808;
  font-size: 18px;
}

.link-copy {
  min-width: 0;
  flex: 1;
}

.link-copy strong,
.link-copy span {
  display: block;
}

.link-copy strong {
  font-size: 14px;
  font-weight: 700;
}

.link-copy span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arrow {
  color: #bdbdbd;
  font-size: 20px;
  transition: transform .25s ease;
}

.link-card:hover .arrow { transform: translate(3px,-3px); }

.music-card {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 15px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(0,0,0,.52);
  backdrop-filter: blur(15px);
}

.music-art {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  flex: 0 0 53px;
  border-radius: 13px;
  background: linear-gradient(135deg, #222, #050505);
  border: 1px solid rgba(255,255,255,.15);
  font-size: 21px;
}

.music-info {
  min-width: 0;
  flex: 1;
}

.music-info small,
.music-info strong,
.music-info span {
  display: block;
}

.music-info small {
  color: #8e8e8e;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2px;
}

.music-info strong {
  font-size: 13px;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-info span {
  color: #aaa;
  font-size: 10px;
  margin-top: 3px;
}

.play-btn {
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: #fff;
  color: #000;
  cursor: pointer;
  font-size: 13px;
  transition: .25s ease;
}

.play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 25px rgba(255,255,255,.2);
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #777;
  font-size: 8px;
  letter-spacing: 1.5px;
  padding: 24px 0 5px;
}

.footer-dot { color: #ddd; }

@media (max-width: 480px) {
  .page { padding-top: 38px; }
  .avatar-wrap { width: 78px; height: 78px; }
  h1 { font-size: 65px; }
  .link-card { min-height: 70px; }
}


* {
  -webkit-tap-highlight-color: transparent;
}

.link-card:active,
.link-card:focus {
  background: var(--glass) !important;
  color: white !important;
  border-color: rgba(255,255,255,.17) !important;
  transform: none !important;
}

.social:active,
.social:focus {
  background: rgba(0,0,0,.38) !important;
  color: white !important;
  transform: none !important;
}

.play-btn:active,
.play-btn:focus {
  background: #fff !important;
  color: #000 !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}