@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500&display=swap');

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

:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-hover: #1a1028;
  --accent: #c44dff;
  --accent-glow: rgba(196, 77, 255, 0.3);
  --accent-hover: #a020d0;
  --accent-soft: rgba(196, 77, 255, 0.08);
  --text: #f0e6f6;
  --text-muted: #9a8a9e;
  --text-dim: #6a5a6e;
  --border: #2a2a2a;
  --border-accent: rgba(196, 77, 255, 0.3);
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

/* --- Top Navigation --- */
#main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.nav-tabs {
  display: flex;
  gap: 0.25rem;
}

.nav-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.nav-tab:hover {
  color: var(--text);
  background: rgba(196, 77, 255, 0.05);
}

.nav-tab.active {
  color: var(--accent);
  background: rgba(196, 77, 255, 0.1);
}

.nav-tab.active::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  box-shadow: 0 0 6px var(--accent-glow);
}

/* --- Routes --- */
.route {
  display: none;
  width: 100%;
  max-width: 640px;
  padding: 2rem;
}

.route.active {
  display: block;
}

/* Background texture — subtle mesh overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 77, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196, 77, 255, 0.02) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(100, 20, 150, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle lace/mesh pattern */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(196, 77, 255, 0.008) 20px,
    rgba(196, 77, 255, 0.008) 21px
  );
  pointer-events: none;
  z-index: 0;
}

#app {
  max-width: 640px;
  width: 100%;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

/* --- App Wrapper (side panels layout) --- */
#app-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 54px);
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

/* --- Side Art Panels --- */
.side-art {
  position: sticky;
  top: 2rem;
  width: 200px;
  flex-shrink: 0;
  padding: 2rem 1rem;
  display: none; /* hidden on mobile, shown on wide screens */
}

.side-art .art-placeholder {
  width: 100%;
  height: 400px;
  border: 1px dashed var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  position: relative;
}

.art-placeholder::after {
  content: attr(data-label);
  color: var(--text-dim);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.side-art-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.1);
  object-fit: cover;
  max-height: 500px;
}

@media (min-width: 1100px) {
  .side-art {
    display: block;
  }
}

@media (min-width: 1400px) {
  .side-art {
    width: 280px;
  }

  .side-art .art-placeholder {
    height: 500px;
  }
}

/* --- Quiz Art Image --- */
.quiz-body {
  position: relative;
}

.quiz-art {
  margin-bottom: 1.5rem;
}

.quiz-art-img {
  width: 100%;
  max-height: 280px;
  border: 1px solid var(--border);
  border-radius: 8px;
  object-fit: contain;
  display: block;
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.1);
  transition: opacity 0.4s;
  background: var(--surface);
}

/* --- Section Transitions --- */
.section-transition {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s;
  opacity: 0;
}

.section-transition.active {
  height: 60px;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.section-transition::after {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 0.7rem;
  background: var(--bg);
  padding: 0 0.75rem;
  text-shadow: 0 0 10px var(--accent-glow);
}

/* --- Screens --- */
.screen {
  display: none;
}

.screen.active {
  display: block;
  animation: screenIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes screenIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Welcome Screen --- */
#screen-welcome {
  text-align: center;
}

#screen-welcome h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
  text-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(196, 77, 255, 0.15);
  letter-spacing: 0.02em;
}

.welcome-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.welcome-domme-text {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.welcome-domme-text em {
  color: var(--accent);
  font-style: normal;
}

/* Name Input */
.name-input-group {
  margin-bottom: 2rem;
}

.name-input-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.name-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  width: 100%;
  max-width: 280px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}

.name-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.name-input::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

/* --- Buttons --- */
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 20px var(--accent-glow);
  letter-spacing: 0.03em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--accent-glow), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
  transition-duration: 0.1s;
}

/* --- Progress Bar --- */
.quiz-progress {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-back {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  font-size: 0.8rem;
  font-family: 'Outfit', system-ui, sans-serif;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-back:hover {
  border-color: var(--accent);
  color: var(--text);
}

.btn-back:disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}

.progress-bar {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6bcc);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
  box-shadow: 0 0 8px var(--accent-glow);
}

.progress-text {
  color: var(--text-dim);
  font-size: 0.8rem;
  white-space: nowrap;
}

/* --- Questions --- */
#question-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  font-style: italic;
}

/* Interstitial commentary */
.interstitial {
  text-align: center;
  padding: 3rem 1rem;
  animation: interstitialIn 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.interstitial p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
}

@keyframes interstitialIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Staggered answer animations */
.answer-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: answerIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.answer-btn:nth-child(1) { animation-delay: 0.1s; }
.answer-btn:nth-child(2) { animation-delay: 0.2s; }
.answer-btn:nth-child(3) { animation-delay: 0.3s; }
.answer-btn:nth-child(4) { animation-delay: 0.4s; }

@keyframes answerIn {
  to { opacity: 1; transform: translateY(0); }
}

.answer-btn:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.1);
}

.answer-btn:active {
  transform: scale(0.98);
  transition-duration: 0.1s;
}

/* Locked state — after answering, flash the selected one */
.answer-btn.selected {
  border-color: var(--accent);
  background: var(--surface-hover);
  box-shadow: 0 0 15px var(--accent-glow);
  pointer-events: none;
}

.answer-btn.locked {
  opacity: 0.3;
  pointer-events: none;
}

/* --- Checklist UI --- */
.checklist-section {
  margin-bottom: 1.5rem;
}

.checklist-section h3 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.checklist-section.advanced h3 {
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.checklist-item:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
}

.checklist-item.checked {
  border-color: var(--accent);
  background: var(--surface-hover);
}

.checklist-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}

.checklist-item input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.checklist-item input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 13px;
  font-weight: bold;
}

.checklist-label {
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
}

.other-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: 'Outfit', system-ui, sans-serif;
  color: var(--text);
  resize: vertical;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.other-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

.other-input::placeholder {
  color: var(--text-dim);
  font-style: italic;
}

.btn-checklist-done {
  margin-top: 1.5rem;
}

/* --- Sliders / Confirmation --- */
#screen-confirm h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-style: italic;
}

#screen-confirm .subtitle {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

#sliders-container {
  margin-bottom: 2rem;
}

.slider-group {
  margin-bottom: 1.75rem;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.slider-group label span:last-child {
  color: var(--accent);
  font-weight: 400;
}

.slider-group input[type="range"] {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.slider-group input[type="range"]::-webkit-slider-thumb:hover {
  box-shadow: 0 0 20px var(--accent-glow);
}

.slider-group input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  border: none;
  cursor: pointer;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

/* --- Loading / Tease Delay --- */
#screen-loading {
  text-align: center;
}

.loading-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px var(--accent-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: dotPulse 1.4s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent-glow);
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0.5); opacity: 0.3; }
  40% { transform: scale(1); opacity: 1; }
}

/* --- Results --- */
#screen-results h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-shadow: 0 0 30px var(--accent-glow);
}

#screen-results h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.match-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s;
}

.match-card.best {
  border-color: var(--accent);
  box-shadow: 0 0 30px var(--accent-glow), inset 0 0 30px var(--accent-soft);
  animation: revealCard 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes revealCard {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.match-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.match-card.best h4 {
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.match-card .match-score {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.match-card .match-tagline {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.match-card .match-specialties {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.match-card .match-contact {
  font-size: 0.9rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.match-card .match-contact a {
  color: var(--accent);
  text-decoration: none;
  transition: text-shadow 0.2s;
}

.match-card .match-contact a:hover {
  text-shadow: 0 0 10px var(--accent-glow);
}

/* Compatibility breakdown */
.compatibility-breakdown {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.compatibility-breakdown h5 {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.breakdown-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.25rem;
  line-height: 1.5;
}

.breakdown-item em {
  color: var(--accent);
  font-style: normal;
}

/* Dramatic reveal stages */
.reveal-stage {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stage.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Audio Toggle --- */
.audio-toggle {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  z-index: 10;
}

.audio-toggle:hover {
  border-color: var(--accent);
}

.audio-toggle.muted {
  opacity: 0.4;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  #app {
    padding: 1.25rem;
  }

  #screen-welcome h1 {
    font-size: 2.5rem;
  }

  #question-text {
    font-size: 1.2rem;
  }

  .answer-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }

  .checklist-item {
    padding: 0.875rem 1rem;
  }

  .checklist-label {
    font-size: 0.9rem;
  }

  .checklist-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    min-width: 22px;
  }

  .btn-primary {
    padding: 1rem 2rem;
    width: 100%;
  }

  .btn-secondary {
    width: 100%;
  }

  .results-actions {
    flex-direction: column;
  }

  .match-card {
    padding: 1.25rem;
  }

  .slider-group input[type="range"] {
    height: 6px;
  }

  .slider-group input[type="range"]::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
  }

  .slider-group input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
  }
}

/* --- FAQ Screen --- */
#screen-faq h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.faq-content {
  margin-bottom: 2rem;
}

.faq-item {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- Disclaimer Screen --- */
#screen-disclaimer h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.disclaimer-content {
  margin-bottom: 2rem;
}

.disclaimer-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.disclaimer-content strong {
  color: var(--text);
}

.disclaimer-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.disclaimer-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.disclaimer-content ul li::before {
  content: '·';
  position: absolute;
  left: 0.5rem;
  color: var(--accent);
  font-size: 1.2rem;
}

.disclaimer-note {
  font-size: 0.85rem !important;
  font-style: italic;
  color: var(--text-dim) !important;
}

/* --- Link Button --- */
.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  margin-top: 1rem;
  display: block;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.btn-link:hover {
  color: var(--accent);
}

/* Center link buttons on welcome */
#screen-welcome .btn-link,
#screen-disclaimer .btn-link {
  margin-left: auto;
  margin-right: auto;
}

/* --- Secondary Button --- */
.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.03em;
}

.btn-secondary:hover {
  background: var(--accent-soft);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* --- Results Actions --- */
.results-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* --- Quiz Recommendations --- */
.quiz-recs {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.quiz-recs h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.recs-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.recs-sub {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.rec-track-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.rec-track-card:hover {
  background: var(--surface-hover);
  border-color: var(--border-accent);
  transform: translateY(-1px);
}

.rec-track-card .rec-icon {
  font-size: 1.5rem;
}

.rec-track-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.rec-track-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.rec-elective-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.rec-elective-tag:hover {
  background: var(--surface-hover);
  color: var(--text);
  transform: translateY(-1px);
}

#btn-go-university {
  margin-top: 1.5rem;
}

/* --- University Footer --- */
.uni-footer {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

/* --- Section Headers --- */
.section-header {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(-5px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* --- Match Bio --- */
.match-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* ========================================
   UNIVERSITY / TRAINING SECTION
   ======================================== */

#university {
  width: 100%;
}

.uni-screen {
  display: none;
  animation: screenIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.uni-screen.active {
  display: block;
}

/* --- University Landing --- */
.uni-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.uni-hero-art {
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(196, 77, 255, 0.1);
}

.uni-hero-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 300px;
  object-fit: contain;
}

.uni-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent);
  text-shadow: 0 0 30px var(--accent-glow);
  margin-bottom: 0.5rem;
}

.uni-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
}

/* --- Course Cards --- */
.uni-courses {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.uni-section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.uni-section-label.electives-label {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.uni-section-desc {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 1rem;
}

.course-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.course-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.1);
}

.course-tagline {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

.course-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.course-info {
  flex: 1;
}

.course-info h3 {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text);
}

.course-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.course-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
}

.course-lessons {
  color: var(--accent);
}

.course-difficulty {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-progress {
  flex-shrink: 0;
}

.progress-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-dim);
}

.progress-ring::after {
  content: attr(data-progress) '%';
}

/* --- Course Detail View --- */
#course-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.course-header-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(196, 77, 255, 0.1);
  background: var(--surface);
}

#course-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

#course-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- Lesson List --- */
.lesson-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.lesson-card:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
}

.lesson-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-shrink: 0;
  font-weight: 500;
}

.lesson-card.completed .lesson-number {
  background: var(--accent);
  color: white;
}

.lesson-card-info h4 {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 0.15rem;
}

.lesson-card-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Lesson Content View --- */
#lesson-content {
  margin-bottom: 2rem;
}

#lesson-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

#lesson-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* --- Tasks --- */
#lesson-tasks h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.task-item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.task-type {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.task-type-do { background: rgba(196, 77, 255, 0.15); color: var(--accent); }
.task-type-reflect { background: rgba(100, 200, 255, 0.15); color: #64c8ff; }
.task-type-timer { background: rgba(255, 200, 100, 0.15); color: #ffc864; }
.task-type-checklist { background: rgba(100, 255, 150, 0.15); color: #64ff96; }
.task-type-hypno { background: rgba(138, 138, 255, 0.15); color: #8a8aff; }
.task-type-read { background: rgba(200, 200, 200, 0.1); color: var(--text-muted); }

#course-meta-detail {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
}

#course-meta-detail .course-lessons {
  color: var(--accent);
}

#course-meta-detail .course-difficulty {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.task-content {
  flex: 1;
}

.task-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text);
}

.task-content .task-duration {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.task-checklist-items {
  margin-top: 0.5rem;
  padding-left: 0;
  list-style: none;
}

.task-checklist-items li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.task-checklist-items li::before {
  content: '○';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.lesson-actions {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* --- University Responsive --- */
@media (max-width: 480px) {
  .course-card {
    padding: 1rem;
  }

  .course-icon {
    font-size: 1.5rem;
    width: 36px;
  }

  .uni-header h1 {
    font-size: 1.8rem;
  }

  #main-nav {
    padding: 0.75rem 1rem;
  }

  .nav-brand {
    font-size: 1.1rem;
  }

  .nav-tab {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   PROFILE SECTION
   ======================================== */

#profile {
  width: 100%;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.profile-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
  background: var(--surface);
}

.avatar-img[src=""] {
  display: none;
}

.avatar-img[src=""]+.avatar-change-btn {
  position: relative;
}

.avatar-change-btn {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  transition: all 0.2s;
}

.avatar-change-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.profile-identity h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.profile-track-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Avatar Picker */
.avatar-picker {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.avatar-picker.hidden {
  display: none;
}

.avatar-picker h3 {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.avatar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.avatar-option {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.avatar-option:hover {
  border-color: var(--accent);
  transform: scale(1.05);
}

.avatar-option.selected {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* Profile Sections */
.profile-section {
  margin-bottom: 2rem;
}

.profile-section h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* Profile Sliders (read-only) */
.profile-slider-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.profile-slider-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  width: 140px;
  flex-shrink: 0;
}

.profile-slider-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  position: relative;
}

.profile-slider-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--accent-glow);
}

.profile-slider-val {
  font-size: 0.75rem;
  color: var(--accent);
  width: 28px;
  text-align: right;
}

/* Profile Toys */
.profile-toy-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.profile-toy-tag {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.profile-toy-none {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Profile Dommes */
.profile-domme-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
}

.profile-domme-item:hover {
  border-color: var(--border-accent);
  background: var(--surface-hover);
  transform: translateY(-1px);
}

.profile-domme-item h4 {
  font-size: 0.95rem;
  font-weight: 400;
}

.profile-domme-item .match-pct {
  font-size: 0.8rem;
  color: var(--accent);
}

#profile.hidden {
  display: none;
}

/* Profile Actions */
.profile-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

/* No-profile state */
.profile-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.profile-empty p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-style: italic;
}

@media (max-width: 480px) {
  .avatar-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }

  .profile-slider-label {
    width: 100px;
    font-size: 0.7rem;
  }
}

/* --- Edit Button (inline) --- */
.btn-edit {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Outfit', system-ui, sans-serif;
  margin-left: 0.75rem;
  transition: all 0.2s;
  vertical-align: middle;
}

.btn-edit:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* --- Domme Detail Page --- */
.domme-detail.hidden,
.edit-view.hidden {
  display: none;
}

.domme-detail-header {
  text-align: center;
  margin-bottom: 2rem;
}

.domme-detail-img {
  margin-bottom: 1.25rem;
}

.domme-placeholder-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.domme-detail-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.domme-detail-tagline {
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.domme-detail-bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.domme-detail-specialties {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.domme-detail-specialties .spec-tag {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-right: 0.4rem;
  margin-bottom: 0.4rem;
}

.domme-detail-contact {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.domme-detail-contact h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.domme-detail-contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
}

.domme-detail-contact a:hover {
  text-shadow: 0 0 10px var(--accent-glow);
}

/* --- Edit Views --- */
.edit-view h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--accent);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.edit-view .subtitle {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.edit-view .btn-primary {
  margin-top: 1.5rem;
}

/* --- Etiquette Section --- */
.etiquette-section .etiquette-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
}

.etiquette-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.etiquette-content strong {
  color: var(--text);
}

.etiquette-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}

.etiquette-content ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.etiquette-content ul li::before {
  content: '·';
  position: absolute;
  left: 0.4rem;
  color: var(--accent);
  font-size: 1.2rem;
}

/* --- Domme Contact Guide --- */
.domme-contact-guide {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.domme-contact-guide h4 {
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.domme-contact-guide ol {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.domme-contact-guide ol li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 0.5rem 0;
  padding-left: 2rem;
  position: relative;
  counter-increment: guide-step;
}

.domme-contact-guide ol li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1.4rem;
  height: 1.4rem;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.domme-contact-guide ol li strong {
  color: var(--text);
}

.guide-note {
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

/* --- Results Etiquette --- */
.results-etiquette {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.results-etiquette h3 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

/* --- Site Footer --- */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.site-footer a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-sep {
  color: var(--text-dim);
  margin: 0 0.5rem;
  font-size: 0.8rem;
}

/* --- Site Status Banner --- */
.site-status-banner {
  width: 100%;
  padding: 0.6rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.site-status-banner.status-info {
  background: rgba(196, 77, 255, 0.08);
  border-bottom: 1px solid rgba(196, 77, 255, 0.2);
  color: var(--accent);
}

.site-status-banner.status-warning {
  background: rgba(243, 156, 18, 0.08);
  border-bottom: 1px solid rgba(243, 156, 18, 0.2);
  color: #f39c12;
}

.site-status-banner.status-error {
  background: rgba(231, 76, 60, 0.08);
  border-bottom: 1px solid rgba(231, 76, 60, 0.2);
  color: #e74c3c;
}
