* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #18202b;
  background: #f5f6fa;
}

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

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  font-weight: 850;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 550;
}

nav a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

nav a:hover {
  color: #4f46e5;
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 90px 5vw;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(147, 197, 253, 0.55), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.18), transparent 35%),
    linear-gradient(135deg, #0f172a, #1e293b 55%, #334155);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 45%,
    transparent 70%
  );
  pointer-events: none;
}

.hero > div {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 800;
  opacity: 0.78;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 18px 0 24px;
  background: linear-gradient(135deg, #ffffff 15%, #c7d2fe 55%, #a5b4fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 32px;
  color: #dbe4f0;
  line-height: 1.7;
}

.button {
  display: inline-block;
  padding: 14px 23px;
  border-radius: 12px;
  background: white;
  color: #111827;
  font-weight: 750;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

/* =========================
   SECTIONS
========================= */

.section {
  max-width: 1240px;
  margin: auto;
  padding: 76px 5vw;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  font-size: 2.35rem;
  letter-spacing: -0.035em;
  margin: 5px 0 0;
}

.search {
  width: min(360px, 100%);
  padding: 14px 17px;
  border: 1px solid #d9dce4;
  border-radius: 12px;
  font-size: 1rem;
  background: white;
  outline: none;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* =========================
   GALLERY
========================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.media-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.065);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.media-card:hover {
  transform: translateY(-7px);
  border-color: rgba(99, 102, 241, 0.18);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.media {
  aspect-ratio: 16 / 11;
  background: #111827;
  overflow: hidden;
  position: relative;
}

.media img,
.media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.media-card:hover .media img,
.media-card:hover .media video {
  transform: scale(1.035);
}

.media-body {
  padding: 17px 18px 20px;
}

.media-body h3 {
  margin: 8px 0 6px;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 750;
}

.media-body p {
  margin: 0;
  color: #667085;
  line-height: 1.45;
  font-size: 0.88rem;
}

@media (max-width: 600px) {
  .media-body {
    padding: 14px 12px 17px;
  }

  .media-body h3 {
    margin: 7px 0 5px;
    font-size: 0.96rem;
    line-height: 1.25;
  }

  .media-body p {
    font-size: 0.78rem;
    line-height: 1.4;
  }
}

.tag {
  display: inline-block;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.73rem;
  font-weight: 750;
}

/* =========================
   ADVERTISEMENT
========================= */

.ad-slot {
  max-width: 1200px;
  min-height: 90px;
  margin: 28px auto 0;
  display: grid;
  place-items: center;
  color: #98a2b3;
  border: 1px dashed #cfd4dc;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
}

/* =========================
   ABOUT
========================= */

.about {
  max-width: 920px;
}

.about p {
  color: #667085;
  line-height: 1.75;
}

.notice {
  padding: 17px;
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  border-radius: 9px;
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 5vw;
  border-top: 1px solid #e5e7eb;
  background: white;
  color: #667085;
}

/* =========================
   EMPTY STATE
========================= */

.empty {
  text-align: center;
  color: #667085;
  padding: 60px 20px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    font-size: clamp(2.8rem, 8vw, 5rem);
  }
}

@media (max-width: 800px) {
  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .search {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 5vw;
  }

  nav {
    gap: 13px;
    font-size: 0.88rem;
  }

  .hero {
    min-height: 480px;
    padding: 70px 5vw;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    padding: 55px 5vw;
  }

  .section h2 {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .footer {
    flex-direction: column;
  }
}
/* =========================
   FEATURED ACTRESSES
========================= */

.actress-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.actress-card {
  display: block;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.065);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.actress-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13);
}

.actress-card-avatar {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, #818cf8, transparent 38%),
    linear-gradient(135deg, #111827, #3730a3);
  color: white;
}

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

.actress-card-avatar span {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 2.4rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.actress-card-body {
  padding: 17px 18px 20px;
}

.actress-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.actress-card-body p {
  margin: 0 0 12px;
  color: #667085;
  font-size: 0.88rem;
  line-height: 1.45;
}

.actress-card-link {
  color: #4f46e5;
  font-size: 0.84rem;
  font-weight: 750;
}

@media (max-width: 1000px) {
  .actress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .actress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .actress-card-body {
    padding: 13px 12px 16px;
  }

  .actress-card-body h3 {
    font-size: 0.95rem;
  }

  .actress-card-body p {
    font-size: 0.76rem;
  }

  .actress-card-link {
    font-size: 0.75rem;
  }

  .actress-card-avatar span {
    width: 68px;
    height: 68px;
    font-size: 1.8rem;
  }
}

/* =========================
   HOMEPAGE POLISH
========================= */

@media (max-width: 560px) {
  .site-header {
    padding: 13px 4vw;
  }

  .brand {
    font-size: 1.12rem;
  }

  nav {
    gap: 10px;
    font-size: 0.82rem;
  }

  .hero {
    min-height: 500px;
    margin: 16px 3vw 18px;
    border-radius: 22px;
    padding: 58px 6vw;
  }

  .hero h1 {
    margin-top: 14px;
    margin-bottom: 18px;
  }

  .hero-copy {
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .button {
    padding: 13px 19px;
    border-radius: 11px;
  }

  .ad-slot {
    margin: 18px 4vw 0;
    min-height: 70px;
  }
}

/* =========================
   FEATURED ACTRESSES POLISH
========================= */

.actress-card {
  -webkit-tap-highlight-color: transparent;
}

.actress-card-avatar {
  position: relative;
  background-color: #111827;
}

.actress-card-avatar img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.actress-card:hover .actress-card-avatar img {
  transform: scale(1.035);
  filter: brightness(1.03);
}

.actress-card-body {
  min-width: 0;
}

.actress-card-body h3 {
  overflow-wrap: anywhere;
}

@media (max-width: 560px) {
  .actress-card {
    border-radius: 16px;
  }

  .actress-card-avatar {
    aspect-ratio: 1 / 1.08;
  }

  .actress-card-body {
    min-height: 104px;
    display: flex;
    flex-direction: column;
  }

  .actress-card-body p {
    margin-bottom: 9px;
  }

  .actress-card-link {
    margin-top: auto;
    display: inline-block;
    padding-top: 3px;
  }
}

/* =========================
   FEATURED TEXT READABILITY
========================= */

@media (max-width: 560px) {
  .actress-card-body h3 {
    font-size: 0.98rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .actress-card-body p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .actress-card-link {
    font-size: 0.78rem;
    font-weight: 800;
  }
}
