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

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
  color: white;
  display: flex;
  justify-content: center;
  padding: 0 14px 35px;
  overflow-x: hidden;
}

.page-bg {
  position: fixed;
  inset: 0;
  background: url("hero.jpg") center/cover no-repeat;
  filter: blur(38px) brightness(0.45);
  transform: scale(1.12);
  z-index: -2;
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: -1;
}

.phone-card {
  width: 100%;
  max-width: 430px;
  background: #040404;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,0.75);
}

.hero {
  position: relative;
  height: 330px;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08), rgba(0,0,0,0.92));
}

.profile {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  text-align: center;
  padding: 0 18px;
}

.profile h1 {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}

.verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #2c8cff;
  font-size: 12px;
}

.handle {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 3px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.icon-btn {
  width: 31px;
  height: 31px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.icon-btn:hover {
  transform: scale(1.09);
}

.icon-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.followers {
  font-size: 12px;
  font-weight: 700;
  margin-top: 10px;
}

.location {
  font-size: 12px;
  margin-top: 8px;
  font-weight: 700;
}

.links {
  padding: 10px;
}

.big-card,
.small-card {
  position: relative;
  display: block;
  border-radius: 13px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  background: #111;
  box-shadow: inset 0 -55px 45px rgba(0,0,0,0.55);
}

.big-card {
  height: 195px;
  margin-bottom: 8px;
}

.grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.small-card {
  height: 122px;
}

.big-card img,
.small-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.big-card::after,
.small-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.78));
}

.big-card strong,
.small-card strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  text-align: center;
  z-index: 2;
  font-size: 16px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

.small-card strong {
  font-size: 14px;
  bottom: 11px;
}

.small-logo {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  overflow: hidden;
}

.small-logo img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-top: 9px;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 9px;
  display: block;
}

footer {
  padding: 0 10px 20px;
  text-align: center;
}

.email {
  display: block;
  background: #151515;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 17px;
}

footer p {
  font-size: 11px;
  opacity: 0.7;
}

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

  .phone-card {
    max-width: 100%;
    min-height: 100vh;
    border-radius: 0;
  }

  .hero {
    height: 325px;
  }
}
