/* NSFW Pics Studio — neon red-light district */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap");

.adult-theme {
  --paper: #0a0308;
  --paper-bright: #14060f;
  --ink: #ffe6f0;
  --ink-soft: #f0b0c8;
  --ink-muted: #c07090;
  --line: rgba(255, 40, 90, 0.35);
  --night: #050208;
  --neon: #ff1a5c;
  --neon-hot: #ff4d8d;
  --neon-cyan: #39f3ff;
  --neon-amber: #ffb703;
  --glow: 0 0 18px rgba(255, 26, 92, 0.55), 0 0 46px rgba(255, 26, 92, 0.28);
  --glow-cyan: 0 0 18px rgba(57, 243, 255, 0.45);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

.adult-theme body {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 10% 0%, rgba(255, 26, 92, 0.18), transparent 42%),
    radial-gradient(ellipse at 90% 20%, rgba(57, 243, 255, 0.08), transparent 36%),
    radial-gradient(ellipse at 50% 100%, rgba(120, 0, 40, 0.35), transparent 50%),
    linear-gradient(180deg, #12040c 0%, #080206 45%, #050104 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.adult-theme::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 400;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.25;
  mix-blend-mode: soft-light;
}

.adult-theme h1,
.adult-theme h2,
.adult-theme h3 {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: var(--glow);
}

.adult-theme .button,
.adult-theme .button-light {
  border: 1px solid var(--neon);
  background: linear-gradient(180deg, #ff2f6d, #c4003d);
  color: #fff;
  box-shadow: var(--glow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.adult-theme .button:hover,
.adult-theme .button-light:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 28px rgba(255, 26, 92, 0.75);
}
.adult-theme .button-outline-light,
.adult-theme .button-ghost {
  border: 1px solid rgba(57, 243, 255, 0.55);
  color: var(--neon-cyan);
  background: transparent;
  box-shadow: var(--glow-cyan);
}

.adult-header {
  border-bottom: 1px solid rgba(255, 26, 92, 0.35);
  background: rgba(8, 2, 6, 0.82);
  backdrop-filter: blur(16px);
}
.adult-header .brand {
  color: #fff;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-shadow: var(--glow);
}
.adult-header .brand img,
.adult-theme .age-gate-panel img {
  filter: drop-shadow(0 0 10px rgba(255, 31, 107, 0.55));
}
.adult-header .brand em {
  color: var(--neon-cyan);
  font-style: normal;
  text-shadow: var(--glow-cyan);
}
.adult-nav a:not(.button) {
  color: #ffc0d4 !important;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.age-gate {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 26, 92, 0.25), transparent 50%),
    rgba(4, 0, 3, 0.92);
}
.age-gate-panel,
.age-gate-card {
  border: 1px solid var(--neon);
  background: linear-gradient(160deg, #1a0610, #0a0206);
  box-shadow: var(--glow);
  border-radius: 8px;
  text-align: center;
  padding: 36px 28px;
  width: min(100%, 520px);
}
.age-gate-panel h2,
.age-gate-card h2 {
  font-size: clamp(40px, 8vw, 64px);
  margin: 12px 0;
}
.age-gate-panel p,
.age-gate-card p {
  color: #ffb6cc;
}

.adult-visual-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 90px;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 26, 92, 0.35), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(57, 243, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #1a0510 0%, #0b0208 55%, #18040f 100%);
}
.adult-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.65;
  animation: neon-breathe 5s ease-in-out infinite;
}
.adult-glow-one {
  width: 340px;
  height: 340px;
  left: -60px;
  top: 40px;
  background: #ff134f;
}
.adult-glow-two {
  width: 280px;
  height: 280px;
  right: 8%;
  bottom: 10%;
  background: #39f3ff;
  animation-delay: -2s;
}
@keyframes neon-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.adult-kicker {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--neon);
  color: var(--neon-hot);
  box-shadow: var(--glow);
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  animation: neon-flicker 3.8s infinite;
}
@keyframes neon-flicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    opacity: 1;
  }
  20%,
  24%,
  55% {
    opacity: 0.45;
  }
}

.adult-hero-copy h1 {
  font-size: clamp(52px, 9vw, 92px);
  line-height: 0.92;
  margin: 18px 0 16px;
}
.adult-hero-copy p {
  color: #ffc3d6;
  font-size: 17px;
  max-width: 38ch;
}
.adult-hero-meta span {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 700;
}

.adult-hero-gallery figure,
.adult-more-grid figure,
.adult-api-image {
  border: 1px solid rgba(255, 26, 92, 0.55);
  box-shadow: var(--glow);
  border-radius: 6px;
  position: relative;
}
.adult-hero-gallery figure::after,
.adult-more-grid figure::after {
  content: "NSFW";
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 8px;
  background: #ff1a5c;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: var(--glow);
}

.adult-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(255, 26, 92, 0.45);
  background: #120208;
  padding: 10px 0;
}
.adult-marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--neon-hot);
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  font-size: 22px;
  text-transform: uppercase;
  text-shadow: var(--glow);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.adult-section {
  padding: 90px 0;
  position: relative;
}
.adult-section h2 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
}
.adult-heading span {
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 800;
}
.adult-heading p {
  color: #ffb7cd;
}

.adult-product-grid article {
  border: 1px solid rgba(255, 26, 92, 0.4);
  background: linear-gradient(160deg, rgba(255, 26, 92, 0.12), rgba(10, 2, 6, 0.9));
  box-shadow: inset 0 0 30px rgba(255, 26, 92, 0.08);
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.adult-product-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow);
}
.adult-product-grid i {
  color: var(--neon);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: normal;
  text-shadow: var(--glow);
}

.adult-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.adult-more-grid img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.adult-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}
.adult-social-card {
  display: block;
  padding: 22px;
  min-height: 160px;
  border: 1px solid rgba(57, 243, 255, 0.35);
  border-radius: 8px;
  background: rgba(8, 2, 10, 0.85);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--glow-cyan);
  transition: transform 0.2s ease, border-color 0.2s;
}
.adult-social-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: var(--neon);
  box-shadow: var(--glow);
}
.adult-social-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.06em;
  margin: 18px 0 8px;
}
.adult-social-card span {
  color: #ffb7cd;
  font-size: 13px;
}

.adult-api-code {
  border: 1px solid rgba(57, 243, 255, 0.4);
  box-shadow: var(--glow-cyan);
  border-radius: 8px;
}
.adult-restriction-card {
  border: 1px solid rgba(255, 183, 3, 0.45);
  box-shadow: 0 0 24px rgba(255, 183, 3, 0.25);
  background: #12080a;
}
.adult-cta {
  padding: 80px 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 26, 92, 0.3), transparent 55%),
    #0a0206;
  border-top: 1px solid rgba(255, 26, 92, 0.5);
}
.adult-cta h2 {
  font-size: clamp(42px, 7vw, 76px);
}
.adult-footer {
  background: #050104;
  border-top: 1px solid rgba(255, 26, 92, 0.3);
}
.adult-footer a {
  color: #ff8eb0;
}

.adult-page-hero {
  padding: 80px 0 50px;
}
.adult-page-hero h1 {
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.92;
}
.adult-page-body {
  max-width: 720px;
  color: #ffc7d9;
  font-size: 17px;
  line-height: 1.7;
}
.adult-page-body a {
  color: var(--neon-cyan);
}

@media (max-width: 900px) {
  .adult-more-grid,
  .adult-social-grid {
    grid-template-columns: 1fr;
  }
  .adult-more-grid img {
    height: 480px;
  }
}

/* Adult signup — kill SFW light hero bg so copy stays readable */
.adult-theme .page-hero,
.adult-theme .contact-hero,
.adult-theme .visual-contact-hero,
.adult-theme .signup-hero-adult {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 26, 92, 0.28), transparent 34%),
    radial-gradient(circle at 88% 0%, rgba(57, 243, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #14060f 0%, #0a0308 55%, #050104 100%) !important;
  border-bottom: 1px solid rgba(255, 26, 92, 0.35) !important;
  color: #fff4f8;
}
.adult-theme .signup-hero-adult .hero-lede,
.adult-theme .signup-intro .hero-lede,
.adult-theme .page-hero .hero-lede {
  color: #ffe3ee !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  max-width: 46ch;
}
.adult-theme .signup-hero-adult .eyebrow,
.adult-theme .signup-intro .eyebrow {
  color: #ff8eb0;
}
.adult-theme .signup-hero-adult h1,
.adult-theme .signup-intro h1 {
  color: #fff !important;
}
.adult-theme .signup-hero-adult h1 em,
.adult-theme .signup-intro h1 em {
  color: #ff4d8d !important;
  text-shadow: var(--glow);
  font-style: normal;
}
.adult-theme .hero-orb {
  opacity: 0.2;
  filter: hue-rotate(280deg);
}

/* Adult signup packages */
.signup-hero-adult {
  padding-bottom: 40px !important;
}
.signup-adult-wrap {
  display: grid;
  gap: 42px;
}
.signup-intro h1 {
  max-width: 16ch;
}
.signup-promise {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.signup-promise li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 26, 92, 0.35);
  border-radius: 12px;
  background: rgba(20, 4, 12, 0.65);
  color: #ffc7d9;
  font-size: 14px;
  line-height: 1.55;
}
.signup-promise strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.signup-promise code {
  color: var(--neon-cyan);
  font-size: 12px;
}
.signup-intro-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.signup-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.signup-plan-pics {
  margin: 6px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.signup-plan-pics span {
  display: block;
  margin-top: 2px;
  color: #ff9fba;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.signup-plan-pics-alt {
  margin: 0;
  color: #ffc0d4;
  font-size: 13px;
  line-height: 1.35;
}
.account-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
  margin-top: 12px;
}
.account-library-item {
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: #ffd0e0;
}
.account-library-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 26, 92, 0.35);
  background: #12060b;
}
.signup-plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 100%;
  padding: 22px 20px 18px;
  border: 1px solid rgba(255, 26, 92, 0.35);
  border-radius: 16px;
  background: linear-gradient(165deg, #1a0610, #0a0206);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.signup-plan-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.signup-plan-card:hover,
.signup-plan-card.is-selected {
  border-color: #ff1f6b;
  box-shadow: 0 0 28px rgba(255, 31, 107, 0.28);
  transform: translateY(-2px);
}
.signup-plan-card.is-featured {
  border-color: rgba(255, 140, 180, 0.65);
}
.signup-plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #ff1f6b;
  color: #12060b;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.signup-plan-card > small {
  color: #ff8eb0;
  font-size: 10px;
  font-weight: 820;
  letter-spacing: 0.14em;
}
.signup-plan-price {
  display: block;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.04em;
}
.signup-plan-price span {
  font-size: 16px;
  color: #ffb0c8;
  font-weight: 600;
}
.signup-plan-tagline {
  margin: 4px 0 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}
.signup-plan-blurb {
  margin: 0;
  color: #ffc0d4;
  font-size: 13px;
  line-height: 1.5;
}
.signup-plan-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
  flex: 1;
}
.signup-plan-list li {
  position: relative;
  padding-left: 18px;
  color: #ffd0e0;
  font-size: 12px;
  line-height: 1.4;
}
.signup-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff1f6b;
  box-shadow: 0 0 8px rgba(255, 31, 107, 0.7);
}
.signup-plan-pick {
  display: block;
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: #ffe5ed;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.04em;
}
.signup-plan-card.is-selected .signup-plan-pick {
  background: #ff1f6b;
  border-color: #ff1f6b;
  color: #12060b;
}
.signup-checkout-panel {
  margin-top: 22px;
  padding: 28px;
  border: 1px solid rgba(255, 26, 92, 0.4);
  border-radius: 18px;
  background: rgba(12, 2, 8, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.signup-faq-band {
  padding: 70px 0 90px;
  background: #0a0206;
  border-top: 1px solid rgba(255, 26, 92, 0.25);
}
.signup-faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}
.signup-faq-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #14030c;
}
.signup-faq-grid h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.signup-faq-grid p {
  margin: 0;
  color: #ffc0d4;
  font-size: 13px;
  line-height: 1.55;
}
.signup-bottom-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 26, 92, 0.4);
  background: linear-gradient(90deg, rgba(255, 31, 107, 0.18), rgba(0, 0, 0, 0.2));
}
.signup-bottom-cta p {
  margin: 0;
  max-width: 52ch;
  color: #ffe0ea;
  font-size: 15px;
}

@media (max-width: 1200px) {
  .signup-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .signup-faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .signup-plan-grid,
  .signup-faq-grid {
    grid-template-columns: 1fr;
  }
}
