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

:root {
  --bg: #0d0e10;
  --card: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.58);
  --link-bg: #050505;
  --accent-1: #2d3150;
  --accent-2: #73391b;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

body {
  min-height: 100vh;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(135, 68, 26, 0.45), transparent 25%),
    radial-gradient(circle at top left, rgba(54, 65, 126, 0.35), transparent 25%),
    linear-gradient(180deg, #0b0c0f, #121316 55%, #1a1b1d 100%);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 60px;
}

.phone-card {
  width: 100%;
  max-width: 360px;
  min-height: 760px;
  border-radius: 22px;
  padding: 16px 16px 24px;
  background:
    radial-gradient(circle at top right, rgba(140, 70, 20, 0.35), transparent 28%),
    radial-gradient(circle at top left, rgba(60, 72, 140, 0.28), transparent 26%),
    linear-gradient(180deg, rgba(26, 26, 28, 0.96), rgba(62, 59, 55, 0.90) 75%, rgba(31, 30, 28, 0.95));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.top-actions {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mini-btn {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  color: #161616;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.mini-btn:hover {
  transform: scale(1.06);
  opacity: 0.95;
}

.profile {
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 10px 30px rgba(0,0,0,0.32);
  background: #5d1034;
}

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

h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.bio {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 26px;
}

.social-icons a {
  color: #fff;
  text-decoration: none;
  font-size: 29px;
  transition: transform 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}

.social-icons a:hover {
  transform: translateY(-2px) scale(1.06);
  opacity: 0.9;
}

.links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.link-card {
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: white;
  display: grid;
  grid-template-columns: 44px 1fr 16px;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.18);
  background: rgba(6, 6, 6, 0.96);
}

.brand-box {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.calendly { background: #005eff; }
.kick { background: #1aff00; color: #071807; }
.discord { background: #5865f2; }
.coffee { background: #f6d117; color: #262300; }
.website { background: #ff8c2a; }

.link-text {
  min-width: 0;
}

.link-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.link-text small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--soft);
  line-height: 1.35;
}

.link-more {
  text-align: right;
  color: rgba(255,255,255,0.58);
  font-size: 14px;
}

.footer-cta {
  padding-top: 34px;
  text-align: center;
}

.join-btn {
  display: inline-block;
  text-decoration: none;
  color: #111;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.join-btn:hover {
  transform: translateY(-2px);
}

.footer-cta p {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.62);
}

@media (max-width: 420px) {
  .page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .phone-card {
    max-width: 100%;
    min-height: auto;
  }

  h1 {
    font-size: 24px;
  }

  .social-icons a {
    font-size: 26px;
  }
}
