* {
  box-sizing: border-box;
}

:root {
  --bg: #050507;
  --card: rgba(8, 8, 12, 0.94);
  --border: rgba(180, 130, 255, 0.22);
  --accent: #a66cff;
  --text: #f5f2fa;
  --muted: #aaa3b5;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.card {
  min-height: calc(100vh - 48px);
  overflow: hidden;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  box-shadow: 0 25px 100px rgba(0,0,0,.65);
}

.banner {
  height: 390px;
  background:
    linear-gradient(to bottom, transparent 55%, var(--card) 100%),
    url("assets/IMG_6694.jpg") center 28% / cover no-repeat;
  filter: saturate(1.1);
  position: relative;
}

.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 8, 35, .12);
}

.profile {
  max-width: 1000px;
  margin: -100px auto 0;
  position: relative;
  padding: 0 24px 45px;
  text-align: center;
}

.avatar {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 35px rgba(166,108,255,.35);
  background: #111;
}

h1 {
  margin: 14px 0 4px;
  font-size: 32px;
  letter-spacing: -.8px;
}

.verified {
  display: inline-flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  vertical-align: 5px;
}

.handle {
  margin: 0;
  color: var(--accent);
  font-size: 15px;
}

.bio {
  color: var(--muted);
  margin: 20px 0 30px;
}

.socials {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 26px;
}

.socials a {
  padding: 18px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255,255,255,.025);
  transition: .2s ease;
  font-weight: 600;
}

.socials a:first-letter {
  color: var(--accent);
}

.socials a:hover {
  transform: translateY(-3px);
  border-color: rgba(166,108,255,.7);
  background: rgba(166,108,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}

.socials span {
  margin-left: 8px;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #000;
  box-shadow: 0 15px 50px rgba(0,0,0,.35);
}

.video-wrap iframe,
.video-wrap video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

footer {
  margin-top: 32px;
  color: #77717f;
  font-size: 13px;
}

footer p {
  margin: 7px;
}

.heart {
  color: var(--accent);
}

@media (max-width: 700px) {
  body {
    padding: 0;
  }

  .card {
    min-height: 100vh;
    border-radius: 0;
    border: 0;
  }

  .banner {
    height: 290px;
  }

  .profile {
    margin-top: -75px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .avatar {
    width: 120px;
    height: 120px;
  }

  h1 {
    font-size: 27px;
  }

  .socials {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .socials a {
    padding: 15px 8px;
    font-size: 14px;
  }
}
