body {
  font-family: Arial, sans-serif;
  background: #f6f7fb;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  text-align: center;
}

.subtitle {
  color: #555;
  margin-bottom: 16px;
}

.privacy {
  background: #e6f7ee;
  color: #065f46;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

/* ===== MAIN LAYOUT ===== */
.mirror-row {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

/* CAMERA PANEL (UNCHANGED SIZE) */
.mirror-panel video {
  width: 420px;
  max-width: 100%;
  border-radius: 12px;
  background: #000;
}

/* RIGHT PANEL */
.mouth-panel {
  width: 360px;
  text-align: center;
}

/* MOUTH IMAGE — SMALL & CONSISTENT */
.mouth-panel img {
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 12px;
}

/* INSTRUCTIONS BOX */
.instructions {
  text-align: left;
  background: #fff;
  padding: 12px;
  border-radius: 10px;
  font-size: 14px;
}

.instructions h3 {
  margin-top: 0;
}

.instructions ul {
  margin-left: 18px;
  margin-top: 6px;
}

.instructions li {
  margin-bottom: 4px;
}

/* BUTTONS */
#actionButtons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.controls {
  margin-top: 20px;
}

.controls button {
  padding: 8px 16px;
  margin: 0 6px;
  cursor: pointer;
}

/* NAV */
.nav-links {
  margin-top: 20px;
}

.nav-links a {
  margin: 0 10px;
  color: #2563eb;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mirror-row {
    flex-direction: column;
    align-items: center;
  }

  .mouth-panel {
    width: 100%;
    max-width: 360px;
  }
}
/* ===============================
   V2 PLACEHOLDERS (INACTIVE)
================================ */

.hidden {
  display: none;
}

.micro-tip {
  background: #eef4ff;
  border-left: 4px solid #4f7cff;
  padding: 8px 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  font-style: italic;
  color: #1e3a8a;
  border-radius: 6px;
}


.ipa-toggle {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #777;
  cursor: pointer;
  text-align: right;
}

.ipa-text {
  margin-left: 6px;
  font-family: monospace;
}

.progress-indicator {
  margin-top: 14px;
  font-size: 0.9rem;
  color: #2e7d32;
  text-align: center;
}
.contrast-note {
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 8px 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #92400e;
  border-radius: 6px;
}

