/* ═══════════════════════════════════════════════════════════════════════════
   SpecialEd Learn — Complete Design System
   Playful, Accessible, Clean CSS with Light/Dark Themes
   ═══════════════════════════════════════════════════════════════════════════ */

/* Admin UI Utilities */
.content-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
.content-header h2 { margin: 0; font-size: 1.75rem; color: var(--text-primary); }

/* ─── CSS Variables (Light Theme) ────────────────────────────────────────── */
:root,
[data-theme="light"] {
    /* Primary Palette - Playful & Vibrant */
    --primary: #5B8DF6;
    --primary-hover: #4173E6;
    --primary-light: #E8F0FE;
    --primary-gradient: linear-gradient(135deg, #5B8DF6 0%, #9D72FF 100%);

    /* Accent Colors - Bright & Fun */
    --accent-green: #34D399;
    --accent-green-light: #D1FAE5;
    --accent-orange: #FB923C;
    --accent-orange-light: #FFEDD5;
    --accent-purple: #9D72FF;
    --accent-purple-light: #EDE9FE;
    --accent-red: #EF4444;
    --accent-red-light: #FEE2E2;
    --accent-yellow: #FBBF24;
    --accent-yellow-light: #FEF3C7;

    /* Surface Colors - Soft & Friendly */
    --bg-body: #F4F7FE;
    --bg-surface: #FFFFFF;
    --bg-surface-hover: #F9FAFF;
    --bg-sidebar: #FFFFFF;
    --bg-input: #F0F4FF;

    /* Text Colors */
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --text-muted: #94A3B8;
    --text-on-primary: #FFFFFF;

    /* Borders & Shadows - Bouncy & Deep */
    --border: #E2E8F0;
    --border-focus: #5B8DF6;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 16px rgba(91, 141, 246, 0.08);
    --shadow-lg: 0 16px 32px rgba(91, 141, 246, 0.12);
    --shadow-glow: 0 0 24px rgba(91, 141, 246, 0.25);

    /* Misc - More rounded for kids */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 999px;
    --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy transition */
    --navbar-bg: rgba(255, 255, 255, 0.85);
}

/* ─── Dark Theme ─────────────────────────────────────────────────────────── */
[data-theme="dark"] {
    --primary: #7FA9FF;
    --primary-hover: #6091F6;
    --primary-light: #1A243D;
    --primary-gradient: linear-gradient(135deg, #7FA9FF 0%, #B794F6 100%);

    --accent-green: #10B981;
    --accent-green-light: #064E3B;
    --accent-orange: #F97316;
    --accent-orange-light: #7C2D12;
    --accent-purple: #8B5CF6;
    --accent-purple-light: #4C1D95;
    --accent-red: #EF4444;
    --accent-red-light: #7F1D1D;
    --accent-yellow: #F59E0B;
    --accent-yellow-light: #78350F;

    --bg-body: #0F172A;
    --bg-surface: #1E293B;
    --bg-surface-hover: #334155;
    --bg-sidebar: #1E293B;
    --bg-input: #334155;

    --text-primary: #F8FAFC;
    --text-secondary: #CBD5E1;
    --text-muted: #94A3B8;
    --text-on-primary: #FFFFFF;

    --border: #334155;
    --border-focus: #7FA9FF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(127, 169, 255, 0.25);

    --navbar-bg: rgba(30, 41, 59, 0.85);
}

/* ─── Glassmorphism Utilities ───────────────────────────────────────────── */
.glass-card {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background var(--transition), color var(--transition);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
}

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 6%;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
h1 {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.4;
}

.highlight {
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--primary);
    color: var(--text-on-primary);
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: var(--text-on-primary);
}

.btn-success {
    background: var(--accent-green);
    color: #fff;
}

.btn-success:hover {
    background: #00b396;
    color: #fff;
}

.btn-warning {
    background: var(--accent-orange);
    color: #fff;
}

.btn-warning:hover {
    background: #e67a35;
    color: #fff;
}

.btn-danger {
    background: var(--accent-red);
    color: #fff;
}

.btn-danger:hover {
    background: #e55555;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.05rem;
}

.btn-sm {
    padding: 6px 14px;
    font-size: 0.85rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    padding: 8px;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.btn-icon-sm {
    width: 32px;
    height: 32px;
    padding: 6px;
    font-size: 0.85rem;
}

.btn-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR (Public)
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--navbar-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 72px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-surface-hover);
}

.nav-btn {
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--text-on-primary);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.nav-btn:hover {
    background: var(--primary-hover);
    color: var(--text-on-primary);
    transform: translateY(-1px);
}

.nav-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.nav-btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-surface);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-hamburger {
        display: flex;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent-orange);
    top: 50%;
    right: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-green);
    bottom: 5%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-illustration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-card {
    position: absolute;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 6s ease-in-out infinite;
}

.card-emoji {
    font-size: 1.5rem;
}

.card-label {
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.card-float-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.card-float-2 {
    top: 35%;
    right: 5%;
    animation-delay: 1.5s;
}

.card-float-3 {
    bottom: 20%;
    left: 8%;
    animation-delay: 3s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-card {
        display: none;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTIONS (Landing Page)
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
    padding: 80px 24px;
}

.section-title {
    text-align: center;
    margin-bottom: 12px;
    font-size: 2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 48px;
    font-size: 1.05rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.value-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.value-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 8px;
}

.value-item h3 {
    margin-bottom: 8px;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-body);
    padding: 24px;
}

.auth-container {
    width: 100%;
    max-width: 440px;
}

.auth-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.auth-header h1 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-secondary);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 0.95rem;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0 14px;
    transition: border-color var(--transition);
}

.input-wrapper:focus-within {
    border-color: var(--border-focus);
    box-shadow: var(--shadow-glow);
}

.input-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.input-wrapper input {
    flex: 1;
    width: 0;
    min-width: 0;
    padding: 14px 0;
    border: none !important;
    background: transparent !important;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    outline: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.toggle-password {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.1rem;
    padding: 0 4px;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.toggle-password:hover {
    color: var(--primary);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn-arrow {
    transition: transform var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.theme-toggle-floating {
    position: fixed;
    bottom: 24px;
    right: 24px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */
.theme-toggle {
    background: var(--bg-surface);
    border: 2px solid var(--border);
    color: var(--text-primary);
    border-radius: var(--radius-full);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}

.theme-toggle:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-glow);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FLASH MESSAGES
   ═══════════════════════════════════════════════════════════════════════════ */
.flash-container {
    position: fixed;
    top: 80px;
    right: 24px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 400px;
}

.flash {
    padding: 14px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease-out;
    border: 1px solid var(--border);
}

.flash-success {
    background: var(--accent-green-light);
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.flash-danger {
    background: var(--accent-red-light);
    color: var(--accent-red);
    border-color: var(--accent-red);
}

.flash-warning {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
    border-color: var(--accent-orange);
}

.flash-info {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
}

.flash-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.flash-close:hover {
    opacity: 1;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ADMIN LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.admin-layout {
    padding-top: 0;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: transparent !important;
    color-scheme: light;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 100;
    transition: transform var(--transition);
}

.sidebar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-surface-hover) !important;
    z-index: -1;
}

.sidebar-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.sidebar-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.sidebar-link:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.sidebar-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.sidebar-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 16px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-logout:hover {
    background: var(--accent-red-light);
    color: var(--accent-red);
}

/* Admin Main */
.admin-main {
    flex: 1;
    margin-left: 260px;
    min-height: 100vh;
    min-width: 0;
}

.admin-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-header h1 {
    flex: 1;
    font-size: 1.4rem;
}

.admin-user {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

.admin-content {
    padding: 32px;
}

@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.open {
        transform: translateX(0);
        filter: drop-shadow(10px 0 20px rgba(0, 0, 0, 0.6));
    }

    .admin-main {
        margin-left: 0;
    }

    .sidebar-toggle {
        display: block;
    }

    .sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(4px);
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .sidebar-overlay.show {
        opacity: 1;
        visibility: visible;
    }
}

/* ─── Stat Cards ─────────────────────────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    font-size: 2.5rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
}

.stat-blue .stat-number {
    color: var(--primary);
}

.stat-green .stat-number {
    color: var(--accent-green);
}

.stat-orange .stat-number {
    color: var(--accent-orange);
}

.stat-purple .stat-number {
    color: var(--accent-purple);
}

/* ─── Quick Actions ──────────────────────────────────────────────────────── */
.quick-actions h2 {
    margin-bottom: 16px;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.action-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 2px dashed var(--border);
    color: var(--text-secondary);
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all var(--transition);
}

.action-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-2px);
}

.action-icon {
    font-size: 2rem;
}

/* ─── Data Table ─────────────────────────────────────────────────────────── */
.table-responsive {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-surface);
}

.data-table th,
.data-table td {
    padding: 14px 20px;
    text-align: left;
}

.data-table thead {
    background: var(--bg-surface-hover);
    border-bottom: 2px solid var(--border);
}

.data-table th {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background var(--transition);
}

.data-table tbody tr:hover {
    background: var(--bg-surface-hover);
}

.data-table tbody tr:last-child {
    border-bottom: none;
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.user-avatar-lg {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
}

.action-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ─── Responsive Data Table (Card Mode) ──────────────────────────────────── */
@media (max-width: 768px) {
    .data-table thead {
        display: none;
    }
    .data-table, .data-table tbody, .data-table tr, .data-table td {
        display: block;
        width: 100%;
    }
    .data-table tr {
        margin-bottom: 16px;
        background: var(--bg-surface);
        border: 1px solid var(--border) !important;
        border-radius: var(--radius-lg);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }
    .data-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
        text-align: right;
    }
    .data-table td:last-child {
        border-bottom: none;
        padding-top: 16px;
        justify-content: flex-end;
    }
    .data-table td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.85rem;
        color: var(--text-secondary);
        text-transform: uppercase;
        flex-shrink: 0;
        margin-right: 12px;
    }
    .user-cell {
        justify-content: flex-end;
    }
}

/* ─── Form Card ──────────────────────────────────────────────────────────── */
.form-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
    max-width: 640px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: var(--shadow-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.form-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 24px;
}

/* ─── Course Card (Admin) ────────────────────────────────────────────────── */
.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.course-card-admin {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}

.course-card-admin:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.course-thumb {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.course-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    font-size: 3rem;
}

.course-card-body {
    padding: 16px 20px;
}

.course-card-body h3 {
    margin-bottom: 6px;
}

.course-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.course-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.course-card-actions {
    padding: 12px 20px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ─── Lesson Item (Admin) ────────────────────────────────────────────────── */
.lessons-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.lesson-item-admin {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.lesson-item-admin:hover {
    box-shadow: var(--shadow-sm);
}

.lesson-order {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.lesson-info {
    flex: 1;
}

.lesson-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.lesson-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.lesson-actions {
    display: flex;
    gap: 8px;
}

/* Badges */
.badge {
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-blue {
    background: var(--primary-light);
    color: var(--primary);
}

.badge-green {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.badge-purple {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
}

.badge-gray {
    background: var(--bg-surface-hover);
    color: var(--text-muted);
}

.badge-lg {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* ─── Breadcrumb ─────────────────────────────────────────────────────────── */
.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.breadcrumb-link:hover {
    color: var(--primary);
}

/* ─── Empty State ────────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.empty-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 16px;
}

.empty-state h3 {
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUIZ BUILDER (Admin)
   ═══════════════════════════════════════════════════════════════════════════ */
.quiz-builder-header {
    margin-bottom: 20px;
}

.quiz-builder-header h2 {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.questions-section {
    margin: 24px 0;
}

.questions-section h3 {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.question-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 20px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
}

.question-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.question-number {
    background: var(--primary-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.question-text {
    flex: 1;
    font-weight: 600;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.option-item {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-input);
    font-size: 0.95rem;
}

.option-correct {
    background: var(--accent-green-light);
    border: 1px solid var(--accent-green);
}

.option-letter {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-surface-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.correct-badge {
    margin-left: auto;
    color: var(--accent-green);
    font-weight: 700;
    font-size: 0.85rem;
}

.options-builder {
    margin-bottom: 20px;
}

.options-builder>label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
}

.option-inputs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.option-input-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.option-input-row input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent-green);
}

.option-letter-input {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.option-input-row input[type="text"] {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.option-input-row input[type="text"]:focus {
    outline: none;
    border-color: var(--border-focus);
}

.option-controls {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANALYTICS (Admin)
   ═══════════════════════════════════════════════════════════════════════════ */
.analytics-student-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 20px;
}

.analytics-student-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.analytics-student-header h3 {
    font-size: 1.1rem;
}

.analytics-courses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analytics-course-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.analytics-course-info {
    min-width: 160px;
}

.analytics-course-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
}

.analytics-course-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.analytics-score {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--accent-purple);
    white-space: nowrap;
}

.analytics-empty {
    color: var(--text-muted);
    font-style: italic;
}

/* ─── Analytics Search Bar ──────────────────────────────────────────────── */
.analytics-search-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    margin-bottom: 24px;
    transition: border-color var(--transition);
}

.analytics-search-bar:focus-within {
    border-color: var(--border-focus);
}

.analytics-search-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.analytics-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.analytics-search-input::placeholder {
    color: var(--text-muted);
}

.analytics-search-count {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    white-space: nowrap;
}

/* ─── Progress Bar ───────────────────────────────────────────────────────── */
.progress-bar-container {
    flex: 1;
    min-width: 120px;
    height: 28px;
    background: var(--bg-input);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    border-radius: var(--radius-full);
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.6s ease;
    min-width: fit-content;
}

.progress-bar.progress-complete {
    background: linear-gradient(135deg, var(--accent-green) 0%, #20E3B2 100%);
}

.progress-text {
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0 10px;
    white-space: nowrap;
}

.progress-bar-sm {
    height: 22px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STUDENT LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.student-layout {
    padding-top: 0;
}

.student-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.student-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 0 6%;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.student-header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.student-header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.student-user {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.student-main {
    flex: 1;
    padding: 32px 0;
}

.student-welcome {
    margin-bottom: 32px;
}

.student-welcome h1 {
    margin-bottom: 8px;
}

.student-welcome p {
    color: var(--text-secondary);
}

/* ─── Course Cards (Student) ─────────────────────────────────────────────── */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.course-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
    display: block;
    color: var(--text-primary);
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
    border-color: var(--primary);
}

.course-card-thumb {
    height: 150px;
    background-size: cover;
    background-position: center;
}

.course-card-content {
    padding: 20px;
}

.course-card-content h3 {
    margin-bottom: 6px;
}

.course-card-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.course-card-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* ─── Course Detail (Student) ────────────────────────────────────────────── */
.course-header-section {
    margin-bottom: 32px;
}

.course-header-section h1 {
    margin-bottom: 8px;
}

.course-description {
    color: var(--text-secondary);
    margin-bottom: 16px;
    max-width: 600px;
}

.lessons-list-student {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lesson-card {
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: all var(--transition);
}

.lesson-card:hover {
    box-shadow: var(--shadow-sm);
    border-color: var(--primary);
}

.lesson-completed {
    border-color: var(--accent-green);
    background: var(--accent-green-light);
}

.lesson-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.lesson-status-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lesson-card-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.lesson-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

/* ─── Lesson View (Student) ──────────────────────────────────────────────── */
.lesson-view-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lesson-view-header h1 {
    flex: 1;
}

.video-container {
    margin-bottom: 24px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.no-video {
    text-align: center;
    padding: 60px 24px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
    margin-bottom: 24px;
}

.no-video-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

.no-video p {
    color: var(--text-secondary);
}

.lesson-description {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.lesson-description h3 {
    margin-bottom: 12px;
}

.lesson-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    white-space: pre-wrap;
}

.lesson-actions-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUIZ (Student)
   ═══════════════════════════════════════════════════════════════════════════ */
.quiz-header {
    margin-bottom: 24px;
}

.quiz-header h1 {
    margin-bottom: 12px;
}

.quiz-score-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    font-weight: 800;
}

.score-great {
    background: var(--accent-green-light);
    color: var(--accent-green);
}

.score-ok {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

.score-low {
    background: var(--accent-red-light);
    color: var(--accent-red);
}

.score-number {
    font-size: 2rem;
}

.score-label {
    font-size: 1.1rem;
}

.quiz-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quiz-question-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border);
}

.question-number-badge {
    display: inline-block;
    background: var(--primary-gradient);
    color: white;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.quiz-question-text {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quiz-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all var(--transition);
    font-weight: 600;
}

.quiz-option:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.quiz-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.quiz-option-text {
    flex: 1;
}

.quiz-submit-section {
    text-align: center;
    padding: 20px 0;
}

/* Quiz Results */
.quiz-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-correct {
    border-color: var(--accent-green);
}

.result-incorrect {
    border-color: var(--accent-red);
}

.result-feedback {
    margin-top: 12px;
}

.feedback-correct {
    background: var(--accent-green-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
    color: var(--accent-green);
}

.feedback-incorrect {
    background: var(--accent-red-light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-weight: 600;
    color: var(--accent-red);
}

.correct-answer {
    color: var(--accent-green);
}

.quiz-retry-section {
    display: flex;
    gap: 16px;
    justify-content: center;
    padding: 24px 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STUDENT PORTAL ENHANCEMENTS
   ═══════════════════════════════════════════════════════════════════════════ */

/* Quick Stats Row */
.student-quick-stats {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mini-stat {
    flex: 1;
    min-width: 140px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    text-align: center;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.mini-stat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-stat-icon {
    font-size: 1.8rem;
}

.mini-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.mini-stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Course Progress Overview */
.course-progress-overview {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Motivation Banner */
.motivation-banner {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--primary-gradient);
    color: white;
    border-radius: var(--radius-xl);
    padding: 28px 32px;
    box-shadow: var(--shadow-lg);
}

.motivation-emoji {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.motivation-banner strong {
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}

.motivation-banner p {
    opacity: 0.9;
    font-size: 0.95rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Lesson Tips */
.lesson-tips {
    margin-top: 32px;
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    border: 1px solid var(--border);
}

.lesson-tips h3 {
    margin-bottom: 12px;
}

.lesson-tips ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lesson-tips li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-secondary);
    font-weight: 600;
}

.lesson-tips li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--primary);
    font-weight: 800;
}

/* Lesson Complete Banner */
.lesson-complete-banner {
    background: var(--accent-green-light);
    color: var(--accent-green);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    border: 2px solid var(--accent-green);
}

.lesson-actions-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* ─── Lesson Navigation Bar ─────────────────────────────────────────────── */
.lesson-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.lesson-nav-btn {
    min-width: 140px;
    text-align: center;
}

.lesson-nav-home {
    flex-shrink: 0;
}

/* ─── Assign Courses (Admin) ────────────────────────────────────────────── */
.assign-courses-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assign-course-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition);
}

.assign-course-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.assign-course-item input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--primary);
    cursor: pointer;
    flex-shrink: 0;
}

.assign-course-item input[type="checkbox"]:checked~.assign-course-info {
    font-weight: 700;
}

.assign-course-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.assign-course-thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-thumb-placeholder-sm {
    background: var(--primary-light);
    font-size: 1.3rem;
}

/* ─── Admin Form (Homepage Settings) ────────────────────────────────────── */
.admin-form {
    max-width: 760px;
}

.form-section {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 24px 28px;
    margin-bottom: 24px;
}

.form-section h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.form-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-input);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: border-color var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--border-focus);
}

.form-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.form-group-sm {
    flex-shrink: 0;
}

.feature-edit-group {
    padding: 16px;
    background: var(--bg-body);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

/* ─── Breadcrumb Link ───────────────────────────────────────────────────── */
.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-decoration: none;
    transition: color var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .admin-content {
        padding: 20px 16px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .stat-card {
        padding: 16px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .student-header-right {
        gap: 8px;
    }

    .student-user {
        display: none;
    }

    .lesson-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .analytics-course-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .quiz-score-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   BADGE MODAL (Google Skillshop Inspired)
   ═══════════════════════════════════════════════════════════════════════════ */
.badge-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badgeOverlayIn 0.3s ease;
}

.badge-modal-overlay.badge-modal-hide {
    animation: badgeOverlayOut 0.3s ease forwards;
}

@keyframes badgeOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes badgeOverlayOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        pointer-events: none;
    }
}

.badge-modal {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(74, 124, 255, 0.3);
    animation: badgeModalIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.badge-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--accent-green), var(--primary), var(--accent-purple), var(--accent-orange));
}

@keyframes badgeModalIn {
    from {
        transform: scale(0.5) translateY(40px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.badge-confetti {
    font-size: 3rem;
    animation: confettiBounce 1s ease infinite;
    margin-bottom: 8px;
}

@keyframes confettiBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.badge-modal-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    animation: badgeIconPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 4px 20px rgba(255, 193, 7, 0.4));
}

@keyframes badgeIconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.badge-modal h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-modal-course {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.badge-modal-text {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.badge-modal-badge {
    margin-bottom: 24px;
}

.badge-earned-card {
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.badge-earned-icon {
    font-size: 2.5rem;
}

.badge-earned-name {
    font-weight: 700;
    font-size: 1.05rem;
}

.badge-earned-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BADGE FAB & DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */
.badge-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-gradient);
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg), 0 4px 20px rgba(74, 124, 255, 0.4);
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fabPulse 3s ease-in-out infinite;
}

.badge-fab:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg), 0 6px 30px rgba(74, 124, 255, 0.6);
}

@keyframes fabPulse {

    0%,
    100% {
        box-shadow: var(--shadow-lg), 0 4px 20px rgba(74, 124, 255, 0.4);
    }

    50% {
        box-shadow: var(--shadow-lg), 0 4px 30px rgba(74, 124, 255, 0.6);
    }
}

.badge-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 950;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.badge-drawer-overlay-show {
    opacity: 1;
    pointer-events: auto;
}

.badge-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    z-index: 960;
    width: 380px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-surface);
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.badge-drawer-open {
    right: 0;
}

.badge-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.badge-drawer-header h2 {
    font-size: 1.3rem;
    margin: 0;
}

.badge-drawer-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
    padding: 4px;
    transition: color var(--transition);
}

.badge-drawer-close:hover {
    color: var(--text-primary);
}

.badge-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.badge-drawer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all var(--transition);
    border: 1px solid var(--border);
}

.badge-drawer-item.badge-earned {
    background: var(--accent-green-light);
    border-color: var(--accent-green);
}

.badge-drawer-item.badge-locked {
    background: var(--bg-surface-hover);
    opacity: 0.7;
}

.badge-drawer-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.badge-drawer-info {
    flex: 1;
    min-width: 0;
}

.badge-drawer-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.badge-drawer-status {
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-drawer-status.earned {
    color: var(--accent-green);
}

.badge-drawer-status.locked {
    color: var(--text-muted);
}

.badge-drawer-progress {
    margin-bottom: 6px;
}

.badge-drawer-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
}

.badge-drawer-empty span {
    font-size: 3rem;
    display: block;
    margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   WELCOME PAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.welcome-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0;
}

.welcome-hero {
    position: relative;
    text-align: center;
    padding: 60px 24px 48px;
    border-radius: var(--radius-xl);
    background: var(--bg-surface);
    box-shadow: var(--shadow-md);
    margin-bottom: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.welcome-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.welcome-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 8s ease-in-out infinite;
}

.welcome-shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: -40px;
    left: -40px;
}

.welcome-shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    top: 20%;
    right: -30px;
    animation-delay: 2s;
}

.welcome-shape-3 {
    width: 180px;
    height: 180px;
    background: var(--accent-orange);
    bottom: -40px;
    left: 40%;
    animation-delay: 4s;
}

.welcome-hero-content {
    position: relative;
    z-index: 2;
}

.welcome-wave {
    font-size: 3rem;
    display: block;
    margin-bottom: 16px;
    animation: wave 2.5s ease-in-out infinite;
}

@keyframes wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-10deg);
    }
}

.welcome-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.welcome-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.welcome-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.welcome-info-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.welcome-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.welcome-info-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.welcome-info-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.welcome-info-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.welcome-cta-section {
    margin-bottom: 32px;
}

.welcome-cta-card {
    background: var(--bg-surface);
    border-radius: var(--radius-xl);
    padding: 48px 32px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.welcome-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.welcome-cta-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.welcome-cta-card h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.welcome-cta-card p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.welcome-cta-btn {
    padding: 16px 40px !important;
    font-size: 1.1rem !important;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: var(--shadow-md);
    }

    50% {
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }
}

.welcome-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--accent-orange-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--accent-orange);
}

.welcome-notice span {
    font-size: 1.5rem;
}

.welcome-notice p {
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.welcome-quote {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 24px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.welcome-quote-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.welcome-quote p {
    color: var(--text-secondary);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   QUIZ REQUIRED WARNING
   ═══════════════════════════════════════════════════════════════════════════ */
.quiz-required-warning {
    background: var(--accent-orange-light);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.quiz-required-warning span {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKBOX LABEL (Admin Forms)
   ═══════════════════════════════════════════════════════════════════════════ */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label span {
    user-select: none;
}

/* Badge orange variant */
.badge-orange {
    background: var(--accent-orange-light);
    color: var(--accent-orange);
}

/* ─── Responsive: General & Admin ────────────────────────────────────────── */
@media (max-width: 900px) {
    .sidebar {
        transform: translateX(-100%);
        z-index: 1001; /* Overlay above everything */
        box-shadow: none;
    }

    .sidebar.open {
        transform: translateX(0);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .sidebar.open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        pointer-events: none;
    }

    .admin-main {
        margin-left: 0;
        width: 100%;
    }

    .admin-header {
        padding: 12px 20px;
    }

    .admin-header h1 {
        font-size: 1.1rem;
    }

    .sidebar-toggle {
        display: block;
        padding: 8px;
        margin-right: -8px;
    }

    .admin-content {
        padding: 20px 16px;
    }

    .content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .content-header .btn {
        width: 100%;
        justify-content: center;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: var(--radius-md);
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .action-btns {
        width: 100%;
    }

    .action-btns .btn {
        flex: 1;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .admin-header h1 {
        display: none; /* Mobilde çok dar ekranlarda başlığı gizle, sadece logo ve toggle kalsın */
    }

    .admin-user {
        font-size: 0.8rem;
    }

    .data-table th, 
    .data-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ─── Responsive: Welcome & Badge ────────────────────────────────────────── */
@media (max-width: 768px) {
    .welcome-hero-content h1 {
        font-size: 1.6rem;
    }

    .welcome-info-section {
        grid-template-columns: 1fr;
    }

    .welcome-cta-card {
        padding: 32px 20px;
    }

    .badge-fab {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .badge-drawer {
        width: 320px;
    }

    .badge-modal {
        padding: 32px 24px;
        width: 90%;
        margin: auto;
    }

    .badge-modal-icon {
        font-size: 3.5rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WELCOME PAGE — Unlocked / Locked States
   ═══════════════════════════════════════════════════════════════════════════ */
.welcome-cta-unlocked {
    border-color: var(--accent-green) !important;
}

.welcome-cta-unlocked::before {
    background: linear-gradient(90deg, var(--accent-green), #2ecc71, var(--accent-green)) !important;
}

.welcome-unlocked-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.welcome-unlocked-badge {
    background: var(--accent-green-light);
    color: var(--accent-green);
    padding: 8px 16px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid var(--accent-green);
}

.welcome-locked-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.welcome-locked-badge {
    background: var(--accent-red-light, rgba(239, 68, 68, 0.1));
    color: var(--accent-red);
    padding: 8px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid var(--accent-red);
}

.welcome-locked-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

/* Welcome Compact Variants */
.welcome-hero-compact {
    padding: 32px 24px 24px;
    margin-bottom: 20px;
}

.welcome-hero-compact .welcome-wave {
    font-size: 2rem;
    margin-bottom: 8px;
}

.welcome-hero-compact h1 {
    font-size: 1.6rem;
    margin-bottom: 4px;
}

.welcome-hero-compact .welcome-subtitle {
    font-size: 0.95rem;
}

.welcome-info-compact {
    margin-bottom: 20px;
    gap: 14px;
}

.welcome-info-compact .welcome-info-card {
    padding: 18px 16px;
}

.welcome-info-compact .welcome-info-icon {
    font-size: 1.8rem;
    margin-bottom: 6px;
}

.welcome-info-compact .welcome-info-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.welcome-info-compact .welcome-info-card p {
    font-size: 0.82rem;
}

.welcome-main-cta .welcome-cta-btn {
    padding: 18px 48px !important;
    font-size: 1.15rem !important;
}