/* ===========================================
   DATING LANDING NL — style.css v2
   Design: Premium Glassmorphism (Tinder/Badoo stijl)
   Font: Poppins (Google Fonts)
   =========================================== */

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

:root {
  --pink:      #e91e8c;
  --purple:    #7c3aed;
  --orange:    #ff5e00;
  --green:     #22c55e;
  --gold:      #fbbf24;
  --dark:      #070710;
  --dark2:     #0e0e1a;
  --glass-bg:  rgba(255, 255, 255, 0.05);
  --glass-bd:  rgba(255, 255, 255, 0.10);
  --grad:      linear-gradient(135deg, var(--pink), var(--orange));
  --grad-cool: linear-gradient(135deg, var(--purple), var(--pink));
  --text:      #f0f0f5;
  --muted:     #8888aa;
  --radius:    20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--dark);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ACHTERGROND ORBS ===== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 { width: 500px; height: 500px; background: rgba(233,30,140,0.18); top: -120px; left: -100px; }
.orb-2 { width: 600px; height: 600px; background: rgba(124,58,237,0.14); top: 50px;   right: -200px; }
.orb-3 { width: 300px; height: 300px; background: rgba(255,94,0,0.10);   bottom: -80px; left: 40%; }

/* ===== GLASSMORPHISM HELPER ===== */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-bd);
  border-radius: var(--radius);
}

/* ===== GRADIENTEKST ===== */
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== LIVE STIP ===== */
.live-dot {
  display: inline-block;
  width: 9px; height: 9px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
  vertical-align: middle;
  margin-right: 2px;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(233,30,140,0.3);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}
.urgency-bar strong { color: var(--pink); }

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 70px;
  background: radial-gradient(ellipse at 30% 0%, rgba(233,30,140,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 40%, rgba(124,58,237,0.10) 0%, transparent 60%),
              var(--dark2);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

/* Hero tekst */
.hero-text { max-width: 580px; }

.badge-pill {
  display: inline-block;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.35);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: clamp(26px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title-sub {
  display: block;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 6px;
}

.hero-desc {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 28px;
}
.hero-desc strong, .hero-desc em { color: var(--text); font-style: normal; }

/* Stats chips */
.hero-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 13px;
  color: #ccc;
}
.stat-chip strong { color: var(--text); }
.stat-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stat-dot.green  { background: var(--green); }
.stat-dot.orange { background: var(--orange); }
.stat-dot.pink   { background: var(--pink); }

/* Hero CTA knop */
.btn-cta-hero {
  display: inline-block;
  background: var(--grad);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 30px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 30px rgba(233,30,140,0.35);
}
.btn-cta-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(233,30,140,0.6);
}

/* ===== HERO KAART — meisje van de dag ===== */
.hero-card {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-card-photo {
  position: relative;
  width: 100%;
  padding-top: 133%; /* 3:4 verhouding */
  overflow: hidden;
  background: linear-gradient(135deg, #1a0a2e, #2d1a4a);
}

.hero-card-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.hero-card:hover .hero-card-photo img { transform: scale(1.04); }

/* Fallback als foto ontbreekt */
.hero-card-photo.no-photo::after {
  content: '👩';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  filter: blur(2px);
}

.hero-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 80%);
  padding: 20px 16px 14px;
}

.profile-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.profile-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.online-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.2);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
}

.profile-distance { font-size: 12px; color: #aaa; margin-bottom: 10px; }

/* Typing indicator */
.typing-bubble {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: 12px;
  color: #ccc;
}
.typing-bubble span {
  width: 6px; height: 6px;
  background: #aaa;
  border-radius: 50%;
  animation: typing-bounce 1.2s infinite;
}
.typing-bubble span:nth-child(2) { animation-delay: 0.2s; }
.typing-bubble span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-5px); }
}

/* Hero card footer */
.hero-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.card-footer-text { font-size: 13px; color: #bbb; }
.card-footer-actions { display: flex; gap: 10px; }
.card-btn {
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: transform 0.2s;
}
.card-btn.skip { background: rgba(255,255,255,0.08); color: #888; }
.card-btn.like { background: var(--grad); color: #fff; box-shadow: 0 0 16px rgba(233,30,140,0.5); }
.card-btn:hover { transform: scale(1.15); }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 36px; }
.section-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.title-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 99px;
}
.section-sub { font-size: 15px; color: var(--muted); }

/* ===== FOTO GRID — "In jouw buurt" ===== */
.nearby-section {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.photo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 16px;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(233,30,140,0.25);
}

.photo-card-img {
  position: relative;
  padding-top: 130%;
  background: linear-gradient(135deg, #1a0a2e, #2a1545);
  overflow: hidden;
}

.photo-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.photo-card:hover .photo-card-img img { transform: scale(1.06); }

.photo-card-img.no-photo::after {
  content: '👩';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  filter: blur(2px);
}

.photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 55%);
}

.photo-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 12px 8px;
}
.photo-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.photo-name { font-size: 15px; font-weight: 700; color: #fff; }
.online-dot-wrap { display: flex; align-items: center; }
.photo-dist { font-size: 11px; color: rgba(255,255,255,0.65); }

.photo-card-msg {
  padding: 8px 12px;
  font-size: 12px;
  color: #bbb;
  font-style: italic;
}

.grid-more-hint {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}
.inline-link { color: var(--pink); text-decoration: none; font-weight: 600; }
.inline-link:hover { text-decoration: underline; }

/* ===== QUIZ SECTIE ===== */
.quiz-section {
  max-width: 640px;
  margin: 60px auto;
  padding: 0 20px;
}

.quiz-wrapper {
  padding: 36px 30px;
}

/* Quiz stap transities */
.quiz-step {
  display: none;
}
.quiz-step.active {
  display: block;
  animation: stepIn 0.4s cubic-bezier(0.22, 0.8, 0.36, 1) both;
}
.quiz-step.leaving {
  display: block;
  animation: stepOut 0.28s ease forwards;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes stepOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-12px); }
}

/* Step header */
.step-header { margin-bottom: 24px; }
.step-progress {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 8px;
}
.progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 99px;
  transition: width 0.5s ease;
}
.step-label { font-size: 12px; color: var(--muted); font-weight: 500; }

.step-icon { font-size: 46px; margin-bottom: 10px; text-align: center; }
.step-title {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 24px;
}
.step-desc em { color: var(--text); font-style: normal; font-weight: 600; }

/* Quiz knoppen */
.btn-row {
  display: flex;
  gap: 12px;
}
.btn-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-btn {
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 20px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}
.quiz-btn:hover { transform: translateY(-2px); }
.quiz-btn:active { transform: translateY(0); }

.quiz-btn--yes {
  flex: 1;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(233,30,140,0.35);
}
.quiz-btn--yes:hover { box-shadow: 0 8px 30px rgba(233,30,140,0.55); }

.quiz-btn--no {
  background: rgba(255,255,255,0.06);
  color: #666;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 14px;
}

.quiz-btn--choice {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.09);
  text-align: left;
}
.quiz-btn--choice:hover {
  background: rgba(233,30,140,0.12);
  border-color: rgba(233,30,140,0.35);
  color: #fff;
}

/* ===== LOADING ===== */
#stap-loading { text-align: center; padding: 20px 0; }
.loading-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; }

.spinner {
  width: 60px; height: 60px;
  border: 5px solid rgba(255,255,255,0.08);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.loading-title { font-size: 22px; font-weight: 700; color: var(--gold); }
.loading-sub   { font-size: 14px; color: var(--muted); }

.loading-list {
  list-style: none;
  text-align: left;
  font-size: 14px;
  color: #888;
  line-height: 2.2;
  min-height: 80px;
}

/* ===== RESULTAAT ===== */
#stap-result { text-align: center; }

.result-tag {
  display: inline-block;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}

.result-title {
  font-size: clamp(20px, 3.5vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.result-title span:first-child {
  font-size: clamp(36px, 6vw, 52px);
  display: block;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.result-desc { font-size: 15px; color: var(--muted); margin-bottom: 24px; }

/* Thumbnails */
.result-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.r-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.r-thumb img {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--pink);
  filter: blur(1px);
  transition: filter 0.3s;
}
.r-thumb:hover img { filter: blur(0); }
.r-thumb.no-photo img { display: none; }
.r-thumb span { font-size: 11px; color: var(--muted); }

.r-thumb--more {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(233,30,140,0.2);
  border: 2px dashed rgba(233,30,140,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--pink);
  flex-shrink: 0;
}

/* HOOFD CTA KNOP */
.cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad);
  color: #fff;
  text-decoration: none;
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 800;
  letter-spacing: 0.4px;
  padding: 20px 28px;
  border-radius: 14px;
  margin-bottom: 20px;
  animation: cta-glow 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(233,30,140,0.45);
  transition: transform 0.2s;
  text-transform: uppercase;
}
.cta-main:hover {
  animation: none;
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(233,30,140,0.8);
}

@keyframes cta-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(233,30,140,0.45); transform: scale(1); }
  50%       { box-shadow: 0 0 55px rgba(233,30,140,0.75); transform: scale(1.025); }
}

.cta-icon { font-size: 22px; }

/* Schaarste box */
.scarcity-box {
  padding: 14px 18px;
  font-size: 14px;
  color: #ccc;
  line-height: 1.9;
  text-align: left;
  border-color: rgba(233,30,140,0.25) !important;
}
.scarcity-box strong { color: var(--pink); }
.countdown-line { color: var(--gold); font-weight: 600; }

/* ===== SOCIAL PROOF ===== */
.social-proof {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.comment-card {
  padding: 22px 20px;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.c-avatar {
  width: 42px; height: 42px;
  min-width: 42px;
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comment-header > div:nth-child(2) { flex: 1; }
.comment-header strong { display: block; font-size: 14px; }
.c-time { font-size: 12px; color: var(--muted); }
.c-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }

.comment-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 12px;
}
.c-footer { font-size: 13px; color: #555; }

/* ===== FOOTER ===== */
.site-footer {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 20px;
  color: #444;
  font-size: 13px;
  line-height: 2.2;
}
.site-footer a { color: #555; text-decoration: none; }
.site-footer a:hover { color: #888; }
.footer-tiny { font-size: 11px; color: #333; }

/* ===== RESPONSIEF ===== */
@media (max-width: 900px) {
  .hero-inner      { grid-template-columns: 1fr; justify-items: center; }
  .hero-text       { text-align: center; }
  .hero-stats      { justify-content: center; }
  .hero-card       { width: 260px; }
  .photo-grid      { grid-template-columns: repeat(2, 1fr); }
  .comments-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .photo-grid      { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .quiz-wrapper    { padding: 24px 16px; }
  .btn-row         { flex-direction: column; }
  .result-thumbs   { gap: 6px; }
  .r-thumb img, .r-thumb--more { width: 52px; height: 52px; }
  .hero-card       { width: 220px; }
  .urgency-bar     { font-size: 11px; gap: 4px; }
}

/* ============================================
   MAGICUI — Retro Grid + Shiny Button + Magic Card
   ============================================ */

/* ----- RETRO GRID ----- */
.retro-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.retro-grid::before {
  content: '';
  position: absolute;
  inset: -200% 0 0;
  background-image:
    linear-gradient(rgba(233,30,140,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233,30,140,0.18) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(300px) rotateX(65deg);
  transform-origin: top center;
  animation: retroScroll 12s linear infinite;
}
.retro-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark) 15%, transparent 60%);
}
@keyframes retroScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .retro-grid::before { animation: none; }
}

/* ----- SHINY BUTTON ----- */
.btn-cta-hero,
.cta-main,
.quiz-btn--yes,
.quiz-btn--choice {
  position: relative;
  overflow: hidden;
}
.btn-cta-hero::before,
.cta-main::before,
.quiz-btn--yes::before,
.quiz-btn--choice::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    -75deg,
    transparent 20%,
    rgba(255,255,255,0.45) 50%,
    transparent 80%
  );
  transform: translateX(-150%);
  animation: shinyBtn 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
.quiz-btn--yes::before   { animation-delay: 0.2s; }
.quiz-btn--choice::before { animation-delay: 0.5s; }
.cta-main::before        { animation-delay: 0.8s; }
@keyframes shinyBtn {
  0%        { transform: translateX(-150%); }
  55%, 100% { transform: translateX(150%);  }
}

/* ----- MAGIC CARD (mouse glow) ----- */
.photo-card,
.comment-card,
.quiz-wrapper {
  --mouse-x: 50%;
  --mouse-y: 50%;
}
.photo-card::after,
.comment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    180px circle at var(--mouse-x) var(--mouse-y),
    rgba(158,122,255,0.22),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.photo-card:hover::after,
.comment-card:hover::after { opacity: 1; }

.quiz-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    300px circle at var(--mouse-x) var(--mouse-y),
    rgba(233,30,140,0.10),
    transparent 80%
  );
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  z-index: 1;
}
.quiz-wrapper:hover::after { opacity: 1; }

/* ----- ANIMATED BEAM (quiz result) ----- */
.beam-svg {
  position: absolute;
  pointer-events: none;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: visible;
  z-index: 0;
}


/* ----- QUIZ PROGRESS BAR ----- */
.quiz-progress-bar {
  position: relative;
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 32px;
}
.quiz-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--orange));
  background-size: 200% 100%;
  transition: width 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  animation: progressShimmer 2s linear infinite;
  position: relative;
  z-index: 1;
}
.quiz-progress-glow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 12px 4px rgba(233,30,140,0.8), 0 0 24px 8px rgba(124,58,237,0.4);
  left: 0%;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  margin-left: -8px;
}
@keyframes progressShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* Ukrycie linku — brak href, kursor pozostaje pointer */
[data-aff] { cursor: pointer; }


/* ============================================
   TRUST CHIPS — rzad pod glownym CTA
   ============================================ */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 18px;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #bbb;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px 12px;
  border-radius: 99px;
  letter-spacing: 0.2px;
}

/* ============================================
   MIKROINTERAKCJA QUIZ BTN — scale + ring glow
   ============================================ */
.quiz-btn {
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.quiz-btn:active {
  transform: scale(0.96);
}
.quiz-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(233,30,140,0.4);
}
.quiz-btn.tapped {
  animation: quizTap 0.45s ease-out;
}
@keyframes quizTap {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(233,30,140,0.5); }
  40%  { transform: scale(0.94); box-shadow: 0 0 0 10px rgba(233,30,140,0.25); }
  100% { transform: scale(1);    box-shadow: 0 0 0 20px rgba(233,30,140,0); }
}

/* ============================================
   FAQ — rozwijane <details>
   ============================================ */
.faq-section {
  max-width: 760px;
  margin: 0 auto;
  padding: 70px 20px 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] {
  border-color: rgba(233,30,140,0.35);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(233,30,140,0.15);
  color: var(--pink);
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: rgba(233,30,140,0.3);
}
.faq-a {
  padding: 0 22px 20px;
  color: #bbb;
  font-size: 14px;
  line-height: 1.7;
  animation: faqReveal 0.3s ease-out;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STICKY CTA (tylko mobile <900px)
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 999;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 18px;
  background: var(--grad);
  color: #fff;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(233,30,140,0.45),
              0 0 0 1px rgba(255,255,255,0.08) inset;
  animation: stickyPulse 2.4s infinite ease-in-out;
}
.sticky-cta-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sticky-cta-arrow {
  font-size: 22px;
  line-height: 1;
  transform: translateY(1px);
}
@keyframes stickyPulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(233,30,140,0.45),
                         0 0 0 1px rgba(255,255,255,0.08) inset; }
  50%      { box-shadow: 0 8px 36px rgba(233,30,140,0.7),
                         0 0 0 1px rgba(255,255,255,0.12) inset; }
}
@media (max-width: 900px) {
  .sticky-cta { display: flex; }
  /* zostaw miejsce zeby nie przykrywac footer */
  .site-footer { padding-bottom: 90px; }
}

/* ============================================
   EXIT INTENT MODAL
   ============================================ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(7, 7, 16, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: exitFade 0.25s ease-out;
}
.exit-modal.is-visible {
  display: flex;
}
@keyframes exitFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.exit-modal-inner {
  position: relative;
  max-width: 420px;
  width: 100%;
  padding: 34px 28px 28px;
  text-align: center;
  border-color: rgba(233,30,140,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6),
              0 0 60px rgba(233,30,140,0.25);
  animation: exitPop 0.35s cubic-bezier(.22,1.2,.36,1);
}
@keyframes exitPop {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.exit-close {
  position: absolute;
  top: 10px; right: 12px;
  width: 32px; height: 32px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: #aaa;
  font-size: 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.exit-close:hover { background: rgba(255,255,255,0.14); color: #fff; }
.exit-icon {
  font-size: 44px;
  margin-bottom: 10px;
}
.exit-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.exit-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 22px;
}
.exit-desc strong { color: var(--pink); }
.exit-cta {
  display: inline-block;
  width: 100%;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  margin-bottom: 10px;
  box-shadow: 0 0 30px rgba(233,30,140,0.45);
  transition: transform 0.15s;
}
.exit-cta:hover { transform: translateY(-2px); }
.exit-skip {
  background: none;
  border: none;
  color: #666;
  font-size: 13px;
  cursor: pointer;
  padding: 6px 12px;
  text-decoration: underline;
}
.exit-skip:hover { color: #999; }

/* ============================================
   HERO CARD — mobile fix (punkt 8)
   Na mobile <900px: karta idzie pod tekst i zajmuje wiecej miejsca.
   ============================================ */
@media (max-width: 900px) {
  .hero-card { width: min(320px, 90vw); }
}
@media (max-width: 520px) {
  .hero-card { width: min(300px, 88vw); }
}


/* ============================================
   RUNDA II: autentycznosc + CTA appeal
   ============================================ */

/* ---- Hero card: "Laatst gezien" chip ---- */
.last-seen {
  font-size: 11px;
  color: #aaa;
  margin-bottom: 8px;
}
.last-seen strong {
  color: var(--green);
  font-weight: 600;
}

/* ---- Photo grid: hint "Tik op een profiel" ---- */
.grid-tap-hint {
  text-align: center;
  font-size: 13px;
  color: #888;
  margin-top: 14px;
  letter-spacing: 0.2px;
  animation: hintFloat 2.6s ease-in-out infinite;
}
@keyframes hintFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(-3px); opacity: 1; }
}

/* ---- LIVE FEED (Vandaag nieuw) ---- */
.live-feed-section {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 0 20px;
}
.live-feed {
  padding: 16px 20px;
}
.live-feed-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.live-feed-head strong { color: var(--green); }
.live-feed-counter {
  margin-left: auto;
  color: #888;
  font-size: 12px;
}
.live-feed-counter span { color: var(--text); font-weight: 600; }
.live-feed-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.live-feed-items li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  padding: 8px 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  animation: feedIn 0.5s ease-out;
}
.live-feed-items li strong { color: var(--text); font-weight: 600; }
.live-feed-items li em { color: #888; font-size: 11px; font-style: normal; margin-left: auto; }
@keyframes feedIn {
  from { opacity: 0; transform: translateX(-15px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- CTA microcopy pod glownym przyciskiem ---- */
.cta-microcopy {
  font-size: 12.5px;
  color: #999;
  text-align: center;
  margin: 10px 0 0;
  letter-spacing: 0.3px;
  font-weight: 500;
}

/* ---- CTA wave pulse (zielony ring co 8s) ---- */
#main-cta {
  position: relative;
  z-index: 1;
}
#main-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--green);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  animation: ctaPulseRing 8s infinite ease-out;
}
@keyframes ctaPulseRing {
  0%, 82% { opacity: 0; transform: scale(1); }
  88%     { opacity: 0.7; transform: scale(1.02); }
  100%    { opacity: 0; transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  #main-cta::after { animation: none; }
}

/* ---- Mobile urgency bar — mniej tekstu, mniej rozprasza ---- */
@media (max-width: 520px) {
  .urgency-bar { font-size: 11px; padding: 8px 10px; gap: 3px; }
  /* ukryj "X vrouwen nu online" na malym ekranie */
  .urgency-bar .online-part { display: none; }
}

/* ---- MARQUEE opinii ---- */
.marquee-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
    transparent 0,
    #000 60px,
    #000 calc(100% - 60px),
    transparent 100%);
  padding: 10px 0;
}
.marquee-track {
  display: inline-flex;
  gap: 16px;
  padding: 0 8px;
  animation: marqueeScroll 60s linear infinite;
}
.marquee-track .comment-card {
  flex: 0 0 340px;
  max-width: 340px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-viewport:hover .marquee-track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 520px) {
  .marquee-track .comment-card { flex: 0 0 280px; max-width: 280px; }
  .marquee-track { animation-duration: 50s; }
}

/* ---- GRAIN / noise overlay — editorial texture ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.8'/></svg>");
  background-size: 240px 240px;
}
