* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 15%, #3a1630, transparent 42%),
    linear-gradient(145deg, #0d0d0d, #1a0e17);
}

.profile-card {
  width: min(430px, 100%);
  text-align: center;
  padding: 34px 24px 26px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(20,20,24,.92);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}

.avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f06, #8d2cff);
  font-size: 38px;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: 30px;
}

.subtitle {
  margin: 8px 0 24px;
  color: #bdbdc5;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.stats div {
  padding: 14px 6px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 19px;
}

.stats span {
  margin-top: 5px;
  color: #aaa;
  font-size: 12px;
}

.notice {
  padding: 16px;
  border-radius: 15px;
  background: rgba(255,255,255,.05);
}

.notice strong {
  font-size: 15px;
}

.notice p {
  margin: 7px 0 0;
  color: #c5c5cc;
  font-size: 13px;
  line-height: 1.5;
}

/* AGE POPUP */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(4px);
}

.age-box {
  width: min(625px, 100%);
  min-height: 520px;
  padding: 70px 28px 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid #9cff63;
  border-radius: 18px;
  background: #000;
  box-shadow: 0 0 25px rgba(156,255,99,.15);
}

.age-box h2 {
  margin: 0 0 45px;
  font-size: clamp(38px, 9vw, 62px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
}

.question {
  margin: 0 0 38px;
  font-size: clamp(20px, 4.5vw, 30px);
  line-height: 1.35;
  font-weight: 700;
}

.buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.buttons button {
  min-width: 125px;
  padding: 18px 30px;
  border: 0;
  border-radius: 10px;
  background: #9cff63;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
}

.buttons button:active {
  transform: scale(.97);
}

@media (max-width: 480px) {
  .age-box {
    min-height: 620px;
    padding: 45px 20px;
  }

  .age-box h2 {
    margin-bottom: 42px;
  }

  .question {
    margin-bottom: 35px;
  }

  .buttons button {
    min-width: 115px;
    padding: 17px 24px;
  }
}
/* AUTO IMAGE SLIDER */

.slider {
  position: relative;
  width: 100%;
  margin: 20px 0 25px;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slides img {
  width: 100%;
  min-width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.slider button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.slider .prev {
  left: 10px;
}

.slider .next {
  right: 10px;
}

@media (max-width: 480px) {
  .slides img {
    height: 210px;
  }

  .slider button {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
}
