* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f8f1f6;
  color: #201722;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  width: 100%;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(236, 72, 153, 0.22), transparent 38%),
    linear-gradient(180deg, #fff7fb 0%, #f8f1f6 45%, #f1e8f5 100%);
}

.top-banner {
  width: 100%;
  height: 190px;
  background: linear-gradient(135deg, #ff8ec7, #9b5cff, #6fd6ff);
}

.profile-card {
  max-width: 430px;
  margin: 0 auto;
  margin-top: -115px;
  padding: 0 22px 42px;
  text-align: center;
}

.avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid #ffffff;
  background: #ffffff;
  box-shadow:
    0 18px 45px rgba(80, 40, 110, 0.18),
    0 0 35px rgba(236, 72, 153, 0.22);
}

h1 {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #201722;
}

.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  border-radius: 50%;
  background: #ec4899;
  color: #ffffff;
  font-size: 14px;
  vertical-align: middle;
  box-shadow: 0 0 18px rgba(236, 72, 153, 0.45);
}

.subtitle {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #7d6f82;
}

.links {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.btn {
  display: block;
  width: 100%;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ff4fa3, #8b5cf6);
  color: #ffffff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  border: none;
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.28);
  transition: 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #ff73b8, #9b6dff);
  box-shadow: 0 20px 44px rgba(236, 72, 153, 0.36);
}

.btn-main {
  background: linear-gradient(135deg, #ff4fa3, #8b5cf6);
  color: #ffffff;
  border: none;
  box-shadow: 0 16px 38px rgba(236, 72, 153, 0.28);
}

.btn-main:hover {
  background: linear-gradient(135deg, #ff73b8, #9b6dff);
}

/* Age verification modal */

.age-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(32, 23, 34, 0.58);
  backdrop-filter: blur(10px);
  z-index: 999;
}

.age-modal.active {
  display: flex;
}

.age-box {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 24px;
  text-align: center;
  background: #fff8fc;
  color: #241528;
  border: 1px solid rgba(155, 92, 255, 0.14);
  box-shadow: 0 25px 70px rgba(60, 30, 80, 0.25);
}

.age-box h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #201722;
}

.age-box p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(36, 21, 40, 0.68);
  margin-bottom: 24px;
}

.age-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.age-btn {
  width: 100%;
  padding: 15px 18px;
  border: none;
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.age-yes {
  background: linear-gradient(135deg, #ff4fa3, #8b5cf6);
  box-shadow: 0 12px 28px rgba(236, 72, 153, 0.24);
}

.age-no {
  background: rgba(36, 21, 40, 0.08);
  color: #241528;
}

@media (max-width: 480px) {
  .top-banner {
    height: 175px;
  }

  .profile-card {
    margin-top: -105px;
  }

  .avatar {
    width: 205px;
    height: 205px;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
  }

  .btn {
    padding: 20px 22px;
    font-size: 19px;
    border-radius: 21px;
  }
}