/* ==========================================================================
   CRUSHCANVAS - HIGH-END OBSIDIAN NEON GLASSMORPHIC DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Luminous Electric Glass System */
  --bg-obsidian: #12082d;
  --bg-obsidian-light: #1e1045;
  --bg-glass-card: rgba(35, 18, 64, 0.82);
  --bg-glass-pill: rgba(255, 255, 255, 0.08);
  --bg-glass-pill-hover: rgba(255, 42, 112, 0.25);

  /* Vivid Electric Accents */
  --crush-primary: #ff2a70;
  --crush-glow: #ff528f;
  --crush-deep: #e61c5c;
  --crush-dark: #990f3d;

  --neon-cyan: #00f0ff;
  --neon-cyan-glow: #38bdf8;

  --neon-purple: #a855f7;
  --neon-violet: #c084fc;

  --gold-glow: #fbbf24;
  --gold-primary: #f59e0b;

  /* High-Contrast Crisp Typography */
  --font-serif: 'Cinzel', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --text-primary: #ffffff;
  --text-secondary: #f1f5f9;
  --text-muted: #cbd5e1;
  --text-subtle: #94a3b8;

  /* Radii & Boundaries */
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 9999px;

  /* Glass Effects & Shadow Token System */
  --shadow-obsidian: 0 20px 60px rgba(0, 0, 0, 0.45), 0 0 35px rgba(255, 42, 112, 0.25);
  --shadow-crush: 0 14px 45px rgba(255, 42, 112, 0.55);
  --shadow-cyan: 0 14px 45px rgba(0, 240, 255, 0.4);
  --border-glass: 1.5px solid rgba(255, 255, 255, 0.2);
  --border-glow: 1.5px solid rgba(255, 42, 112, 0.55);
  --border-cyan: 1.5px solid rgba(0, 240, 255, 0.55);
}

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

html {
  font-size: 16px;
  background-color: var(--bg-obsidian);
  color: var(--text-primary);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #100726;
  background-image:
    radial-gradient(circle at 85% 75%, rgba(0, 240, 255, 0.25) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.2) 0%, transparent 65%);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

/* Background Image Layer - Change Opacity Here */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: url('assets/bg.JPG') no-repeat center center / cover;
  opacity: 0.35;
/* ADJUST BACKGROUND IMAGE OPACITY HERE (e.g. 0.2 = faint, 0.5 = medium, 1.0 = 100%) */
  pointer-events: none;
  z-index: 0;
}

.app-wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Full-Screen Interactive Radar Wave Backdrop */
.bg-fullscreen-radar {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-radar-scope {
  width: 140vmax;
  height: 140vmax;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fs-radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 59, 119, 0.16);
  pointer-events: none;
}

.ring-fs-1 {
  width: 22vmax;
  height: 22vmax;
  border-color: rgba(255, 59, 119, 0.28);
}

.ring-fs-2 {
  width: 44vmax;
  height: 44vmax;
  border-color: rgba(6, 182, 212, 0.22);
}

.ring-fs-3 {
  width: 66vmax;
  height: 66vmax;
  border-color: rgba(147, 51, 234, 0.2);
}

.ring-fs-4 {
  width: 88vmax;
  height: 88vmax;
  border-color: rgba(255, 59, 119, 0.16);
}

.ring-fs-5 {
  width: 110vmax;
  height: 110vmax;
  border-color: rgba(6, 182, 212, 0.14);
}

.ring-fs-6 {
  width: 132vmax;
  height: 132vmax;
  border-color: rgba(147, 51, 234, 0.12);
}

.fs-radar-crosshair-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 59, 119, 0.18) 50%, transparent 100%);
}

.fs-radar-crosshair-v {
  position: absolute;
  height: 100%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 182, 212, 0.18) 50%, transparent 100%);
}

.fs-radar-beam {
  position: absolute;
  width: 70vmax;
  height: 70vmax;
  top: 0;
  left: 0;
  transform-origin: bottom right;
  background: conic-gradient(from 0deg at 100% 100%, rgba(255, 59, 119, 0.28) 0deg, rgba(6, 182, 212, 0.18) 35deg, transparent 70deg);
  border-radius: 100% 0 0 0;
  animation: fsRadarSweep 6s linear infinite;
  pointer-events: none;
}

@keyframes fsRadarSweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fs-radar-wave-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 59, 119, 0.7);
  box-shadow: 0 0 40px rgba(255, 59, 119, 0.4), inset 0 0 30px rgba(6, 182, 212, 0.2);
  animation: fsRadarWaveExpand 4.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
  pointer-events: none;
}

.fs-radar-wave-pulse.delay-1 {
  animation-delay: 1.5s;
}

.fs-radar-wave-pulse.delay-2 {
  animation-delay: 3s;
}

@keyframes fsRadarWaveExpand {
  0% {
    width: 0vmax;
    height: 0vmax;
    opacity: 0.9;
    border-color: rgba(255, 59, 119, 0.85);
  }

  50% {
    opacity: 0.5;
    border-color: rgba(6, 182, 212, 0.6);
  }

  100% {
    width: 130vmax;
    height: 130vmax;
    opacity: 0;
    border-color: rgba(147, 51, 234, 0.1);
  }
}

/* Ambient Floating Canvas Sparkle Field */
.bg-sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.sparkle-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--crush-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--crush-primary), 0 0 20px var(--neon-cyan);
  animation: canvasSparkleFloat 7s ease-in-out infinite alternate;
}

@keyframes canvasSparkleFloat {
  0% {
    transform: translateY(0) scale(0.6);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-30px) scale(1.3);
    opacity: 0.95;
  }

  100% {
    transform: translateY(-60px) scale(0.6);
    opacity: 0.15;
  }
}

/* ==========================================================================
   HEADER NAVBAR (DARK GLASSMORPHISM WITH CRUSHCANVAS LOGO & TITLE)
   ========================================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(18px, 3vw, 44px);
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: none;
}

.nav-brand-left {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 4px 8px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  transition: all 0.35s ease;
  z-index: 2;
}

.nav-brand-left:hover {
  transform: scale(1.03);
  box-shadow: none;
}

.brand-logo-left {
  height: clamp(40px, 3.8vw, 62px);
  width: auto;
  object-fit: contain;
  filter: none;
}

.nav-title-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.brand-name-centered {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: clamp(3px, 0.5vw, 6px);
  background: linear-gradient(135deg, #ffffff 0%, #ff3b77 45%, #9333ea 75%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  filter: drop-shadow(0 0 15px rgba(255, 59, 119, 0.4));
}

.header-action {
  display: flex;
  align-items: center;
  z-index: 2;
}

.private-badge {
  font-size: clamp(0.72rem, 0.9vw, 0.84rem);
  font-weight: 700;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 59, 119, 0.4);
  border-radius: var(--radius-pill);
  padding: 8px clamp(12px, 1.5vw, 20px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(255, 59, 119, 0.2);
  backdrop-filter: blur(12px);
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.badge-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crush-primary);
  box-shadow: 0 0 12px var(--crush-primary);
  animation: pulseCrushDot 1.5s infinite alternate;
}

@keyframes pulseCrushDot {
  0% {
    opacity: 0.4;
    transform: scale(0.8);
  }

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

/* ==========================================================================
   MAIN 2-COLUMN PAGE LAYOUT (LEFT: QUESTIONS, RIGHT: 3D BALLOON SHOWCASE)
   ========================================================================== */
.quiz-page-layout {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 20px 45px;
  gap: clamp(24px, 4vw, 65px);
  position: relative;
}

.quiz-questions-col {
  flex: 0 0 390px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.showcase-display-col {
  flex: 1 1 540px;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.canvas-showcase-container {
  width: 100%;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Radar Container */
.radar-card-wrapper {
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.radar-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.radar-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.radar-live-badge span:last-child {
  font-family: var(--font-serif);
  font-size: clamp(0.92rem, 1.15vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #ff2a70 40%, #00f0ff 80%, #ff528f 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: topMatchGlowText 3s ease infinite alternate;
  filter: drop-shadow(0 0 14px rgba(255, 42, 112, 0.65));
}

@keyframes topMatchGlowText {
  0% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 10px rgba(255, 42, 112, 0.6));
  }

  50% {
    background-position: 100% 50%;
    filter: drop-shadow(0 0 18px rgba(0, 240, 255, 0.85));
  }

  100% {
    background-position: 0% 50%;
    filter: drop-shadow(0 0 14px rgba(255, 82, 143, 0.75));
  }
}

.radar-distance-tag {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neon-cyan-glow);
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  padding: 4px 14px;
  border-radius: var(--radius-pill);
}

/* Circular Radar Scope (Bright Full Outer Image Scope) */
.radar-scope-circle {
  width: clamp(340px, 32vw, 480px);
  height: clamp(340px, 32vw, 480px);
  border-radius: 50%;
  border: 4px solid #ff2a70;
  box-shadow:
    0 0 65px rgba(255, 42, 112, 0.65),
    0 0 40px rgba(0, 240, 255, 0.5);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #100726;
}

/* Image Filling the Entire Outer Radar Circle (Bright & Vibrant) */
.radar-full-avatar {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
  filter: brightness(1.12) contrast(1.05);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.radar-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  pointer-events: none;
  z-index: 2;
}

.ring-1 {
  width: 120px;
  height: 120px;
}

.ring-2 {
  width: 220px;
  height: 220px;
}

.ring-3 {
  width: 320px;
  height: 320px;
}

.ring-4 {
  width: 420px;
  height: 420px;
}

.radar-crosshair-h {
  position: absolute;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 2;
}

.radar-crosshair-v {
  position: absolute;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
  z-index: 2;
}

/* Sweeping Radar Beam Overlaid Lightly on Top of Full Image */
.radar-sweep-beam {
  position: absolute;
  width: 240px;
  height: 240px;
  top: 0;
  left: 0;
  transform-origin: bottom right;
  background: conic-gradient(from 0deg at 100% 100%, rgba(255, 59, 119, 0.28) 0deg, rgba(6, 182, 212, 0.15) 30deg, transparent 60deg);
  border-radius: 100% 0 0 0;
  animation: radarSweep 4s linear infinite;
  pointer-events: none;
  z-index: 3;
}

/* Features Grid */
.showcase-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.feature-glass-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: rgba(22, 13, 36, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.feature-glass-box:hover {
  border-color: var(--crush-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 59, 119, 0.2);
}

.feat-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feat-text strong {
  font-size: 0.88rem;
  color: #ffffff;
}

.feat-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LEFT SIDE QUESTIONS CONTAINER & PROGRESS TRACK
   ========================================================================== */
.centered-quiz-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.quiz-progress-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.progress-step-pill {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crush-glow);
  background: rgba(22, 13, 36, 0.8);
  border: 1.5px solid rgba(255, 59, 119, 0.4);
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(255, 59, 119, 0.25);
  backdrop-filter: blur(12px);
}

.progress-track {
  width: 100%;
  height: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 59, 119, 0.3);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 1px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff3b77 0%, #9333ea 50%, #06b6d4 100%);
  border-radius: var(--radius-pill);
  box-shadow: 0 0 15px rgba(255, 59, 119, 0.7);
  transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-card-wrapper {
  width: 100%;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0;
  position: relative;
}

.quiz-card {
  display: none;
  width: 100%;
  animation: crushSlideIn 0.45s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

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

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

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

.quiz-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
}

.quiz-question-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: -0.2px;
  text-shadow: 0 2px 12px rgba(255, 59, 119, 0.3);
}

.quiz-question-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   INTERACTIVE OPTION PILLS & SELECTION TILES
   ========================================================================== */
.options-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.option-pill {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 22px;
  background: transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  cursor: pointer;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  text-align: left;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.option-pill:hover {
  background: rgba(255, 42, 112, 0.22) !important;
  border-color: var(--crush-primary);
  color: #ffffff;
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 10px 28px rgba(255, 42, 112, 0.35);
}

.option-pill.active {
  background: linear-gradient(135deg, rgba(255, 42, 112, 0.48) 0%, rgba(168, 85, 247, 0.58) 100%) !important;
  border: 1.5px solid #ff2a70;
  color: #ffffff;
  box-shadow: 0 10px 32px rgba(255, 42, 112, 0.5);
}

.pill-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pill-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
}

.option-pill.active .pill-dot {
  border-color: var(--crush-primary);
  background: var(--crush-primary);
  box-shadow: 0 0 14px var(--crush-primary);
}

.option-pill.active .pill-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
}

.pill-label {
  flex: 1;
}

/* Checkbox Grid (Step 3 Age Range Selection) */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.option-checkbox-pill {
  cursor: pointer;
  width: 100%;
}

.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: 16px 20px;
  background: transparent !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

.option-checkbox-pill:hover .pill-box {
  background: rgba(255, 42, 112, 0.22) !important;
  border-color: var(--crush-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 42, 112, 0.35);
}

.option-checkbox-pill input:checked+.pill-box {
  background: linear-gradient(135deg, rgba(255, 42, 112, 0.48) 0%, rgba(168, 85, 247, 0.58) 100%) !important;
  border: 1.5px solid var(--crush-primary);
  box-shadow: 0 10px 32px rgba(255, 42, 112, 0.5);
}

.pill-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.option-checkbox-pill input:checked+.pill-box .pill-text {
  color: #ffffff;
}

.check-mark {
  font-size: 0.95rem;
  font-weight: 900;
  color: transparent;
  transition: all 0.25s ease;
}

.option-checkbox-pill input:checked+.pill-box .check-mark {
  color: var(--gold-glow);
  text-shadow: 0 0 10px var(--gold-glow);
}

/* Step 8 Final Ready Screen */
.final-ready-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 59, 119, 0.4);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  text-align: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.ready-check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3b77 0%, #9333ea 100%);
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 0 30px rgba(255, 59, 119, 0.6);
}

.ready-text {
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.ready-text strong {
  color: #ffffff;
}

.match-stats-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px;
  flex-wrap: wrap;
}

.stat-chip {
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--neon-cyan-glow);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

/* Action Bar & Buttons */
.quiz-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  width: 100%;
}

.quiz-action-bar.flex-center {
  justify-content: center;
}

.btn-secondary-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-back:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(14px, 1.5vw, 18px) clamp(28px, 2.5vw, 40px);
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #ff3b77 0%, #d92662 45%, #9333ea 85%, #6366f1 100%);
  color: #ffffff !important;
  font-family: var(--font-serif);
  font-size: clamp(0.94rem, 1.2vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow-crush);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 45px rgba(255, 59, 119, 0.55), 0 0 30px rgba(6, 182, 212, 0.3);
}

.btn-access-catalog {
  width: 100%;
  font-size: 1.08rem;
  padding: 18px 30px;
}

/* Centered Brand Logo Section */
.quiz-bottom-logo-area {
  width: 100%;
  margin: 25px auto 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}

.quiz-bottom-logo-img {
  height: clamp(85px, 8vw, 130px);
  width: auto;
  max-width: 380px;
  object-fit: contain;
  filter: drop-shadow(0 6px 25px rgba(255, 42, 112, 0.65));
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quiz-bottom-logo-img:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 8px 32px rgba(255, 42, 112, 0.85));
}

/* Subpage Main Content Card */
.page-card {
  width: 100%;
  max-width: 860px;
  margin: 40px auto 60px;
  background: rgba(22, 13, 36, 0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1.5px solid rgba(255, 59, 119, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-obsidian);
  padding: clamp(30px, 4vw, 55px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(255, 59, 119, 0.35);
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.policy-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--crush-glow);
  margin-top: 10px;
}

.policy-section p,
.policy-section li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.policy-section ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Contact Form Controls */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--crush-primary);
  background: rgba(255, 59, 119, 0.1);
  box-shadow: 0 0 20px rgba(255, 59, 119, 0.25);
}

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

.btn-submit {
  margin-top: 10px;
  width: 100%;
}

/* Footer */
.app-footer {
  width: 100%;
  padding: 30px 20px;
  background: transparent;
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--crush-glow);
}

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

.copyright {
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}

/* Comprehensive Responsive Breakpoints for Laptop, Tablet, Mobile */
@media (max-width: 1280px) {
  .quiz-page-layout {
    gap: 32px;
    padding: 20px 16px 40px;
  }

  .quiz-questions-col {
    flex: 0 0 370px;
    max-width: 390px;
  }

  .radar-scope-circle {
    width: 400px;
    height: 400px;
  }

  .radar-sweep-beam {
    width: 200px;
    height: 200px;
  }

  .ring-1 {
    width: 100px;
    height: 100px;
  }

  .ring-2 {
    width: 190px;
    height: 190px;
  }

  .ring-3 {
    width: 280px;
    height: 280px;
  }

  .ring-4 {
    width: 360px;
    height: 360px;
  }

  .radar-center-core {
    width: 135px;
    height: 135px;
  }
}

@media (max-width: 992px) {
  .quiz-page-layout {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }

  .quiz-questions-col {
    flex: 1;
    max-width: 520px;
  }

  .showcase-display-col {
    max-width: 520px;
    width: 100%;
  }

  .radar-scope-circle {
    width: 360px;
    height: 360px;
  }

  .radar-sweep-beam {
    width: 180px;
    height: 180px;
  }

  .ring-1 {
    width: 90px;
    height: 90px;
  }

  .ring-2 {
    width: 170px;
    height: 170px;
  }

  .ring-3 {
    width: 250px;
    height: 250px;
  }

  .ring-4 {
    width: 320px;
    height: 320px;
  }

  .radar-center-core {
    width: 125px;
    height: 125px;
  }
}

@media (max-width: 640px) {
  .nav-title-center {
    display: none;
  }

  .quiz-questions-col {
    max-width: 100%;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .radar-scope-circle {
    width: 290px;
    height: 290px;
  }

  .radar-sweep-beam {
    width: 145px;
    height: 145px;
  }

  .ring-1 {
    width: 80px;
    height: 80px;
  }

  .ring-2 {
    width: 150px;
    height: 150px;
  }

  .ring-3 {
    width: 210px;
    height: 210px;
  }

  .ring-4 {
    width: 270px;
    height: 270px;
  }

  .radar-center-core {
    width: 100px;
    height: 100px;
  }

  .core-logo-badge {
    width: 26px;
    height: 26px;
  }

  .radar-core-logo {
    height: 15px;
  }
}