/* ===== Parkinson FAQ - Medische Styling ===== */

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

:root {
  --primary: #1a3a5c;
  --primary-light: #EEF3F8;
  --primary-dark: #0f2440;
  --primary-gradient: linear-gradient(135deg, #1a3a5c 0%, #0f2440 100%);
  --accent: #4a90d9;
  --accent-light: #E8F1FB;
  --danger: #C62828;
  --danger-light: #FFEBEE;
  --warning: #E65100;
  --warning-light: #FFF3E0;
  --success: #2E7D32;
  --success-light: #E8F5E9;
  --text: #1a2b42;
  --text-light: #5a6d7e;
  --icon-color: #4a90d9;
  --bg: #F7F9FC;
  --card-bg: #ffffff;
  --border: #DDE3EA;
  --shadow: 0 1px 8px rgba(26, 58, 92, 0.06);
  --shadow-hover: 0 4px 16px rgba(26, 58, 92, 0.12);
  --radius: 12px;
}

html {
  font-size: 20px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Segoe UI', 'Noto Sans Arabic', 'Arial', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  min-height: 100vh;
}

/* RTL for Arabic pages */
body.rtl {
  direction: rtl;
  text-align: right;
  font-family: 'Noto Sans Arabic', 'Inter', 'Segoe UI', 'Arial', sans-serif;
}

/* LTR for Dutch pages */
body.ltr {
  direction: ltr;
  text-align: left;
}

/* ===== Header ===== */
.header {
  background: var(--primary-gradient);
  color: white;
  padding: 0.9rem 1.5rem 0.7rem;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(15, 36, 64, 0.2);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-start;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  opacity: 0.9;
}

.logo-accent {
  font-weight: 700;
  color: #7eb8f0;
  opacity: 1;
}

.header-sub-row {
  text-align: start;
  max-width: 900px;
  margin: 0.2rem auto 0;
}

.header-sub-row p {
  font-size: 0.75rem;
  opacity: 0.75;
  font-weight: 400;
}

/* Header Greeting Row */
.header-greeting-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  max-width: 900px;
  margin: 0.2rem auto 0;
}

#header-greeting {
  font-size: 0.85rem;
  font-weight: 500;
  opacity: 0.9;
  color: white;
}

.settings-btn {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
  color: rgba(255,255,255,0.8);
}

.settings-btn svg {
  width: 12px;
  height: 12px;
}

.settings-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  color: white;
}

/* Admin header */
[data-page="admin"] .header {
  text-align: center;
}

/* ===== Language Toggle ===== */
.lang-toggle {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  min-height: 44px;
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}

.lang-toggle:hover {
  background: rgba(255,255,255,0.3);
  border-color: white;
  transform: translateY(-1px);
}

/* ===== Navigation / Categories ===== */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0.75rem;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  min-height: 90px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.category-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.category-btn .icon {
  width: 40px;
  height: 40px;
  color: var(--icon-color);
  transition: color 0.25s;
}

.category-btn .icon svg {
  width: 100%;
  height: 100%;
}

.category-btn:hover .icon,
.category-btn:focus .icon {
  color: var(--primary-dark);
}

.category-btn:hover,
.category-btn:focus {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.category-btn:hover::after,
.category-btn:focus::after {
  transform: scaleX(1);
}

.category-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

/* ===== Back Button ===== */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  margin: 1rem 1.5rem 0.5rem;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.2s;
  box-shadow: var(--shadow);
}

.back-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary);
  transform: translateX(-2px);
}

body.rtl .back-btn:hover {
  transform: translateX(2px);
}

/* ===== FAQ List ===== */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 2rem;
}

.faq-item {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all 0.25s;
  box-shadow: var(--shadow);
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(21, 101, 192, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  width: 100%;
  text-align: inherit;
  color: var(--text);
  line-height: 1.6;
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--accent);
}

.faq-item.open .faq-question {
  color: var(--primary-dark);
  background: var(--primary-light);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  border-top: 2px solid var(--primary-light);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer-text {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 1rem;
  padding-top: 1rem;
  white-space: pre-line;
}

/* ===== Audio Controls ===== */
.audio-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  min-width: 60px;
  min-height: 52px;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(74, 144, 217, 0.25);
}

.play-btn:hover {
  background: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 144, 217, 0.35);
}

.play-btn.playing {
  background: var(--danger);
  box-shadow: 0 2px 8px rgba(198, 40, 40, 0.25);
}

.play-btn .btn-icon {
  font-size: 1.3rem;
}

.speed-control {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.speed-control label {
  font-size: 0.75rem;
  color: var(--text-light);
}

.speed-control select {
  padding: 0.4rem 0.6rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  background: white;
  cursor: pointer;
  transition: border-color 0.2s;
}

.speed-control select:focus {
  border-color: var(--primary);
  outline: none;
}

/* ===== Empty State ===== */
.empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--text-light);
}

.empty-state .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-state p {
  font-size: 1rem;
}

/* ===== Admin Panel Styles ===== */
.admin-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.admin-section {
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.admin-section h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--primary-light);
  padding-bottom: 0.5rem;
}

/* Form */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

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

.form-group input[type="file"] {
  padding: 0.5rem;
  border-style: dashed;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
  min-height: 44px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 6px rgba(21, 101, 192, 0.2);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.3);
}

.btn-danger {
  background: var(--danger);
  color: white;
}

.btn-danger:hover {
  background: #B71C1C;
}

.btn-outline {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary-dark);
}

.btn-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Admin FAQ List */
.admin-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-faq-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.admin-faq-item:hover {
  border-color: var(--primary);
}

.admin-faq-item .faq-info {
  flex: 1;
}

.admin-faq-item .faq-info .category-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 4px;
  margin-bottom: 0.3rem;
}

.admin-faq-item .faq-info .question-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.admin-faq-item .faq-info .answer-preview {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  line-height: 1.6;
}

.admin-faq-item .faq-info .audio-badge {
  display: inline-block;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  background: #E3F2FD;
  color: #1565C0;
  border-radius: 4px;
  margin-top: 0.3rem;
}

.admin-faq-item .actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.admin-faq-item .actions button {
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
  min-height: 36px;
}

/* Admin Language Toggle Buttons */
.admin-lang-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Language Fieldsets (Admin) */
.lang-fieldset {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}

.lang-fieldset legend {
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0 0.5rem;
  color: var(--primary-dark);
}

.ar-fieldset {
  border-color: #B2DFDB;
  background: #F5FFFE;
}

.nl-fieldset {
  border-color: #BBDEFB;
  background: #F5FAFF;
}

/* Dutch translation text in admin list */
.question-text-nl {
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 0.15rem;
  font-style: italic;
}

.question-text-nl.missing {
  color: #bbb;
  font-style: italic;
}

/* Import/Export */
.import-export {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* Toast / Notification */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(13, 71, 161, 0.3);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== Welcome Screen ===== */
.welcome-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  min-height: 60vh;
}

.welcome-icon {
  width: 72px;
  height: 72px;
  color: var(--accent);
  margin-bottom: 1rem;
}

.welcome-icon svg {
  width: 100%;
  height: 100%;
}

.welcome-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.welcome-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.welcome-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 360px;
}

.welcome-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.welcome-input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.welcome-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.1);
}

.welcome-input.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.welcome-btn {
  width: 100%;
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 52px;
  box-shadow: 0 3px 12px rgba(26, 58, 92, 0.2);
}

.welcome-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 16px rgba(26, 58, 92, 0.3);
}

/* ===== "Alle vragen" Button ===== */
.all-questions-row {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
}

.all-questions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.all-questions-btn .icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.all-questions-btn .icon svg {
  width: 100%;
  height: 100%;
}

.all-questions-btn:hover .icon {
  color: white;
}

.all-questions-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ===== Category Headers (in "Alle vragen" view) ===== */
.category-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary-light);
}

.category-header-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--icon-color);
  display: inline-flex;
}

.category-header-icon svg {
  width: 100%;
  height: 100%;
}

.category-header:first-child {
  margin-top: 0.5rem;
}

/* ===== Tips Button ===== */
.tips-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
}

.tips-btn-icon {
  width: 22px;
  height: 22px;
  color: var(--icon-color);
  display: inline-flex;
}

.tips-btn-icon svg {
  width: 100%;
  height: 100%;
}

.tips-btn:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ===== Tips View ===== */
.tips-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary-light);
}

.tips-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.tips-subtitle {
  font-size: 0.85rem;
  color: var(--text-light);
}

.tip-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  transition: border-color 0.2s;
}

.tip-card:hover {
  border-color: var(--accent);
}

.tip-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  border-radius: 10px;
  color: var(--icon-color);
  padding: 8px;
}

.tip-icon svg {
  width: 100%;
  height: 100%;
}

.tip-content {
  flex: 1;
  min-width: 0;
}

.tip-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.tip-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.7;
}

.tip-audio {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.tip-play-btn {
  padding: 0.5rem 1rem;
  min-width: 48px;
  min-height: 42px;
  font-size: 0.9rem;
}

/* ===== Footer ===== */
.app-footer {
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  background: var(--primary-light);
  border-top: 1px solid var(--border);
}

.footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 0.75rem;
}

.app-footer p {
  font-size: 0.75rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 600px) {
  html {
    font-size: 18px;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .category-btn {
    padding: 1rem 0.5rem;
    min-height: 70px;
  }

  .faq-container,
  .admin-container {
    padding: 0.5rem 0.75rem 2rem;
  }

  .back-btn {
    margin: 0.75rem 0.75rem 0.25rem;
  }

  .header {
    padding: 0.75rem 1rem;
  }

  .header-text::before {
    font-size: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .admin-faq-item {
    flex-direction: column;
  }

  .admin-faq-item .actions {
    align-self: flex-end;
  }

  .welcome-screen {
    padding: 2rem 1rem;
    min-height: 50vh;
  }

  .welcome-icon {
    font-size: 3rem;
  }

  .welcome-title {
    font-size: 1.4rem;
  }

  .all-questions-row {
    padding: 0.75rem 0.75rem 0;
  }
}

/* ===== Admin Category Headers ===== */
.admin-cat-header {
  margin: 1rem 0 0.5rem;
  font-size: 0.9rem;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-cat-icon {
  width: 18px;
  height: 18px;
  color: var(--icon-color);
  display: inline-flex;
}

.admin-cat-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== Focus Styles (Accessibility) ===== */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ===== Print ===== */
@media print {
  .audio-controls, .play-btn, .speed-control, .back-btn, .lang-toggle, .settings-btn, .all-questions-btn {
    display: none !important;
  }
  .faq-answer {
    display: block !important;
  }
  .header {
    position: static;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
