:root {
  --primary: #a80294;
  --secondary: #fb37d5;
  --bg: #19181b;
  --bg-alt: #131216;
  --text: #f2f0f5;
  --text-muted: #b8b3c2;
  --accent-gradient: linear-gradient(90deg, #a80294 0%, #e00170 100%);
  --btn-gradient: linear-gradient(90deg, #fb37d5 0%, #a80294 100%);
  --card-bg: #1d1b29;
  --yellow: #ffd123;
  --green: #06c36a;
  --green-btn: #5ebb3c;
  --border-radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

h1, h2, h3 { font-weight: 800; line-height: 1.2; }

.section-title {
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-style: italic;
  text-align: center;
  margin-bottom: 14px;
}

.section-title .live-dot {
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 6px;
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(6, 195, 106, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(6, 195, 106, 0); }
}

.section-sub {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--btn-gradient);
  color: #fff;
  box-shadow: 0 6px 22px rgba(251, 55, 213, 0.35);
}

.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 10px 30px rgba(251, 55, 213, 0.5); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-3px); }

.btn-lg { padding: 16px 44px; font-size: 1.1rem; }

.text-green { color: var(--green); }

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled { box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 24px;
}

.logo img { height: 31px; width: auto; }

.nav-links { display: flex; gap: 26px; }

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  opacity: 0.92;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 1; text-decoration: underline; }

.nav-cta { padding: 9px 26px; }

.hero {
  background: var(--accent-gradient);
  text-align: center;
  padding: 96px 24px 84px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,0,0,0.35), transparent 60%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; }

.badge-18 {
  display: inline-block;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  opacity: 0.9;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-style: italic;
  font-weight: 900;
  margin-bottom: 18px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.3);
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 34px;
  opacity: 0.95;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 46px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 54px;
  flex-wrap: wrap;
}

.stat strong { display: block; font-size: 1.5rem; font-weight: 900; color: var(--yellow); }
.stat span { font-size: 0.9rem; opacity: 0.9; }

.welcome-offer { padding: 70px 24px 10px; }

.offer-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 2px dashed var(--secondary);
  border-radius: var(--border-radius);
  text-align: center;
  padding: 44px 34px;
  box-shadow: var(--shadow);
}

.offer-label {
  display: inline-block;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: var(--secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.offer-card h2 { font-size: 1.9rem; font-style: italic; margin-bottom: 14px; }
.offer-card p { color: var(--text-muted); max-width: 620px; margin: 0 auto 26px; }

.models-section { padding: 74px 24px 10px; max-width: 1240px; margin: 0 auto; }

.models-grid { display: grid; gap: 18px; }

.grid-female { grid-template-columns: repeat(4, 1fr); }
.grid-couple { grid-template-columns: repeat(4, 1fr); }
.grid-trans { grid-template-columns: repeat(3, 1fr); }

.model-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, outline 0.28s ease;
  outline: 2px solid transparent;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(168, 2, 148, 0.35);
  outline: 2px solid var(--secondary);
}

.model-media { position: relative; aspect-ratio: 16 / 9; background: #0d0c10; }

.model-media img { width: 100%; height: 100%; object-fit: cover; }

.tag-free, .tag-new, .tag-private {
  position: absolute;
  top: 10px;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: 0.4px;
}

.tag-free { right: 10px; background: var(--green); color: #fff; }
.tag-new { right: 66px; background: var(--yellow); color: #19181b; }
.tag-private { right: 10px; background: var(--yellow); color: #19181b; }

.model-info { padding: 13px 15px 15px; }

.model-name {
  display: block;
  color: var(--yellow);
  font-weight: 800;
  font-size: 1.02rem;
  font-style: italic;
}

.model-bio { display: block; color: var(--text-muted); font-size: 0.85rem; margin-top: 2px; }

.features-section { padding: 84px 24px 10px; max-width: 1240px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px 26px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-icon svg { width: 26px; height: 26px; stroke: #fff; }

.feature-card h3 { font-size: 1.12rem; margin-bottom: 9px; }
.feature-card p { color: var(--text-muted); font-size: 0.94rem; }

.gallery-section { padding: 84px 24px 10px; max-width: 1140px; margin: 0 auto; }

.gallery-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 38px;
  align-items: center;
  margin-bottom: 58px;
}

.gallery-row.reverse .gallery-img { order: 2; }

.gallery-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease;
  width: 100%;
}

.gallery-img img:hover { transform: scale(1.02); }

.gallery-text h3 { font-size: 1.35rem; font-style: italic; color: var(--yellow); margin-bottom: 12px; }
.gallery-text p { color: var(--text-muted); }

.pricing-section { padding: 84px 24px 10px; max-width: 1240px; margin: 0 auto; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.price-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 30px 20px 26px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.price-card.popular {
  border-color: var(--secondary);
  background: linear-gradient(180deg, rgba(168, 2, 148, 0.28), var(--card-bg) 55%);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--btn-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
}

.price-credits { font-size: 1.9rem; font-weight: 900; color: var(--yellow); }
.price-credits span { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.price-bonus { color: var(--green); font-weight: 800; font-size: 0.92rem; }
.price-time { color: var(--text-muted); font-size: 0.85rem; }
.price-rate { color: var(--text-muted); font-size: 0.8rem; }
.price-value { font-size: 1.35rem; font-weight: 900; margin: 4px 0 12px; }
.price-value span { font-size: 0.85rem; color: var(--green); font-weight: 800; }
.price-card .btn { padding: 10px 20px; font-size: 0.9rem; margin-top: auto; }

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 26px;
}

.faq-section { padding: 84px 24px 10px; max-width: 860px; margin: 0 auto; }

.faq-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-arrow {
  width: 10px; height: 10px;
  border-right: 2.5px solid var(--secondary);
  border-bottom: 2.5px solid var(--secondary);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(-135deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a p { padding: 0 24px 20px; color: var(--text-muted); }

.final-cta {
  margin: 84px 24px;
  padding: 64px 24px;
  text-align: center;
  background: var(--accent-gradient);
  border-radius: var(--border-radius);
}

.final-cta h2 { font-size: 2rem; font-style: italic; margin-bottom: 12px; }
.final-cta p { max-width: 540px; margin: 0 auto 28px; opacity: 0.95; }

.footer { background: var(--bg-alt); border-top: 1px solid rgba(255, 255, 255, 0.07); }

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 54px 24px 34px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 38px;
}

.footer-about img { margin-bottom: 14px; }
.footer-about p { color: var(--text-muted); font-size: 0.9rem; max-width: 320px; }

.footer-col h4 { font-size: 0.95rem; margin-bottom: 14px; color: var(--yellow); font-style: italic; }

.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 9px;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.78rem; max-width: 900px; margin: 0 auto; }

.fade-section { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-section.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  .grid-female { grid-template-columns: repeat(3, 1fr); }
  .grid-couple { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .grid-female, .grid-trans { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 44px; }
  .gallery-row.reverse .gallery-img { order: 0; }
  .hero-stats { gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .hero { padding: 70px 20px 60px; }
}

@media (max-width: 460px) {
  .grid-female, .grid-couple, .grid-trans { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}
