/* ============================================================
   QUIZZY ENTERPRISE — Feuille de style principale v2.0
   beninganxo.com | Design moderne, responsive, bilingue
   ============================================================ */

/* --- Variables --- */
:root {
  --primary:   #6c63ff;
  --secondary: #ff6584;
  --accent:    #ffd700;
  --dark:      #1a1a2e;
  --dark2:     #16213e;
  --dark3:     #0f3460;
  --success:   #27ae60;
  --info:      #3498db;
  --warning:   #f39c12;
  --danger:    #e74c3c;
  --light:     #f8f9fa;
  --card-bg:   #ffffff;
  --text:      #2d3748;
  --muted:     #718096;
  --border:    #e2e8f0;
  --radius:    14px;
  --shadow:    0 4px 20px rgba(108,99,255,0.10);
  --shadow-lg: 0 8px 40px rgba(108,99,255,0.18);
  --transition: all .25s ease;
  --navbar-h:  64px;
}

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

body {
  font-family: 'Poppins', 'Nunito', system-ui, sans-serif;
  color: var(--text);
  background: #f0f2f8;
  font-size: 15px;
  line-height: 1.65;
  min-height: 100vh;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--dark); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary); }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 7px; height: 7px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.qw-navbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 50%, var(--dark3) 100%) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
  height: var(--navbar-h);
  z-index: 1030;
}

.qw-navbar .navbar-brand {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  letter-spacing: -0.5px;
  background: linear-gradient(90deg, #fff 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.qw-navbar .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-weight: 500;
  font-size: .9rem;
  padding: .5rem .75rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.qw-navbar .nav-link:hover,
.qw-navbar .nav-link.active {
  color: var(--accent) !important;
  background: rgba(255,255,255,.08);
}

.qw-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeDown .2s ease;
}

.qw-navbar .dropdown-item:hover { background: rgba(108,99,255,.12); color: var(--primary); }

.lang-switcher { display: flex; gap: 4px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.qw-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, var(--dark3) 100%);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.qw-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.qw-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}
.qw-hero-orb-1 { width: 400px; height: 400px; background: var(--primary); top: -100px; right: -100px; }
.qw-hero-orb-2 { width: 300px; height: 300px; background: var(--secondary); bottom: -80px; left: 10%; }

.qw-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.2; }
.qw-hero h1 span { background: linear-gradient(90deg, var(--accent), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.qw-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; }

.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1; }
.hero-stat .lbl { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; }

/* Boutons hero flottants animés */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.hero-illustration { animation: float 4s ease-in-out infinite; }

/* ============================================================
   CARDS
   ============================================================ */
.qw-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  overflow: hidden;
}
.qw-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }

/* --- Quiz card --- */
.quiz-card { position: relative; cursor: pointer; }
.quiz-card .card-img-top {
  height: 140px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark3) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: rgba(255,255,255,.5);
}
.quiz-card .card-cat-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 3px 10px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; color: #fff;
  backdrop-filter: blur(8px);
}
.quiz-card .card-body { padding: 1.2rem; }
.quiz-card .quiz-title { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: .4rem; line-height: 1.3; }
.quiz-card .quiz-meta { font-size: .78rem; color: var(--muted); display: flex; gap: .8rem; flex-wrap: wrap; }
.quiz-card .quiz-footer { padding: .8rem 1.2rem; background: #f8f9fa; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }

/* --- Category card --- */
.cat-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 2px solid transparent;
  color: #fff;
}
.cat-card:hover {
  transform: translateY(-7px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  filter: brightness(1.08);
}
.cat-card .cat-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.cat-card .cat-name { font-weight: 700; font-size: .92rem; color: #fff; }
.cat-card .cat-count { font-size: .75rem; opacity: .85; color: #fff; }

/* ============================================================
   QUIZ ENGINE (page de quiz)
   ============================================================ */
.quiz-engine {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
}

.quiz-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%);
  padding: 1.5rem 2rem;
  color: #fff;
}

.quiz-progress-bar {
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 4px;
  transition: width .4s ease;
}

.quiz-timer {
  font-size: 1.6rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.quiz-timer.danger { color: var(--danger); animation: pulse .5s infinite; }

.quiz-body { padding: 2rem; }
.quiz-question { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 1.5rem; line-height: 1.4; }

.answer-option {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: .7rem;
  background: #fff;
  font-weight: 500;
}
.answer-option:hover { border-color: var(--primary); background: #f0effe; }
.answer-option.selected { border-color: var(--primary); background: #f0effe; }
.answer-option.correct { border-color: var(--success); background: #f0fdf4; color: var(--success); }
.answer-option.wrong { border-color: var(--danger); background: #fff5f5; color: var(--danger); }
.answer-option .option-letter {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--border); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; flex-shrink: 0;
  transition: var(--transition);
}
.answer-option.selected .option-letter { background: var(--primary); color: #fff; }
.answer-option.correct .option-letter { background: var(--success); color: #fff; }
.answer-option.wrong .option-letter { background: var(--danger); color: #fff; }

/* True/False */
.tf-option {
  border: 3px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: var(--transition);
}
.tf-option:hover { border-color: var(--primary); background: #f0effe; }
.tf-option.true-opt { color: var(--success); }
.tf-option.false-opt { color: var(--danger); }
.tf-option.selected.true-opt { background: #f0fdf4; border-color: var(--success); }
.tf-option.selected.false-opt { background: #fff5f5; border-color: var(--danger); }

/* ============================================================
   RÉSULTATS
   ============================================================ */
.result-score-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark3) 100%);
  color: #fff;
  box-shadow: 0 0 40px rgba(108,99,255,.4);
}
.result-score-circle .score-pct { font-size: 3rem; font-weight: 800; line-height: 1; }
.result-score-circle .score-lbl { font-size: .8rem; opacity: .8; }

/* ============================================================
   DASHBOARD / PROFIL
   ============================================================ */
.stat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.stat-card .stat-icon { font-size: 2rem; margin-bottom: .5rem; }
.stat-card .stat-value { font-size: 2rem; font-weight: 800; line-height: 1; }
.stat-card .stat-label { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-top: .3rem; }

/* Badge card */
.badge-item {
  text-align: center;
  padding: 1rem .5rem;
}
.badge-item .badge-icon {
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin: 0 auto 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,.15);
}
.badge-item .badge-name { font-size: .78rem; font-weight: 600; }
.badge-item .badge-rarity {
  font-size: .65rem; padding: 2px 8px; border-radius: 20px;
  text-transform: uppercase; font-weight: 700;
}
.rarity-commun    { background: #e2e8f0; color: #64748b; }
.rarity-rare      { background: #dbeafe; color: #2563eb; }
.rarity-épique    { background: #ede9fe; color: #7c3aed; }
.rarity-légendaire{ background: #fef3c7; color: #d97706; animation: shimmer 2s infinite; }

@keyframes shimmer {
  0%,100% { opacity: 1; }
  50%      { opacity: .6; }
}

/* Privilege banner */
.privilege-banner {
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  color: #fff;
  font-weight: 600;
}

/* ============================================================
   LEADERBOARD
   ============================================================ */
.lb-row {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.2rem;
  border-radius: 10px;
  background: #fff;
  margin-bottom: .5rem;
  box-shadow: 0 1px 6px rgba(0,0,0,.05);
  transition: var(--transition);
}
.lb-row:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.lb-rank { font-size: 1.1rem; font-weight: 800; min-width: 36px; text-align: center; }
.lb-rank-1 { color: var(--accent); }
.lb-rank-2 { color: #adb5bd; }
.lb-rank-3 { color: #cd7f32; }
.lb-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; flex-shrink: 0; }
.lb-username { font-weight: 700; flex: 1; }
.lb-points { font-weight: 800; color: var(--primary); }

/* ============================================================
   ADMIN PANEL
   ============================================================ */
.admin-sidebar {
  background: var(--dark);
  min-height: calc(100vh - var(--navbar-h));
  padding: 1.5rem 1rem;
}
.admin-sidebar .nav-link {
  color: rgba(255,255,255,.7);
  padding: .7rem 1rem;
  border-radius: 8px;
  font-weight: 500;
  margin-bottom: .2rem;
  transition: var(--transition);
}
.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
  background: var(--primary);
  color: #fff;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ============================================================
   FORMULAIRES
   ============================================================ */
.qw-form-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
  max-width: 480px;
  margin: 0 auto;
}

.form-control, .form-select {
  border-radius: 10px;
  border: 2px solid var(--border);
  padding: .7rem 1rem;
  font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(108,99,255,.12);
}

.btn { border-radius: 10px; font-weight: 600; padding: .55rem 1.4rem; transition: var(--transition); }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: #5a52e0; border-color: #5a52e0; transform: translateY(-1px); box-shadow: 0 4px 15px rgba(108,99,255,.35); }
.btn-warning { color: #1a1a2e !important; }
.btn-warning:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(255,215,0,.35); }
.btn-success:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(39,174,96,.35); }

/* ============================================================
   QUIZ CREATOR (no-code)
   ============================================================ */
.creator-step {
  display: none;
}
.creator-step.active {
  display: block;
  animation: fadeIn .3s ease;
}

.step-indicator {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}
.step-dot {
  flex: 1; height: 6px;
  background: var(--border);
  transition: var(--transition);
}
.step-dot:first-child { border-radius: 3px 0 0 3px; }
.step-dot:last-child { border-radius: 0 3px 3px 0; }
.step-dot.done { background: var(--primary); }

.question-builder {
  background: #f8f9fa;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
}
.question-builder:hover { border-color: var(--primary); }

.answer-input-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .6rem;
}
.answer-correct-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  background: #fff;
}
.answer-correct-toggle.checked {
  background: var(--success);
  border-color: var(--success);
}

/* ============================================================
   TUTORIELS
   ============================================================ */
.tutorial-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.tutorial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.tutorial-card .tut-header {
  padding: 1rem 1.2rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.tutorial-card .tut-body { padding: 1.2rem; }
.tutorial-cat-vie         { background: linear-gradient(90deg, #e67e22, #d35400); }
.tutorial-cat-informatique{ background: linear-gradient(90deg, #1abc9c, #16a085); }
.tutorial-cat-anglais     { background: linear-gradient(90deg, #e74c3c, #c0392b); }
.tutorial-cat-francais    { background: linear-gradient(90deg, #9b59b6, #8e44ad); }
.tutorial-cat-astuces     { background: linear-gradient(90deg, #f1c40f, #f39c12); }
.tutorial-cat-sante       { background: linear-gradient(90deg, #27ae60, #1e8449); }

/* ============================================================
   SECTION TITRES
   ============================================================ */
.section-title {
  font-size: 1.6rem;
  font-weight: 800;
  position: relative;
  padding-bottom: .6rem;
  margin-bottom: 1.5rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}
.section-title.text-center::after {
  left: 50%; transform: translateX(-50%);
}

/* ============================================================
   FOOTER
   ============================================================ */
.qw-footer {
  background: var(--dark);
  color: rgba(255,255,255,.85);
}
.qw-footer h5, .qw-footer h6 { color: #fff; }
.footer-link {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display: inline-block;
  margin-bottom: .3rem;
  transition: var(--transition);
}
.footer-link:hover { color: var(--accent); padding-left: 4px; }
.qw-footer hr { border-color: rgba(255,255,255,.12); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn    { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown  { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse     { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
@keyframes loadBar   { from { width: 0; } to { width: 100%; } }
@keyframes bounceIn  { 0% { transform: scale(0.3); opacity: 0; } 50% { transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { transform: scale(1); opacity: 1; } }

.animate-fadein { animation: fadeIn .4s ease both; }

/* ============================================================
   DIVERS
   ============================================================ */
.qw-badge-pill {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .3rem .8rem; border-radius: 20px;
  font-size: .76rem; font-weight: 700;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
}
.empty-state i { font-size: 3.5rem; margin-bottom: 1rem; opacity: .35; }

/* Alert amélioré */
.alert { border-radius: var(--radius); border: none; }
.alert-success { background: #f0fdf4; color: #166534; border-left: 4px solid var(--success); }
.alert-danger   { background: #fff5f5; color: #991b1b; border-left: 4px solid var(--danger); }
.alert-info     { background: #eff6ff; color: #1e40af; border-left: 4px solid var(--info); }
.alert-warning  { background: #fffbeb; color: #92400e; border-left: 4px solid var(--warning); }

/* Table responsive */
.qw-table { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.qw-table thead tr { background: linear-gradient(90deg, var(--dark), var(--dark2)); color: #fff; }
.qw-table tbody tr:hover { background: #f0effe; }

/* AdSense zones */
.adsense-top    { min-height: 90px; margin: 1rem 0; background: #f0f2f8; border: 1px dashed #d1d5db; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .75rem; }
.adsense-sidebar{ min-height: 250px; margin: 1rem 0; background: #f0f2f8; border: 1px dashed #d1d5db; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .75rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .qw-hero { min-height: 380px; }
  .qw-hero h1 { font-size: 1.8rem; }
  .hero-stats { gap: 1rem; }
  .quiz-body { padding: 1.2rem; }
  .qw-form-card { padding: 1.5rem; }
  .section-title { font-size: 1.3rem; }
  .qw-navbar { height: auto; }
}

@media (max-width: 480px) {
  .qw-hero h1 { font-size: 1.5rem; }
  .answer-option { padding: .8rem; font-size: .9rem; }
}

/* ============================================================
   DARK MODE (optionnel - toggle JS)
   ============================================================ */
body.dark-mode {
  --card-bg: #1e1e2e;
  --text: #e2e8f0;
  --border: #2d3748;
  --muted: #94a3b8;
  background: #0f172a;
}
body.dark-mode .qw-card,
body.dark-mode .stat-card,
body.dark-mode .admin-card,
body.dark-mode .quiz-engine { background: #1e1e2e; border-color: #2d3748; }
body.dark-mode h1,body.dark-mode h2,body.dark-mode h3,
body.dark-mode h4,body.dark-mode h5,body.dark-mode h6 { color: #e2e8f0; }
body.dark-mode .form-control,body.dark-mode .form-select { background: #1e1e2e; color: #e2e8f0; border-color: #2d3748; }
body.dark-mode .answer-option { background: #1e1e2e; border-color: #2d3748; color: #e2e8f0; }
body.dark-mode .answer-option:hover { background: #2d2d4e; }
body.dark-mode .quiz-card .quiz-footer { background: #1a1a2e; }
body.dark-mode .lb-row { background: #1e1e2e; }

/* ============================================================
   QUESTION PICKER SCREEN
   ============================================================ */
.picker-btn {
  min-width: 100px;
  transition: transform .15s, box-shadow .15s;
}
.picker-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(108,99,255,.3);
}

/* ============================================================
   AUDIO WORD BADGE (prononciation -ED)
   ============================================================ */
.audio-word-badge {
  display: inline-block;
  background: var(--primary, #6c63ff);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  padding: .35rem 1.2rem;
  border-radius: 2rem;
  letter-spacing: .04em;
}
.audio-speak-btn {
  font-size: .85rem;
  border-radius: 2rem;
  padding: .35rem .9rem;
}
.audio-speak-btn:active {
  transform: scale(.95);
}
