*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --page-bg: #eceef5;
  --feed-bg: #000;
  --text: #ffffff;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--page-bg);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 0;
}

body::before {
  content: "";
  position: fixed;
  inset: -24px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("img/mainhero.webp") center top / cover no-repeat;
  filter: blur(36px) saturate(1.08);
  transform: scale(1.08);
  opacity: 0.9;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(235, 237, 244, 0.58);
  backdrop-filter: blur(8px);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.lp-shell {
  width: min(430px, calc(100% - 24px));
  margin: 0 auto;
  min-height: calc(100dvh - 36px);
  background: var(--feed-bg);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  border-radius: 24px;
}

.profile-card {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: 430px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center top;
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.98) 100%);
}

.profile-copy {
  margin-top: -72px;
  padding: 0 22px 22px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.profile-copy h1 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-weight: 900;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.65);
}

.verified-badge {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c47ff, #8d57ff);
  color: #fff;
  font-size: 0.98rem;
  box-shadow: 0 8px 18px rgba(108, 71, 255, 0.45);
}

.status-row {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.status-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #26d764;
  box-shadow: 0 0 0 4px rgba(38, 215, 100, 0.18);
}

.status-separator {
  opacity: 0.8;
}

.city-placeholder {
  opacity: 0.9;
}

.followers-row {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
}

.followers-chevron {
  font-size: 1.3rem;
  line-height: 1;
}

.feed-cta {
  width: 100%;
  margin: 16px auto 0;
  min-height: 64px;
  padding: 10px 18px;
  border-radius: 18px;
  background: #ffffff;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  color: #202020;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
}

.feed-cta:hover {
  background: #f7f7f7;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.feed-cta:active {
  transform: translateY(0);
  background: #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.feed-cta:focus-visible {
  outline: 3px solid #1a8fe3;
  outline-offset: 3px;
}

.feed-cta-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
}

.feed-cta-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-cta-label {
  flex: 1;
  text-align: center;
  padding-right: 42px;
}

.content-feed {
  padding: 20px 18px 24px;
}

.content-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  min-height: 220px;
  width: min(100%, 390px);
  margin: 0 auto;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.content-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center;
}

.content-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 28%, rgba(0, 0, 0, 0.78) 100%);
  color: #fff;
  text-align: left;
  opacity: 0.96;
  transition: opacity 0.2s ease, background-color 0.2s ease;
  flex-direction: column;
}

.content-card:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.content-card:hover .content-overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 10%, rgba(0, 0, 0, 0.8) 100%);
}

.content-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  font-size: clamp(1.45rem, 5vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.75);
}

.content-overlay {
  pointer-events: none;
}

.spacer {
  height: 160px;
}

@media (max-width: 920px) {
  .lp-shell {
    width: min(430px, calc(100% - 18px));
  }

  .hero-media,
  .hero-media img {
    min-height: 430px;
  }

  .content-feed {
    padding-top: 16px;
  }

  .spacer {
    height: 140px;
  }
}

@media (max-width: 560px) {
  body {
    align-items: stretch;
    padding: 0;
  }

  .lp-shell {
    width: 100%;
    min-height: 100dvh;
    box-shadow: none;
    border-radius: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 500px;
  }

  .profile-copy {
    margin-top: -70px;
    padding: 0 14px 18px;
  }

  .profile-copy h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .status-row {
    font-size: 0.9rem;
  }

  .social-row {
    margin-top: 18px;
    gap: 18px;
    font-size: 1.35rem;
  }

  .followers-count {
    font-size: 1.02rem;
  }

  .content-feed {
    padding: 20px 12px 18px;
  }

  .content-card,
  .content-card img {
    min-height: 220px;
  }

  .content-card {
    border-radius: 26px;
  }

  .content-overlay {
    padding: 16px;
  }

  .feed-cta {
    min-height: 58px;
    font-size: 0.94rem;
    border-radius: 16px;
  }

  .feed-cta-icon {
    width: 38px;
    height: 38px;
  }

  .feed-cta-label {
    padding-right: 38px;
  }

  .spacer {
    height: 130px;
  }

  .feed-cta {
    min-height: 54px;
    font-size: 0.9rem;
  }
}