/* ==========================================================================
   NECTARNIGHT - ULTRA-PREMIUM ADULT DATING DESIGN SYSTEM & STYLES
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-dark: #07050e;
  --bg-dark-secondary: #0d081a;
  --bg-card: rgba(18, 11, 33, 0.75);
  --bg-card-hover: rgba(28, 17, 50, 0.85);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-glow: rgba(255, 51, 102, 0.4);

  /* Vibrant Nectar Gradients */
  --nectar-pink: #ff3366;
  --nectar-magenta: #e6005c;
  --nectar-amber: #ffaa00;
  --nectar-purple: #8a2be2;
  --nectar-gradient: linear-gradient(135deg, #ff3366 0%, #ffaa00 100%);
  --nectar-gradient-hover: linear-gradient(135deg, #ff477e 0%, #ffb82e 100%);
  --accent-glow: rgba(255, 51, 102, 0.35);

  /* Typography */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Cinzel', serif;

  /* Text Colors */
  --text-main: #f8f7ff;
  --text-muted: #a39eb8;
  --text-subtle: #6c6685;

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Setup */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  background-color: #07050e;
  background-image: url('assets/bg2.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Fullscreen Background FX: Radar & Particle Waves (Disabled to view bg2.png freely) */
.bg-fullscreen-radar {
  display: none;
}
}

.fs-radar-scope {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vmax;
  height: 120vmax;
  border-radius: 50%;
}

.fs-radar-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 51, 102, 0.15);
  border-radius: 50%;
}

.ring-fs-1 {
  width: 20%;
  height: 20%;
}

.ring-fs-2 {
  width: 40%;
  height: 40%;
}

.ring-fs-3 {
  width: 60%;
  height: 60%;
}

.ring-fs-4 {
  width: 80%;
  height: 80%;
}

.ring-fs-5 {
  width: 100%;
  height: 100%;
}

.fs-radar-crosshair-h,
.fs-radar-crosshair-v {
  position: absolute;
  background: rgba(255, 51, 102, 0.08);
}

.fs-radar-crosshair-h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.fs-radar-crosshair-v {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
}

.fs-radar-beam {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(255, 51, 102, 0.2) 0deg, transparent 60deg, transparent 360deg);
  border-radius: 50%;
  animation: radarScan 12s linear infinite;
}

@keyframes radarScan {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Ambient Sparkles */
.bg-sparkle-field {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.sparkle-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--nectar-amber);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--nectar-amber);
  animation: floatSparkle infinite ease-in-out;
}

@keyframes floatSparkle {

  0%,
  100% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }

  50% {
    opacity: 0.8;
    transform: translateY(-20px) scale(1.2);
  }
}

/* Layout Wrapper */
.app-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Navigation Bar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2rem;
}

.nav-brand-left {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  transition: var(--transition-fast);
}

.nav-brand-left:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 51, 102, 0.4));
}

.brand-name-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 3px;
  background: var(--nectar-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-title-center {
  text-align: center;
}

.header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 51, 102, 0.1);
  border: 1px solid rgba(255, 51, 102, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--nectar-pink);
  letter-spacing: 0.5px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.5;
  }
}

/* Main Split Quiz & Showcase Layout */
.quiz-page-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2rem;
  align-items: center;
  flex: 1;
  padding-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .quiz-page-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left Column: Compact Questions Card Container */
.quiz-questions-col {
  width: 100%;
  max-width: 360px;
  background: rgba(10, 6, 20, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 51, 102, 0.4);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Sleek Progress Header */
.quiz-progress-bar {
  margin-bottom: 1.75rem;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}

.progress-step-pill {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--nectar-amber);
}

.progress-pct {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  height: 100%;
  background: var(--nectar-gradient);
  border-radius: var(--radius-full);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px var(--nectar-pink);
}

/* Question Cards & Transitions */
.quiz-card-wrapper {
  position: relative;
  min-height: auto;
}

.quiz-card {
  display: none;
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  padding: 1rem 0;
  box-shadow: none;
  animation: slideFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.quiz-card.active {
  display: flex;
  flex-direction: column;
}

@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quiz-header {
  margin-bottom: 2rem;
}

.quiz-question-title {
  font-size: 1.85rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
}

.quiz-question-subtitle {
  font-size: 0.95rem;
  color: #d1cbe8;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.85);
}

/* Options Grid & Pills */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
  flex: 1;
}

.option-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 1.5rem;
  background: rgba(18, 11, 33, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-normal);
  outline: none;
  text-align: left;
}

.option-pill:hover {
  background: rgba(255, 51, 102, 0.08);
  border-color: rgba(255, 51, 102, 0.35);
  transform: translateX(4px);
}

.option-pill.active {
  background: rgba(255, 51, 102, 0.16);
  border-color: var(--nectar-pink);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.25), inset 0 0 10px rgba(255, 51, 102, 0.1);
}

.pill-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pill-icon {
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.option-pill.active .pill-icon {
  background: rgba(255, 51, 102, 0.2);
  border-color: var(--nectar-pink);
}

.pill-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.option-pill.active .pill-dot {
  border-color: var(--nectar-pink);
  background: var(--nectar-pink);
  box-shadow: 0 0 10px var(--nectar-pink);
}

/* Checkbox Style Options (Age Multi-select) */
.option-checkbox-pill {
  display: block;
  cursor: pointer;
  user-select: none;
}

.option-checkbox-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  background: rgba(18, 11, 33, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 500;
  transition: var(--transition-normal);
}

.option-checkbox-pill:hover .pill-box {
  background: rgba(255, 51, 102, 0.08);
  border-color: rgba(255, 51, 102, 0.35);
  transform: translateX(4px);
}

.option-checkbox-pill input[type="checkbox"]:checked+.pill-box {
  background: rgba(255, 51, 102, 0.16);
  border-color: var(--nectar-pink);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.25);
}

.check-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-weight: 900;
  color: transparent;
  transition: var(--transition-fast);
}

.option-checkbox-pill input[type="checkbox"]:checked+.pill-box .check-mark {
  background: var(--nectar-pink);
  border-color: var(--nectar-pink);
  color: #fff;
}

/* Action Buttons Bar */
.quiz-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.1rem 2.2rem;
  background: var(--nectar-gradient);
  border: none;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: 0 8px 25px rgba(255, 51, 102, 0.4);
  text-decoration: none;
}

.btn-primary-cta:hover {
  background: var(--nectar-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 51, 102, 0.6);
}

.btn-primary-cta:active {
  transform: translateY(0);
}

.btn-secondary-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-secondary-back:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Right Column Featured Profile Image Showcase */
.showcase-display-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: calc(100vh - 120px);
  max-height: 720px;
}

.match-image-card {
  width: 100%;
  height: 100%;
  position: relative;
}

.match-image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.featured-profile-img {
  max-width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.85));
  transition: transform 0.35s ease, opacity 0.3s ease;
}

/* Step-Specific Precision Model Alignments: 20% Reduced Height (Except 6.png) */
.featured-profile-img.step-img-1 {
  transform: translateY(50px) scale(1.08);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-2 {
  transform: translateY(45px) scale(1.05);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-3 {
  transform: translateY(50px) scale(1.08);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-4 {
  transform: translateY(50px) scale(1.12);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-5 {
  transform: translateY(45px) scale(1.08);
  transform-origin: center bottom;
}

/* Step 6 image (6.png) kept at natural scale */
.featured-profile-img.step-img-6 {
  transform: translateY(50px) scale(1.0);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-7 {
  transform: translateY(45px) scale(1.08);
  transform-origin: center bottom;
}

.featured-profile-img.step-img-8 {
  transform: translateY(40px) scale(1.04);
  transform-origin: center bottom;
}

.match-badge-top {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(10, 6, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 136, 0.5);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: #00ff88;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}

.live-dot-pulse {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ff88;
  animation: pulseDot 1.5s infinite;
}

.match-info-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  transform: none;
  width: auto;
  min-width: 240px;
  padding: 0.9rem 1.25rem;
  background: rgba(10, 6, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 51, 102, 0.4);
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.match-name-age {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.match-location-tag {
  font-size: 0.9rem;
  color: #d1cbe8;
  margin-bottom: 0.4rem;
}

.match-compat-tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 51, 102, 0.2);
  border: 1px solid var(--nectar-pink);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nectar-amber);
}

/* Final Unlock Screen Layout */
.unlock-card-content {
  text-align: center;
  padding: 1rem 0;
}

.unlock-badge-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--nectar-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 35px var(--accent-glow);
  animation: bounceGlow 2s infinite ease-in-out;
}

@keyframes bounceGlow {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 25px var(--accent-glow);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 0 45px rgba(255, 51, 102, 0.7);
  }
}

.unlocked-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.stat-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
}

.stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--nectar-amber);
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.2rem;
}

.btn-access-catalog {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

/* Secondary Pages (Contact, Privacy, Terms) */
.page-card {
  background: rgba(10, 6, 20, 0.90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 51, 102, 0.35);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  max-width: 820px;
  margin: 1.5rem auto 3rem;
  width: 100%;
}

.page-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--nectar-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1.25rem;
}

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--nectar-amber);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.policy-section {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nectar-amber);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.policy-section p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.policy-section ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}

.policy-section li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.policy-section li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--nectar-pink);
}

/* Contact Form Styling */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-primary);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--nectar-pink);
  box-shadow: 0 0 15px rgba(255, 51, 102, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* Footer Section */
.app-footer {
  margin-top: auto;
  width: 100%;
  padding: 1.5rem 1rem;
  background: rgba(10, 6, 20, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 51, 102, 0.35);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--nectar-pink);
}

.footer-links .sep {
  color: rgba(255, 255, 255, 0.2);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-subtle);
}

/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM (LAPTOP, TABLET & MOBILE)
   ========================================================================== */

/* Laptop & Medium Screens (1024px to 1280px) */
@media (max-width: 1280px) {
  .quiz-page-layout {
    grid-template-columns: 340px 1fr;
    gap: 1.5rem;
  }

  .quiz-questions-col {
    max-width: 340px;
    padding: 1.25rem;
  }

  .showcase-display-col {
    height: calc(100vh - 140px);
    max-height: 600px;
  }

  .featured-profile-img {
    max-height: 560px;
  }

  .match-info-overlay {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.1rem;
    min-width: 220px;
  }
}

/* Tablet Screens (768px to 1023px) */
@media (max-width: 1023px) {
  .app-wrapper {
    padding: 0 1.25rem;
  }

  .quiz-page-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .quiz-questions-col {
    max-width: 520px;
    margin: 0 auto;
    order: 2;
  }

  .showcase-display-col {
    order: 1;
    height: 480px;
    max-height: 480px;
  }

  .featured-profile-img {
    max-height: 440px;
  }

  .featured-profile-img.step-img-1,
  .featured-profile-img.step-img-2,
  .featured-profile-img.step-img-3,
  .featured-profile-img.step-img-4,
  .featured-profile-img.step-img-5,
  .featured-profile-img.step-img-6,
  .featured-profile-img.step-img-7,
  .featured-profile-img.step-img-8 {
    transform: translateY(20px) scale(1.0);
  }

  .match-info-overlay {
    bottom: 0.5rem;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .match-badge-top {
    top: 0.5rem;
    right: 1rem;
  }
}

/* Mobile Screens (Under 768px) */
@media (max-width: 767px) {
  .app-wrapper {
    padding: 0 1rem;
  }

  .navbar {
    padding: 1rem 0;
    margin-bottom: 1rem;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand-name-text {
    font-size: 1.3rem;
  }

  .quiz-questions-col {
    max-width: 100%;
    padding: 1.1rem;
    border-radius: 18px;
  }

  .quiz-question-title {
    font-size: 1.4rem;
  }

  .option-pill {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .pill-box {
    padding: 0.85rem 1rem;
    font-size: 0.92rem;
  }

  .btn-primary-cta {
    padding: 0.9rem 1.6rem;
    font-size: 0.95rem;
  }

  .showcase-display-col {
    height: 360px;
    max-height: 360px;
  }

  .featured-profile-img {
    max-height: 340px;
  }

  .match-info-overlay {
    min-width: 220px;
    padding: 0.6rem 1rem;
  }

  .match-name-age {
    font-size: 1.3rem;
  }

  .match-location-tag {
    font-size: 0.8rem;
  }
}