/**
 * noqt — eğitim odaklı UI katmanı (öğrenci + öğretmen)
 * styles.css sonrası yüklenir; mevcut sınıfları genişletir.
 */

:root {
  --edu-radius-xl: 22px;
  --edu-radius-lg: 18px;
  --edu-blur: 20px;
  --edu-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
  --edu-shadow-glow: 0 0 56px rgba(184, 232, 92, 0.1);
  --edu-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --edu-violet: #9d8df9;
  --edu-cyan: #38e8ff;
  --edu-glass: rgba(12, 14, 20, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@keyframes edu-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes edu-shimmer {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

/* ——— Kabuklar ——— */
.student-shell {
  position: relative;
  isolation: isolate;
}
.student-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 55% at 88% 12%, rgba(184, 232, 92, 0.11), transparent 52%),
    radial-gradient(ellipse 65% 50% at 8% 78%, rgba(56, 232, 255, 0.08), transparent 48%),
    radial-gradient(ellipse 55% 42% at 48% 102%, rgba(157, 141, 249, 0.07), transparent 46%);
}

.teacher-shell {
  position: relative;
  isolation: isolate;
}
.teacher-shell::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 75% 48% at 12% 12%, rgba(157, 141, 249, 0.12), transparent 54%),
    radial-gradient(ellipse 60% 44% at 92% 68%, rgba(184, 232, 92, 0.08), transparent 50%),
    radial-gradient(ellipse 45% 35% at 50% 95%, rgba(56, 232, 255, 0.05), transparent 45%);
}

.student-shell > *,
.teacher-shell > * {
  position: relative;
  z-index: 1;
}

.teacher-shell .main {
  max-width: 960px;
}

/* ——— Üst bar ——— */
.edu-topbar {
  backdrop-filter: blur(var(--edu-blur)) saturate(1.4);
  -webkit-backdrop-filter: blur(var(--edu-blur)) saturate(1.4);
  background: var(--edu-glass) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05),
    0 12px 40px rgba(0, 0, 0, 0.25);
}

.edu-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.edu-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--edu-cyan) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    var(--edu-shadow-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: #0a0b0f;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.04em;
}

.teacher-shell .edu-brand-mark {
  background: linear-gradient(135deg, var(--edu-violet) 0%, var(--accent) 100%);
}

.edu-brand-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.2;
  display: block;
}
.edu-brand-title:hover {
  color: var(--accent);
}

.edu-brand-sub {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.edu-brand-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem 0;
  font: inherit;
  color: inherit;
  text-align: left;
}
.edu-brand-logo-img {
  height: 32px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  display: block;
}
.edu-brand-logo-img--teacher {
  height: 30px;
  max-width: 112px;
  flex-shrink: 0;
}
.edu-brand-text {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.edu-nav .nav-btn {
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
}
.edu-nav .nav-btn:hover {
  background: rgba(255, 255, 255, 0.06);
}

a.nav-btn.active,
.nav-btn.active {
  background: linear-gradient(145deg, rgba(184, 232, 92, 0.2), rgba(184, 232, 92, 0.08)) !important;
  color: var(--accent) !important;
  box-shadow:
    inset 0 0 0 1px rgba(184, 232, 92, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.2) !important;
}

/* ——— Öğrenci giriş (labs seçim ekranı) ——— */
.edu-view-labs {
  animation: edu-fade-up 0.55s var(--edu-ease) both;
}

.edu-labs-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .edu-labs-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.edu-labs-hero-copy {
  text-align: center;
}
@media (min-width: 768px) {
  .edu-labs-hero-copy {
    text-align: left;
  }
}

.edu-eyebrow {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.edu-display {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 55%, var(--edu-cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: edu-shimmer 8s linear infinite alternate;
}

/* Wordmark (PNG) — gradient başlık animasyonu kapalı */
.edu-hero-wordmark-wrap.edu-display {
  animation: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: inherit;
  line-height: 0;
  margin-bottom: 0.65rem;
}
.edu-hero-wordmark {
  width: min(300px, 88vw);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .edu-labs-hero-copy .edu-hero-wordmark {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edu-display {
    animation: none;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--text);
  }
}

.edu-lead {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 28rem;
  margin: 0 auto 1.25rem;
}
@media (min-width: 768px) {
  .edu-lead {
    margin: 0 0 1.25rem;
  }
}

.edu-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
@media (min-width: 768px) {
  .edu-cta-row {
    justify-content: flex-start;
  }
}

.edu-cta-row .cta {
  border-radius: 999px;
  padding: 0.7rem 1.5rem;
  box-shadow: 0 4px 20px rgba(168, 224, 74, 0.25);
}
.edu-cta-row .cta-secondary {
  box-shadow: none;
}

/* Hero görsel (SVG sarmalayıcı) */
.edu-hero-visual {
  position: relative;
  border-radius: var(--edu-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, rgba(28, 30, 42, 0.95) 0%, rgba(14, 16, 22, 0.92) 100%);
  box-shadow: var(--edu-shadow), var(--edu-shadow-glow);
  aspect-ratio: 5 / 4;
  max-height: 320px;
}
.edu-hero-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.edu-labs-courses {
  margin-top: 0.5rem;
}

.edu-section-head {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.edu-course-grid {
  gap: 1.25rem !important;
}

.edu-course-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--edu-radius-lg) !important;
  padding: 1.75rem 1.5rem !important;
  align-items: flex-start !important;
  text-align: left !important;
  transition:
    transform 0.35s var(--edu-ease),
    border-color 0.25s ease,
    box-shadow 0.35s var(--edu-ease) !important;
}
.edu-course-card::before {
  content: '';
  position: absolute;
  inset: -40%;
  opacity: 0.35;
  pointer-events: none;
  background: radial-gradient(circle at 30% 20%, var(--accent), transparent 45%);
}
.edu-course-card--dj::before {
  background: radial-gradient(circle at 25% 30%, rgba(168, 224, 74, 0.5), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(34, 211, 238, 0.25), transparent 40%);
}
.edu-course-card--prod::before {
  background: radial-gradient(circle at 70% 20%, rgba(139, 124, 247, 0.45), transparent 50%);
}
.edu-course-card > * {
  position: relative;
  z-index: 1;
}
.edu-course-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--edu-shadow), 0 0 0 1px rgba(168, 224, 74, 0.15) !important;
}

.edu-course-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.edu-course-card h2 {
  font-size: 1.35rem !important;
  margin-bottom: 0.4rem !important;
}
.edu-course-card .cta {
  margin-top: 0.5rem;
  border-radius: 999px;
}

/* ——— Öğrenci dashboard / paneller ——— */
.edu-view-panel .edu-page-title {
  margin-bottom: 0.35rem;
}
.edu-page-sub {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.edu-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.edu-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 520px) {
  .edu-kpi-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.edu-kpi-card {
  background: linear-gradient(145deg, var(--surface) 0%, rgba(26, 26, 31, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--edu-radius-lg);
  padding: 1rem 0.85rem;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s var(--edu-ease);
  animation: edu-fade-up 0.5s var(--edu-ease) both;
}
.edu-kpi-grid .edu-kpi-card:nth-child(1) {
  animation-delay: 0.05s;
}
.edu-kpi-grid .edu-kpi-card:nth-child(2) {
  animation-delay: 0.1s;
}
.edu-kpi-grid .edu-kpi-card:nth-child(3) {
  animation-delay: 0.15s;
}
.edu-kpi-grid .edu-kpi-card:nth-child(4) {
  animation-delay: 0.2s;
}
.edu-kpi-card:hover {
  border-color: rgba(168, 224, 74, 0.35);
  transform: translateY(-2px);
}

.edu-kpi-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 0.35rem;
  filter: grayscale(0.2);
}

.edu-kpi-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.edu-kpi-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.edu-panel {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(18, 20, 28, 0.82) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--edu-radius-lg);
  padding: 1.25rem 1.3rem 1.35rem;
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  box-shadow: var(--edu-shadow), 0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}
.edu-panel h3 {
  font-size: 0.78rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.85rem !important;
  font-weight: 600 !important;
}

.edu-data-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.82rem;
  line-height: 1.4;
}
.edu-data-row + .edu-data-row {
  margin-top: 0.45rem;
}

.edu-data-row--highlight {
  border-color: rgba(168, 224, 74, 0.25);
  background: rgba(168, 224, 74, 0.06);
}

.edu-pill {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: var(--accent-dim);
  color: var(--accent);
}

/* ——— Öğretmen KPI ——— */
.edu-teacher-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .edu-teacher-kpis {
    grid-template-columns: repeat(4, 1fr);
  }
}

.edu-teacher-kpi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  background: linear-gradient(145deg, var(--surface) 0%, rgba(26, 26, 31, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--edu-radius-lg);
  padding: 1.1rem 1rem;
  transition: border-color 0.25s ease, transform 0.25s var(--edu-ease);
  animation: edu-fade-up 0.5s var(--edu-ease) both;
}
.edu-teacher-kpi:hover {
  border-color: rgba(168, 224, 74, 0.3);
  transform: translateY(-2px);
}
.edu-teacher-kpi .edu-kpi-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.edu-teacher-kpi .edu-kpi-label {
  text-align: left;
}
.edu-teacher-kpi .edu-kpi-value {
  font-size: 1.5rem;
}

.edu-page-header {
  margin-bottom: 1.25rem;
}
.edu-page-header .page-title {
  margin-bottom: 0.35rem;
}
.edu-page-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  max-width: 36rem;
}

/* ——— Modül listesi (ana sayfa) ——— */
.edu-week-card.week-card {
  border-left: 3px solid rgba(168, 224, 74, 0.35);
  transition:
    transform 0.3s var(--edu-ease),
    border-color 0.2s ease,
    box-shadow 0.3s var(--edu-ease);
}
.edu-week-card.week-card:hover {
  transform: translateX(4px);
  box-shadow: -4px 0 20px rgba(168, 224, 74, 0.08);
}
.edu-week-card.week-card.done {
  border-left-color: var(--accent);
}

/* ——— CTA genel ——— */
a.cta,
button.cta {
  transition:
    transform 0.2s var(--edu-ease),
    box-shadow 0.25s ease;
}
a.cta:hover,
button.cta:hover {
  transform: translateY(-1px);
}

/* ——— İlerleme hapı (+ seri) ——— */
.student-shell .progress-pill {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(168, 224, 74, 0.12);
  border: 1px solid rgba(168, 224, 74, 0.2);
  color: var(--accent);
  font-weight: 600;
}

/* Quiz sekmeleri — yumuşak hap */
.student-shell .quiz-mode-tabs {
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.student-shell .quiz-mode-btn {
  border-radius: 999px !important;
  border: none !important;
}
.student-shell .quiz-mode-btn.active {
  box-shadow: 0 2px 12px rgba(168, 224, 74, 0.15);
}

/* ——— Giriş / kayıt ——— */
.edu-auth-page .main {
  max-width: 420px;
}
.edu-auth-main--wide {
  max-width: 520px !important;
}
.edu-auth-card {
  margin-top: 1.5rem;
  padding: 1.75rem 1.5rem 1.5rem !important;
}
.edu-auth-title {
  font-size: clamp(1.75rem, 4vw, 2.35rem) !important;
  margin-bottom: 0.35rem !important;
  animation: none !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--text) !important;
}
.edu-auth-lead {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.edu-auth-form .cta {
  width: 100%;
  border-radius: 999px;
  margin-top: 0.25rem;
}
.edu-auth-links {
  margin-top: 1rem;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.edu-auth-mark-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.35rem;
}
.edu-noqt-logo {
  width: auto;
  height: 44px;
  max-width: 152px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 24px rgba(255, 255, 255, 0.08));
}
.edu-auth-mark-svg {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 6px 16px rgba(168, 224, 74, 0.2));
}

/* Öğrenci paneli — haftalık program + rezervasyon */
.edu-schedule-panel .schedule-table-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
  border-radius: var(--radius-sm);
}
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}
.schedule-table th,
.schedule-table td {
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.45rem 0.55rem;
  text-align: left;
}
.schedule-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.schedule-book-row {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .schedule-book-row {
    grid-template-columns: 1fr 1fr;
  }
}
.schedule-book-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.schedule-book-head {
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 0.15rem;
}

/* Öğretmen rezervasyonlar */
.edu-bookings-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.edu-booking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.edu-booking-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--edu-radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: flex-start;
}
.edu-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.edu-success-box {
  margin-top: 0.5rem;
  padding: 1rem 1.1rem;
  border-radius: var(--edu-radius-lg);
  background: rgba(168, 224, 74, 0.08);
  border: 1px solid rgba(168, 224, 74, 0.22);
}

/* Seri (header) + engagement panel + SoundGym */
.streak-brief {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
}
.streak-brief.hidden {
  display: none !important;
}

.edu-engagement-panel {
  margin-bottom: 0.25rem;
}
.edu-engagement-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
}
@media (min-width: 520px) {
  .edu-engagement-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.edu-engagement-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.edu-engagement-emoji {
  font-size: 1.25rem;
  line-height: 1;
}
.edu-engagement-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.edu-engagement-lbl {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 600;
}
.edu-daily-goal {
  margin-top: 0.85rem;
}
.edu-daily-goal-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.edu-daily-goal-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.edu-daily-goal-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--edu-cyan));
  transition: width 0.45s var(--edu-ease);
}

.soundgym-picks {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.soundgym-q {
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.soundgym-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.soundgym-opt-btn {
  font-size: 0.82rem !important;
  padding: 0.5rem 0.85rem !important;
}
.soundgym-tempo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}

/* ——— SoundGym / mini oyun (gelişmiş) ——— */
.sg-hero {
  margin-bottom: 1.25rem;
}
.sg-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.35rem;
  color: var(--text);
}
.sg-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.sg-hud {
  margin-top: 0.75rem;
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(168, 224, 74, 0.12);
  border: 1px solid rgba(168, 224, 74, 0.25);
}
.sg-hud-combo {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.sg-menu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
}
@media (min-width: 520px) {
  .sg-menu-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.sg-card {
  text-align: left;
  padding: 1rem 1.1rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) !important;
  cursor: pointer;
  transition:
    transform 0.2s var(--edu-ease),
    border-color 0.2s ease;
}
.sg-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 124, 247, 0.35) !important;
}
.sg-card-kicker {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--edu-cyan);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.sg-card-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}
.sg-card-desc {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.sg-card--theory .sg-card-kicker {
  color: var(--accent);
}
.sg-card--featured {
  grid-column: 1 / -1;
  border-color: rgba(168, 224, 74, 0.28) !important;
  background: linear-gradient(145deg, rgba(168, 224, 74, 0.1), rgba(94, 234, 212, 0.06)) !important;
}
.sg-card--featured .sg-card-kicker {
  color: var(--accent);
}
.sg-drill-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.55rem 0.75rem;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(139, 124, 247, 0.12);
  border: 1px solid rgba(139, 124, 247, 0.22);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}
.sg-drill-bar span {
  color: var(--text);
}
.sg-drill-summary {
  text-align: center;
  padding: 1.5rem 1rem;
}
.sg-drill-score {
  font-size: 1.65rem;
  margin: 0.75rem 0 1rem;
  color: var(--edu-cyan);
}
.sg-points-flash {
  text-align: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.sg-points-flash--ok {
  color: var(--accent);
}
.sg-points-flash--bad {
  color: rgba(255, 120, 120, 0.95);
}
.sg-arena--live {
  box-shadow:
    0 0 0 1px rgba(94, 234, 212, 0.25),
    0 0 28px rgba(94, 234, 212, 0.12);
  border-color: rgba(94, 234, 212, 0.35);
}
.sg-status--ok {
  color: var(--accent) !important;
}
.sg-status--bad {
  color: rgba(255, 140, 140, 0.95) !important;
}
.sg-replay-wrap {
  margin: 0.35rem 0 0.65rem;
  text-align: center;
}
.sg-replay-btn {
  font-size: 0.8rem !important;
  padding: 0.45rem 0.85rem !important;
}
.sg-after-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0.85rem auto 0;
}
.sg-theory-fb--ok {
  color: var(--accent) !important;
}
.sg-theory-fb--bad {
  color: rgba(255, 140, 140, 0.95) !important;
}
.sg-back {
  margin-bottom: 0.85rem;
}
.sg-setup-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 0.65rem;
}
.sg-diff-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.sg-arena {
  margin-top: 0.5rem;
  padding: 1rem 1.05rem 1.15rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.sg-phase-pill {
  display: flex;
  justify-content: center;
  margin-bottom: 0.85rem;
}
.sg-phase-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  height: 3rem;
  border-radius: 12px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, rgba(139, 124, 247, 0.35), rgba(94, 234, 212, 0.2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
}
.sg-beat-row {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  min-height: 2.25rem;
}
.sg-beat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition:
    transform 0.08s ease,
    background 0.08s ease,
    box-shadow 0.12s ease;
}
.sg-beat-dot--on {
  transform: scale(1.35);
  background: var(--edu-cyan);
  box-shadow: 0 0 14px rgba(94, 234, 212, 0.55);
}
.sg-status {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 0.85rem;
  line-height: 1.45;
}
.sg-start-btn {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 0.5rem;
}
.sg-start-btn--done {
  opacity: 0.55;
}
.sg-choice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
@media (min-width: 420px) {
  .sg-choice-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.sg-choice {
  padding: 0.75rem 1rem !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
}
.sg-choice--alt {
  opacity: 0.92;
}
.sg-theory-wrap {
  margin-top: 0.25rem;
}
.sg-theory-fb {
  margin-top: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ——— Öğretmen filtre sekmeleri (başvurular) ——— */
.teacher-shell .quiz-mode-tabs {
  flex-wrap: wrap;
  padding: 5px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  gap: 0.25rem;
}
.teacher-shell .quiz-mode-btn {
  border-radius: 999px !important;
  border: none !important;
  font-size: 0.78rem;
  padding: 0.45rem 0.75rem;
}
.teacher-shell .quiz-mode-btn.active {
  box-shadow: 0 2px 12px rgba(139, 124, 247, 0.2);
}

/* ——— Öğrenci listesi kartları ——— */
.edu-student-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.edu-student-card {
  padding: 1.1rem 1.15rem !important;
  text-align: left !important;
  transition:
    transform 0.25s var(--edu-ease),
    border-color 0.2s ease;
}
.edu-student-card:hover {
  transform: translateY(-2px);
  border-color: rgba(168, 224, 74, 0.22);
}
.edu-student-card-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}
.edu-student-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.edu-student-name:hover {
  color: var(--accent);
}
.edu-student-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
  width: 100%;
}
.edu-student-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.edu-student-actions .module-resource-link {
  font-size: 0.78rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.edu-pill--pending {
  background: rgba(250, 190, 80, 0.15);
  color: #f5c842;
  border: 1px solid rgba(250, 190, 80, 0.25);
}
.edu-pill--approved {
  background: rgba(80, 200, 130, 0.15);
  color: #6ee7a8;
  border: 1px solid rgba(80, 200, 130, 0.25);
}
.edu-pill--rejected {
  background: rgba(232, 92, 92, 0.12);
  color: #f0a0a0;
  border: 1px solid rgba(232, 92, 92, 0.22);
}

/* ——— Başvuru kartı ——— */
.edu-app-card {
  padding: 1rem 1.1rem !important;
  transition:
    transform 0.25s var(--edu-ease),
    border-color 0.2s ease;
}
.edu-app-card:hover {
  border-color: rgba(139, 124, 247, 0.25);
}
.edu-app-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.65rem;
}
.edu-app-card-actions .module-resource-link {
  font-size: 0.75rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

/* ——— noqt.events açık tema overrides ——— */

/* Gradient arka plan overlay'lerini kapat */
.student-shell::before,
.teacher-shell::before { display: none; }

/* Topbar — açık */
.edu-topbar {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: #ffffff !important;
  border-bottom: 1px solid #E6E4DF !important;
  box-shadow: 0 1px 0 #E6E4DF !important;
}

/* Logo — mevcut PNG karanlık, light temada görünür */
.edu-brand-logo-img {
  filter: none;
}

/* Nav butonlar */
.edu-nav .nav-btn:hover {
  background: #F3F1EC !important;
  color: #1A1712 !important;
}
a.nav-btn.active,
.nav-btn.active {
  background: #1A1712 !important;
  color: #F9F8F5 !important;
  box-shadow: none !important;
}

/* edu-display başlık — gradient kaldır */
.edu-display {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  color: var(--text) !important;
  animation: none !important;
}

/* edu-eyebrow — accent rengi güncelle */
.edu-eyebrow {
  color: var(--text-muted) !important;
}

/* Panel / card yüzeyleri */
.edu-panel {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
}

/* Auth */
.edu-auth-page { background: #F9F8F5 !important; }
.edu-auth-card {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
}
.edu-auth-title { color: #1A1712 !important; }
.edu-auth-lead  { color: #807A70 !important; }

/* Giriş formu input/label */
.login-label { color: #807A70 !important; }
.login-input {
  background: #F9F8F5 !important;
  border: 1px solid #E6E4DF !important;
  color: #1A1712 !important;
}
.login-input:focus {
  border-color: #1A1712 !important;
  outline: none !important;
}
.login-error {
  background: #FEF2F2 !important;
  border: 1px solid #FECACA !important;
  color: #C0392B !important;
}

/* CTA butonu */
.cta {
  background: #1A1712 !important;
  color: #F9F8F5 !important;
  box-shadow: none !important;
}
.cta:hover { opacity: 0.88; }

/* Bağlantılar */
.module-resource-link { color: #807A70 !important; }
.module-resource-link:hover { color: #1A1712 !important; }
.module-resource-link.cheatsheet {
  background: #1A1712 !important;
  color: #F9F8F5 !important;
}

/* Durum pilleri */
.edu-pill--pending  { background: #FEF9ED; color: #92400E; border-color: #FCD34D; }
.edu-pill--approved { background: #F0FDF4; color: #166534; border-color: #86EFAC; }
.edu-pill--rejected { background: #FEF2F2; color: #991B1B; border-color: #FECACA; }

/* Başvuru kart hover */
.edu-app-card:hover { border-color: #D4D0C8 !important; }

/* ——— Minimal hero düzenlemesi ——— */
.edu-labs-hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .edu-labs-hero-grid {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .edu-labs-hero-copy { flex: 1; }
  .edu-hero-visual { flex: 1; }
}

.edu-labs-hero-copy { max-width: 480px; }

/* Hero logo büyüt */
.edu-hero-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 12px;
}
@media (min-width: 768px) {
  .edu-hero-logo { margin: 0 0 12px; height: 52px; }
}

.edu-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 400px;
}

/* Kurs kartları grid */
.edu-course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.edu-course-card {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 16px !important;
  padding: 1.25rem !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.edu-course-card:hover {
  border-color: #1A1712 !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07) !important;
}
.edu-course-card h2 {
  font-size: 1rem !important;
  color: #1A1712 !important;
  letter-spacing: -0.02em;
}
.edu-course-card p {
  font-size: 0.8rem !important;
  color: #807A70 !important;
  margin-bottom: 0.75rem !important;
}
.edu-course-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Auth butonları header'da — login/register için temiz stil */
.auth-quick-links {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.auth-quick-links .module-resource-link {
  font-size: 0.8rem !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  border: 1px solid #E6E4DF !important;
  background: transparent !important;
  color: #1A1712 !important;
  text-decoration: none;
  font-weight: 500;
}
.auth-quick-links .module-resource-link.cheatsheet {
  background: #1A1712 !important;
  border-color: #1A1712 !important;
  color: #F9F8F5 !important;
}

/* ——— Öğretmen sidebar layout ——— */
.teacher-shell { background: #F9F8F5 !important; }
.teacher-shell::before { display: none !important; }

/* Mevcut .main override — sidebar düzeni için genişlet */
.teacher-shell .main,
.edu-main {
  max-width: 100% !important;
  padding: 0 !important;
}

/* Sayfa başlıkları */
.edu-teacher-page-header {
  margin-bottom: 28px;
}
.edu-teacher-page-header h1,
.edu-teacher-page-header .page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1712;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.edu-teacher-page-header .edu-page-desc,
.edu-page-desc {
  font-size: 0.85rem;
  color: #807A70;
  line-height: 1.5;
}

/* KPI kartlar */
.edu-teacher-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .edu-teacher-kpis { grid-template-columns: repeat(4, 1fr); }
}
.edu-teacher-kpi {
  background: #ffffff;
  border: 1px solid #E6E4DF;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.edu-kpi-icon { font-size: 1.2rem; margin-bottom: 2px; }
.edu-kpi-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #807A70; }
.edu-kpi-value { font-size: 1.6rem; font-weight: 700; color: #1A1712; letter-spacing: -0.03em; }

/* Panel kartlar */
.edu-panel {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 16px !important;
  padding: 20px 24px !important;
  box-shadow: none !important;
}
.edu-panel h3 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #807A70;
  margin-bottom: 12px;
}

/* Liste satırları */
.module-resource-link {
  display: flex !important;
  padding: 10px 12px !important;
  border-radius: 10px !important;
  border: 1px solid #E6E4DF !important;
  background: #F9F8F5 !important;
  color: #1A1712 !important;
  font-size: 13px !important;
  margin-bottom: 6px;
  text-decoration: none;
}
.module-resource-link:hover {
  border-color: #1A1712 !important;
  background: #ffffff !important;
}

/* CTA buton */
.cta {
  background: #1A1712 !important;
  color: #F9F8F5 !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: none !important;
}
.cta:hover { opacity: 0.85 !important; }
.cta-secondary {
  background: #F3F1EC !important;
  color: #1A1712 !important;
  border: 1px solid #E6E4DF !important;
}

/* ═══════════════════════════════════════════
   ÖĞRENCİ — yeni topbar
═══════════════════════════════════════════ */
.s-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  height: 56px;
  background: #ffffff;
  border-bottom: 1px solid #E6E4DF;
  position: sticky;
  top: 0;
  z-index: 100;
}
.s-topbar-brand { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.s-logo-btn { background: none; border: none; cursor: pointer; padding: 0; display: flex; align-items: center; }
.s-logo-img { height: 26px; width: auto; object-fit: contain; }
.s-course-sub { font-size: 11px; color: #807A70; }

/* Nav — desktop: inline scroll; mobile: bottom bar */
.s-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.s-nav::-webkit-scrollbar { display: none; }
.s-nav-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #807A70;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.s-nav-btn:hover { background: #F3F1EC; color: #1A1712; }
.s-nav-btn.active { background: #1A1712; color: #F9F8F5; font-weight: 600; }

.s-auth-links { display: flex; gap: 6px; align-items: center; flex-shrink: 0; }
.s-auth-link {
  font-size: 12px; font-weight: 500;
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid #E6E4DF; background: transparent;
  color: #1A1712; text-decoration: none;
}
.s-auth-link--cta { background: #1A1712; color: #F9F8F5; border-color: #1A1712; }
.s-progress-pill {
  font-size: 12px; font-weight: 600;
  padding: 4px 12px; border-radius: 999px;
  background: #F3F1EC; color: #1A1712;
  border: 1px solid #E6E4DF;
  flex-shrink: 0;
}

/* ── Mobile: bottom nav ── */
@media (max-width: 640px) {
  .app { padding-bottom: 64px; }
  .s-topbar { padding: 0 14px; height: 52px; }
  .s-nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: #ffffff;
    border-top: 1px solid #E6E4DF;
    height: 60px;
    justify-content: flex-start;
    padding: 0 8px;
    gap: 0;
    z-index: 100;
    box-shadow: 0 -1px 8px rgba(0,0,0,0.06);
  }
  .s-nav-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 10px;
    padding: 4px 2px;
    border-radius: 8px;
    min-width: 0;
  }
  .s-nav-btn::before {
    content: attr(data-view);
    font-size: 16px;
    line-height: 1;
  }
  .s-nav-btn[data-view="dashboard"]::before { content: "◼"; }
  .s-nav-btn[data-view="profile"]::before   { content: "👤"; }
  .s-nav-btn[data-view="modules"]::before   { content: "📚"; }
  .s-nav-btn[data-view="practical"]::before { content: "🎯"; }
  .s-nav-btn[data-view="soundgym"]::before  { content: "🎮"; }
  .s-nav-btn[data-view="quiz"]::before      { content: "❓"; }
  .s-nav-btn[data-view="progress"]::before  { content: "📊"; }
  .s-nav-btn.active { background: #F3F1EC; color: #1A1712; }
}

/* ═══════════════════════════════════════════
   ÖĞRETMEN — responsive
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* edu-panel içi padding azalt */
  .edu-panel { padding: 14px 16px !important; }
  .edu-teacher-kpis { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .edu-student-grid { grid-template-columns: 1fr !important; }
  .edu-student-actions { flex-wrap: wrap; gap: 6px; }
  .module-resource-link { font-size: 12px !important; padding: 8px 10px !important; }
}

/* ═══════════════════════════════════════════
   GENEL — kart & içerik responsive
═══════════════════════════════════════════ */
.edu-student-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 12px;
}
.edu-student-card-top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 6px;
}
.edu-student-name {
  font-weight: 600;
  font-size: 14px;
  color: #1A1712;
  text-decoration: none;
}
.edu-student-name:hover { text-decoration: underline; }
.edu-student-meta { font-size: 12px; color: #807A70; line-height: 1.4; }
.edu-student-actions {
  display: flex;
  gap: 6px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.edu-student-actions .module-resource-link {
  flex: none !important;
  font-size: 12px !important;
  padding: 6px 12px !important;
  margin-bottom: 0 !important;
}

/* quiz-mode-tabs / filter tabs */
.quiz-mode-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.quiz-mode-btn {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #E6E4DF;
  background: transparent;
  font-size: 12px;
  color: #807A70;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.quiz-mode-btn.active, .quiz-mode-btn:hover {
  background: #1A1712;
  color: #F9F8F5;
  border-color: #1A1712;
}

/* ═══════════════════════════════════════════
   ÖĞRENCİ PANELİ — minimal UI overrides
═══════════════════════════════════════════ */

/* Module list cards */
.module-list-card {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 14px !important;
  padding: 14px 16px !important;
  box-shadow: none !important;
  transform: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  margin-bottom: 8px;
}
.module-list-card:hover {
  border-color: #1A1712 !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
  transform: none !important;
  background: #ffffff !important;
}
.module-list-card.done {
  background: #F9F8F5 !important;
  border-color: #D4D0C8 !important;
}
.module-list-num {
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important;
  background: #F3F1EC !important;
  color: #1A1712 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
}
.module-list-card.done .module-list-num {
  background: #1A1712 !important;
  color: #F9F8F5 !important;
}
.module-list-info h3 { font-size: 14px !important; color: #1A1712 !important; font-weight: 600 !important; }
.module-list-info p  { font-size: 12px !important; color: #807A70 !important; }
.module-list-arrow   { color: #D4D0C8 !important; }
.module-list-card:hover .module-list-arrow { color: #1A1712 !important; }

/* Practical cards (accordion) */
.practical-card {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  margin-bottom: 8px !important;
}
.practical-card.open { border-color: #1A1712 !important; }
.practical-card-header {
  background: transparent !important;
  color: #1A1712 !important;
  padding: 14px 16px !important;
  font-size: 13px !important;
}
.practical-card-header:hover { background: #F9F8F5 !important; }
.practical-card-title { font-weight: 600 !important; color: #1A1712 !important; }
.practical-card-module {
  background: #F3F1EC !important;
  color: #807A70 !important;
  font-size: 11px !important;
  padding: 2px 8px !important;
  border-radius: 999px !important;
}
.practical-card-toggle { color: #807A70 !important; }
.practical-card-body { padding: 0 16px 16px !important; }
.practical-card-desc { font-size: 13px !important; color: #807A70 !important; }
.practical-steps { font-size: 13px !important; color: #1A1712 !important; }
.practical-steps li { margin-bottom: 6px !important; }

/* Progress view */
.progress-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #F3F1EC !important;
}
.progress-row label {
  font-size: 13px !important;
  color: #1A1712 !important;
  font-weight: 500 !important;
  flex: 0 0 140px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
.progress-bar-wrap {
  flex: 1 !important;
  height: 6px !important;
  background: #F3F1EC !important;
  border-radius: 999px !important;
  overflow: hidden !important;
}
.progress-bar-fill {
  background: #1A1712 !important;
  height: 100% !important;
  border-radius: 999px !important;
  transition: width 0.3s ease !important;
}
.progress-row .pct {
  font-size: 12px !important;
  color: #807A70 !important;
  font-weight: 600 !important;
  width: 36px !important;
  text-align: right !important;
  font-family: inherit !important;
}

/* Quiz options */
.quiz-options button {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 12px !important;
  color: #1A1712 !important;
  font-size: 13px !important;
  padding: 12px 16px !important;
  text-align: left !important;
  font-weight: 500 !important;
  transition: border-color 0.15s, background 0.15s !important;
}
.quiz-options button:hover { border-color: #1A1712 !important; background: #F9F8F5 !important; }
.quiz-options button.correct { border-color: #16a34a !important; background: #F0FDF4 !important; color: #166534 !important; }
.quiz-options button.wrong   { border-color: #EF4444 !important; background: #FEF2F2 !important; color: #991B1B !important; }

/* Quiz question */
.quiz-question { font-size: 15px !important; font-weight: 600 !important; color: #1A1712 !important; line-height: 1.5 !important; margin-bottom: 16px !important; }
.quiz-hint-text { background: #FEF9ED !important; border: 1px solid #FCD34D !important; border-radius: 10px !important; padding: 10px 14px !important; font-size: 13px !important; color: #92400E !important; }
.quiz-answer-feedback { font-size: 13px !important; font-weight: 600 !important; padding: 10px 14px !important; border-radius: 10px !important; }

/* Dashboard data rows */
.edu-data-row {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #F3F1EC !important;
  font-size: 13px !important;
  color: #1A1712 !important;
  gap: 12px !important;
}
.edu-data-row--highlight {
  background: #F9F8F5 !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  border: 1px solid #E6E4DF !important;
  margin-bottom: 6px !important;
  border-bottom: 1px solid #E6E4DF !important;
}
.edu-data-section-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: #807A70 !important;
  margin: 16px 0 8px !important;
}

/* Week cards */
.edu-week-card.week-card {
  background: #ffffff !important;
  border: 1px solid #E6E4DF !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.edu-week-card.week-card.done {
  background: #F0FDF4 !important;
  border-color: #86EFAC !important;
}

/* Hero/home section */
#view-home .hero { padding: 24px 0 16px !important; text-align: center !important; }
#view-home .hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem) !important; color: #1A1712 !important; font-weight: 700 !important; letter-spacing: -0.03em !important; }
#view-home .hero .tagline { color: #807A70 !important; font-size: 14px !important; }
#view-home .hero .hero-intro { color: #807A70 !important; font-size: 13px !important; max-width: 400px !important; margin: 0 auto 16px !important; }
#view-home .hero-stats { font-size: 13px !important; color: #807A70 !important; margin-bottom: 14px !important; }

/* View headings */
#view-modules .page-title,
#view-practical .page-title,
#view-quiz .page-title,
#view-progress .page-title {
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #1A1712 !important;
  letter-spacing: -0.03em !important;
  margin-bottom: 4px !important;
}
.section-intro--short {
  color: #807A70 !important;
  font-size: 13px !important;
}
