/* Eduvest single stylesheet */
:root {
    --edu-bg: #07040f;
    --edu-surface: #12091f;
    --edu-surface-2: #1a0f2d;
    --edu-surface-3: #21123a;
    --edu-border: rgba(205, 190, 255, 0.2);
    --edu-border-strong: rgba(205, 190, 255, 0.36);
    --edu-text: #fbf7ff;
    --edu-muted: #d9cbed;
    --edu-soft: #a996c7;
    --edu-purple: #8b5cf6;
    --edu-violet: #c084fc;
    --edu-pink: #f472b6;
    --edu-blue: #60a5fa;
    --edu-success: #a7f3d0;
    --edu-danger: #f87171;
    --edu-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: clip;
}

body.eduvest-laravel {
    min-height: 100vh;
    margin: 0;
    color: var(--edu-text);
    background:
        linear-gradient(145deg, rgba(7, 4, 15, 0.96), rgba(17, 7, 31, 0.96)),
        #07040f;
    font-family: 'Poppins', Arial, sans-serif;
    overflow-x: clip;
}

body.eduvest-laravel a {
    color: inherit;
}

body.eduvest-laravel img {
    display: block;
    max-width: 100%;
}

body.eduvest-laravel h1,
body.eduvest-laravel h2,
body.eduvest-laravel h3,
body.eduvest-laravel p {
    margin-top: 0;
}

body.eduvest-laravel h1,
body.eduvest-laravel h2,
body.eduvest-laravel h3 {
    color: var(--edu-text);
    line-height: 1.12;
    letter-spacing: 0;
}

body.eduvest-laravel h1 {
    font-size: 3.2rem;
}

body.eduvest-laravel h2 {
    font-size: 2rem;
}

body.eduvest-laravel h3 {
    font-size: 1.18rem;
}

body.eduvest-laravel p {
    color: var(--edu-muted);
    line-height: 1.75;
}

body.eduvest-laravel .eyebrow,
body.eduvest-laravel .hero-tagline {
    margin-bottom: 10px;
    color: var(--edu-violet);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.eduvest-laravel .app-main {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 26px 0 64px;
}

/* Header */
body.eduvest-laravel .app-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 18px;
    min-height: 58px;
    padding: 8px clamp(16px, 4vw, 54px);
    background: rgba(8, 4, 18, 0.9);
    border-bottom: 1px solid var(--edu-border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px);
}

body.eduvest-laravel .logo {
    color: #fff;
    background: linear-gradient(90deg, #fff, var(--edu-violet), var(--edu-blue));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.34rem;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

body.eduvest-laravel .nav-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.eduvest-laravel .nav-list a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 11px;
    color: #eadfff;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

body.eduvest-laravel .nav-list a:hover,
body.eduvest-laravel .nav-list a.active {
    color: #fff;
    background: rgba(139, 92, 246, 0.18);
    transform: translateY(-1px);
}

body.eduvest-laravel .auth-buttons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

body.eduvest-laravel .profile-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    overflow: hidden;
    border: 2px solid rgba(196, 181, 253, 0.78);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

body.eduvest-laravel .profile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons and feedback */
body.eduvest-laravel .btn,
body.eduvest-laravel .btn-card,
body.eduvest-laravel .hero-btn,
body.eduvest-laravel .btn-submit,
body.eduvest-laravel .login-btn-submit,
body.eduvest-laravel .register-btn-submit,
body.eduvest-laravel .edit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 10px 15px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #7c3aed, #8b5cf6 52%, #60a5fa);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.28);
    font: inherit;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

body.eduvest-laravel .btn:hover,
body.eduvest-laravel .btn-card:hover,
body.eduvest-laravel .hero-btn:hover,
body.eduvest-laravel .btn-submit:hover,
body.eduvest-laravel .login-btn-submit:hover,
body.eduvest-laravel .register-btn-submit:hover,
body.eduvest-laravel .edit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #6d28d9, #7c3aed 52%, #3b82f6);
    box-shadow: 0 18px 40px rgba(124, 58, 237, 0.38);
}

body.eduvest-laravel .btn-login,
body.eduvest-laravel .btn-cancel {
    color: #fff;
    border: 1px solid var(--edu-border);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

body.eduvest-laravel .btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
}

body.eduvest-laravel .btn-login:hover,
body.eduvest-laravel .btn-cancel:hover {
    background: rgba(139, 92, 246, 0.18);
}

body.eduvest-laravel .delete-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 13px;
    color: #fff;
    border: 0;
    border-radius: 8px;
    background: var(--edu-danger);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

body.eduvest-laravel .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--edu-violet);
    font-weight: 800;
    text-decoration: none;
    transition: color 160ms ease, gap 160ms ease;
}

body.eduvest-laravel .read-more:hover {
    gap: 12px;
    color: #fff;
}

body.eduvest-laravel .flash-message {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 8px;
    font-weight: 800;
}

body.eduvest-laravel .flash-message.success {
    color: var(--edu-success);
    border: 1px solid rgba(167, 243, 208, 0.22);
    background: rgba(16, 185, 129, 0.1);
}

body.eduvest-laravel .flash-message.danger {
    color: #fecaca;
    border: 1px solid rgba(248, 113, 113, 0.24);
    background: rgba(248, 113, 113, 0.12);
}

/* Shared panels */
body.eduvest-laravel .media-partner-section,
body.eduvest-laravel .testimonial-section,
body.eduvest-laravel .auth-panel,
body.eduvest-laravel .content-card,
body.eduvest-laravel .form-shell,
body.eduvest-laravel .news-card,
body.eduvest-laravel .testimonial-card,
body.eduvest-laravel .course-card,
body.eduvest-laravel .dashboard-card,
body.eduvest-laravel .dashboard-plan-card,
body.eduvest-laravel .dashboard-profile-panel,
body.eduvest-laravel .dashboard-material-panel,
body.eduvest-laravel .admin-card,
body.eduvest-laravel .profile-preview-card,
body.eduvest-laravel .profile-edit-card,
body.eduvest-laravel .material-item,
body.eduvest-laravel .faq-item,
body.eduvest-laravel .course-playlist-panel,
body.eduvest-laravel .featured-course-card,
body.eduvest-laravel .news-detail-card {
    border: 1px solid var(--edu-border);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 36%),
        rgba(18, 9, 31, 0.92);
    box-shadow: var(--edu-shadow);
}

body.eduvest-laravel .section-heading {
    margin-bottom: 18px;
}

body.eduvest-laravel .section-heading h1,
body.eduvest-laravel .section-heading h2,
body.eduvest-laravel .section-heading p {
    margin-bottom: 0;
}

body.eduvest-laravel .empty-state {
    padding: 18px;
    color: var(--edu-muted);
    border: 1px dashed var(--edu-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

/* Hero */
body.eduvest-laravel .hero-section,
body.eduvest-laravel .page-hero,
body.eduvest-laravel .course-detail-hero {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 380px;
    padding: 58px;
    overflow: hidden;
    border: 1px solid var(--edu-border);
    border-radius: 8px;
    background:
        linear-gradient(100deg, rgba(6, 3, 13, 0.95), rgba(21, 10, 39, 0.84), rgba(32, 17, 62, 0.5)),
        url('../images/backgroundlogin/loginbackground.jpeg') center/cover;
    box-shadow: var(--edu-shadow);
}

body.eduvest-laravel .page-hero.compact {
    min-height: 230px;
    margin-bottom: 24px;
    padding: 42px;
}

body.eduvest-laravel .hero-copy,
body.eduvest-laravel .page-hero > * {
    max-width: 760px;
}

body.eduvest-laravel .hero-main-text,
body.eduvest-laravel .page-hero p {
    max-width: 720px;
    margin: 16px 0 24px;
    color: #e4d7f4;
    font-size: 1.02rem;
}

body.eduvest-laravel .hero-actions,
body.eduvest-laravel .course-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

/* Home */
body.eduvest-laravel .home-learning-section,
body.eduvest-laravel .media-partner-section,
body.eduvest-laravel .testimonial-section {
    margin-top: 28px;
}

body.eduvest-laravel .home-learning-section {
    display: grid;
    gap: 18px;
}

body.eduvest-laravel .featured-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.eduvest-laravel .featured-course-card {
    position: relative;
    display: grid;
    overflow: hidden;
}

body.eduvest-laravel .featured-course-card img {
    width: 100%;
    height: 178px;
    object-fit: cover;
}

body.eduvest-laravel .featured-course-card > div {
    display: grid;
    gap: 10px;
    padding: 20px;
}

body.eduvest-laravel .featured-course-card p {
    margin-bottom: 0;
}

body.eduvest-laravel .media-partner-section,
body.eduvest-laravel .testimonial-section,
body.eduvest-laravel .content-card,
body.eduvest-laravel .form-shell {
    padding: 24px;
}

body.eduvest-laravel .media-partner-section {
    overflow: hidden;
}

body.eduvest-laravel .media-partner-section h2 {
    text-align: center;
}

body.eduvest-laravel .partner-logos-marquee {
    margin-top: 20px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body.eduvest-laravel .partner-logos {
    display: flex;
    width: max-content;
    gap: 18px;
    animation: eduPartnerMarquee 23s linear infinite;
}

body.eduvest-laravel .partner-logos:hover {
    animation-play-state: running;
}

body.eduvest-laravel .partner-logos img {
    width: 160px;
    height: 68px;
    object-fit: contain;
    padding: 8px 16px;
    opacity: 0.86;
    filter: brightness(0) invert(1) saturate(0);
    transition: opacity 160ms ease, transform 160ms ease;
}

body.eduvest-laravel .partner-logos img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@keyframes eduPartnerMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

body.eduvest-laravel .content-grid {
    display: grid;
    gap: 24px;
    margin-top: 28px;
}

body.eduvest-laravel .two-columns {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

/* News, FAQ, testimonial */
body.eduvest-laravel .news-card,
body.eduvest-laravel .course-card {
    overflow: hidden;
}

body.eduvest-laravel .news-card img,
body.eduvest-laravel .course-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

body.eduvest-laravel .news-content,
body.eduvest-laravel .course-content {
    padding: 20px;
}

body.eduvest-laravel .news-date,
body.eduvest-laravel .course-category-tag,
body.eduvest-laravel .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    min-height: 30px;
    padding: 6px 10px;
    color: #f7f1ff;
    border: 1px solid rgba(196, 181, 253, 0.26);
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.18);
    font-size: 0.78rem;
    font-weight: 800;
}

body.eduvest-laravel .news-card h3,
body.eduvest-laravel .course-card h2 {
    margin: 12px 0 8px;
}

body.eduvest-laravel .news-detail-page {
    display: grid;
}

body.eduvest-laravel .news-detail-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 0;
    overflow: hidden;
}

body.eduvest-laravel .news-detail-card > img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

body.eduvest-laravel .news-detail-content {
    display: grid;
    align-content: center;
    gap: 16px;
    padding: 38px;
}

body.eduvest-laravel .news-detail-content h1 {
    margin-bottom: 0;
    font-size: 2.35rem;
}

body.eduvest-laravel .news-body {
    display: grid;
    gap: 14px;
}

body.eduvest-laravel .news-body p {
    margin-bottom: 0;
    color: #e7dbf7;
    font-size: 1rem;
}

body.eduvest-laravel .faq-list,
body.eduvest-laravel .simple-list {
    display: grid;
    gap: 12px;
}

body.eduvest-laravel .faq-item {
    padding: 16px 18px;
}

body.eduvest-laravel .faq-item summary {
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

body.eduvest-laravel .faq-item p {
    margin: 12px 0 0;
}

body.eduvest-laravel .testimonial-grid,
body.eduvest-laravel .course-grid,
body.eduvest-laravel .metric-grid {
    display: grid;
    gap: 18px;
}

body.eduvest-laravel .testimonial-grid,
body.eduvest-laravel .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.eduvest-laravel .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.eduvest-laravel .testimonial-card,
body.eduvest-laravel .dashboard-card,
body.eduvest-laravel .admin-card,
body.eduvest-laravel .material-item {
    padding: 20px;
}

body.eduvest-laravel .testimonial-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

body.eduvest-laravel .testimonial-profile img,
body.eduvest-laravel .profile-card img {
    width: 54px;
    height: 54px;
    border: 2px solid rgba(196, 181, 253, 0.72);
    border-radius: 50%;
    object-fit: cover;
}

/* Course catalog and detail */
body.eduvest-laravel .course-meta,
body.eduvest-laravel .card-footer,
body.eduvest-laravel .table-header,
body.eduvest-laravel .form-actions,
body.eduvest-laravel .actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

body.eduvest-laravel .course-meta {
    margin-bottom: 12px;
}

body.eduvest-laravel .card-footer {
    margin-top: 16px;
}

body.eduvest-laravel .course-card,
body.eduvest-laravel .featured-course-card,
body.eduvest-laravel .news-card,
body.eduvest-laravel .testimonial-card,
body.eduvest-laravel .dashboard-card,
body.eduvest-laravel .dashboard-plan-card,
body.eduvest-laravel .faq-item,
body.eduvest-laravel .material-item {
    transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

body.eduvest-laravel .course-card:hover,
body.eduvest-laravel .featured-course-card:hover,
body.eduvest-laravel .news-card:hover,
body.eduvest-laravel .testimonial-card:hover,
body.eduvest-laravel .dashboard-card:hover,
body.eduvest-laravel .dashboard-plan-card:hover,
body.eduvest-laravel .faq-item:hover,
body.eduvest-laravel .material-item:hover {
    transform: translateY(-4px);
    border-color: var(--edu-border-strong);
}

body.eduvest-laravel .course-card.is-locked,
body.eduvest-laravel .featured-course-card.is-locked {
    position: relative;
}

body.eduvest-laravel .course-card.is-locked img,
body.eduvest-laravel .featured-course-card.is-locked img {
    filter: saturate(0.65) brightness(0.58);
}

body.eduvest-laravel .course-card.is-locked h2,
body.eduvest-laravel .course-card.is-locked h3,
body.eduvest-laravel .course-card.is-locked p,
body.eduvest-laravel .featured-course-card.is-locked h2,
body.eduvest-laravel .featured-course-card.is-locked h3,
body.eduvest-laravel .featured-course-card.is-locked p {
    opacity: 0.78;
}

body.eduvest-laravel .course-lock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 8px 11px;
    color: #fff;
    border: 1px solid rgba(196, 181, 253, 0.32);
    border-radius: 8px;
    background: rgba(7, 3, 15, 0.8);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
    font-size: 0.78rem;
    font-weight: 900;
}

body.eduvest-laravel .course-stat-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

body.eduvest-laravel .course-stat-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 8px 11px;
    color: #fff;
    border: 1px solid rgba(196, 181, 253, 0.22);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.14);
    font-size: 0.88rem;
    font-weight: 800;
}

body.eduvest-laravel .course-detail-hero {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 30px;
    min-height: auto;
    background: rgba(18, 9, 31, 0.92);
}

body.eduvest-laravel .course-detail-hero > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    object-fit: cover;
}

body.eduvest-laravel .video-lessons-shell {
    display: grid;
    grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    margin-top: 28px;
}

body.eduvest-laravel .course-playlist-panel {
    position: sticky;
    top: 80px;
    padding: 20px;
}

body.eduvest-laravel .lesson-nav-list {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

body.eduvest-laravel .lesson-nav-list a {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    min-height: 52px;
    padding: 10px;
    color: #fff;
    border: 1px solid rgba(196, 181, 253, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    text-decoration: none;
}

body.eduvest-laravel .lesson-nav-list a:hover {
    border-color: rgba(196, 181, 253, 0.34);
    background: rgba(139, 92, 246, 0.14);
}

body.eduvest-laravel .lesson-nav-list a.is-completed {
    border-color: rgba(167, 243, 208, 0.28);
    background: rgba(16, 185, 129, 0.08);
}

body.eduvest-laravel .lesson-nav-list span,
body.eduvest-laravel .material-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--edu-violet);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.14);
    font-weight: 900;
}

body.eduvest-laravel .lesson-nav-list strong {
    min-width: 0;
    color: #fff;
    font-size: 0.92rem;
    line-height: 1.35;
}

body.eduvest-laravel .lesson-nav-list i {
    color: var(--edu-success);
}

body.eduvest-laravel .material-list {
    display: grid;
    gap: 14px;
}

body.eduvest-laravel .material-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
}

body.eduvest-laravel .video-lesson-item.is-completed {
    border-color: rgba(167, 243, 208, 0.24);
}

body.eduvest-laravel .lesson-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

body.eduvest-laravel .lesson-title-row h3 {
    margin: 3px 0 0;
}

body.eduvest-laravel .lesson-meta {
    color: var(--edu-violet);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

body.eduvest-laravel .video-embed {
    position: relative;
    width: 100%;
    margin-top: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(196, 181, 253, 0.2);
    border-radius: 8px;
    background: #05030b;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

body.eduvest-laravel .video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.eduvest-laravel .video-empty-state,
body.eduvest-laravel .lesson-complete-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    min-height: 38px;
    margin-top: 14px;
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 800;
}

body.eduvest-laravel .video-empty-state {
    color: var(--edu-muted);
    border: 1px dashed rgba(196, 181, 253, 0.26);
    background: rgba(139, 92, 246, 0.08);
}

body.eduvest-laravel .lesson-complete-badge {
    color: var(--edu-success);
    border: 1px solid rgba(167, 243, 208, 0.26);
    background: rgba(16, 185, 129, 0.1);
}

body.eduvest-laravel .lesson-progress-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

body.eduvest-laravel .lesson-complete-button {
    min-height: 38px;
}

body.eduvest-laravel .inline-action-form {
    display: inline-flex;
    margin: 0;
}

/* Dashboard */
body.eduvest-laravel .dashboard-hero {
    margin-bottom: 24px;
}

body.eduvest-laravel .dashboard-focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(170px, 0.55fr));
    gap: 18px;
    margin-bottom: 24px;
}

body.eduvest-laravel .dashboard-focus-card {
    display: grid;
    gap: 12px;
    align-content: start;
}

body.eduvest-laravel .dashboard-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #fff;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--edu-purple), var(--edu-blue));
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.26);
}

body.eduvest-laravel .dashboard-card p {
    margin: 8px 0 0;
}

body.eduvest-laravel .dashboard-card strong,
body.eduvest-laravel .admin-card strong {
    display: block;
    margin-top: 8px;
    font-size: 2rem;
}

body.eduvest-laravel .dashboard-board {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: start;
}

body.eduvest-laravel .dashboard-main-panel,
body.eduvest-laravel .dashboard-side-panel,
body.eduvest-laravel .dashboard-plan-list {
    display: grid;
    gap: 16px;
}

body.eduvest-laravel .dashboard-plan-card {
    display: grid;
    grid-template-columns: 168px minmax(0, 1fr);
    gap: 18px;
    overflow: hidden;
}

body.eduvest-laravel .dashboard-plan-card > img {
    width: 100%;
    height: 100%;
    min-height: 186px;
    object-fit: cover;
}

body.eduvest-laravel .dashboard-plan-card > div {
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 18px 18px 18px 0;
}

body.eduvest-laravel .dashboard-profile-panel,
body.eduvest-laravel .dashboard-material-panel {
    padding: 20px;
}

body.eduvest-laravel .dashboard-profile-panel {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

body.eduvest-laravel .dashboard-profile-panel img {
    width: 72px;
    height: 72px;
    border: 2px solid rgba(196, 181, 253, 0.72);
    border-radius: 50%;
    object-fit: cover;
}

body.eduvest-laravel .dashboard-profile-panel h2,
body.eduvest-laravel .dashboard-profile-panel p,
body.eduvest-laravel .dashboard-profile-panel .eyebrow {
    margin: 0;
}

body.eduvest-laravel .simple-list a {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 13px 0 13px 16px;
    border-bottom: 1px solid var(--edu-border);
    text-decoration: none;
}

body.eduvest-laravel .simple-list a::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--edu-violet);
}

body.eduvest-laravel .simple-list small {
    color: var(--edu-soft);
}

body.eduvest-laravel .progress-meter {
    display: block;
    width: 100%;
    height: 9px;
    overflow: hidden;
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    appearance: none;
}

body.eduvest-laravel .progress-meter::-webkit-progress-bar {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

body.eduvest-laravel .progress-meter::-webkit-progress-value {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--edu-purple), var(--edu-blue));
}

body.eduvest-laravel .progress-meter::-moz-progress-bar {
    border-radius: 999px;
    background: linear-gradient(90deg, var(--edu-purple), var(--edu-blue));
}

body.eduvest-laravel .learning-progress-card .progress-meter {
    margin: 4px 0 2px;
}

body.eduvest-laravel .learning-empty-state {
    display: grid;
    gap: 12px;
}

body.eduvest-laravel .learning-empty-state h3,
body.eduvest-laravel .learning-empty-state p {
    margin: 0;
}

/* Forms, auth, admin */
body.eduvest-laravel .auth-screen {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 140px);
}

body.eduvest-laravel .auth-panel {
    width: min(560px, 100%);
    padding: 26px;
}

body.eduvest-laravel .form-shell {
    width: min(900px, 100%);
    margin: 0 auto;
}

body.eduvest-laravel .stacked-form,
body.eduvest-laravel .lesson-editor-list,
body.eduvest-laravel .lesson-editor-rows {
    display: grid;
    gap: 16px;
}

body.eduvest-laravel label {
    display: grid;
    gap: 8px;
    color: #f8f4ff;
    font-weight: 800;
}

body.eduvest-laravel input,
body.eduvest-laravel textarea,
body.eduvest-laravel select {
    width: 100%;
    min-height: 44px;
    padding: 11px 13px;
    color: #fff;
    border: 1px solid rgba(196, 181, 253, 0.22);
    border-radius: 8px;
    background: rgba(7, 3, 15, 0.86);
    font: inherit;
    outline: none;
}

body.eduvest-laravel textarea {
    min-height: 130px;
    resize: vertical;
}

body.eduvest-laravel input:focus,
body.eduvest-laravel textarea:focus,
body.eduvest-laravel select:focus {
    border-color: var(--edu-violet);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

body.eduvest-laravel .auth-switch,
body.eduvest-laravel .muted {
    margin-top: 14px;
}

body.eduvest-laravel .auth-switch a {
    color: var(--edu-violet);
    font-weight: 900;
}

body.eduvest-laravel .lesson-editor-toolbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

body.eduvest-laravel .lesson-editor-toolbar .section-heading {
    margin-bottom: 0;
}

body.eduvest-laravel .lesson-editor-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(196, 181, 253, 0.18);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

body.eduvest-laravel .lesson-add-button {
    flex: 0 0 auto;
}

body.eduvest-laravel .table-wrap {
    width: 100%;
    overflow-x: auto;
}

body.eduvest-laravel table {
    width: 100%;
    border-collapse: collapse;
}

body.eduvest-laravel th,
body.eduvest-laravel td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid var(--edu-border);
    vertical-align: top;
}

body.eduvest-laravel th {
    color: var(--edu-violet);
    background: rgba(255, 255, 255, 0.04);
}

body.eduvest-laravel td p {
    margin: 6px 0 0;
}

body.eduvest-laravel .actions {
    justify-content: flex-start;
}

/* Profile */
body.eduvest-laravel .profile-page-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 24px;
    align-items: start;
}

body.eduvest-laravel .profile-preview-card {
    position: sticky;
    top: 80px;
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 28px;
    overflow: hidden;
    text-align: center;
}

body.eduvest-laravel .profile-avatar-wrap {
    display: grid;
    place-items: center;
    width: 124px;
    height: 124px;
    padding: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--edu-violet), var(--edu-blue));
}

body.eduvest-laravel .profile-avatar-wrap img {
    width: 100%;
    height: 100%;
    border: 4px solid #0b0617;
    border-radius: 50%;
    object-fit: cover;
}

body.eduvest-laravel .profile-preview-card h1,
body.eduvest-laravel .profile-preview-card p,
body.eduvest-laravel .profile-preview-card .eyebrow {
    margin: 0;
}

body.eduvest-laravel .profile-preview-card > span {
    color: var(--edu-violet);
    font-weight: 800;
}

body.eduvest-laravel .profile-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
}

body.eduvest-laravel .profile-stat-grid div {
    padding: 14px;
    border: 1px solid rgba(196, 181, 253, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
}

body.eduvest-laravel .profile-stat-grid strong {
    display: block;
    color: #fff;
    font-size: 1.8rem;
}

body.eduvest-laravel .profile-stat-grid span {
    color: var(--edu-muted);
    font-size: 0.86rem;
    font-weight: 800;
}

body.eduvest-laravel .profile-edit-card {
    padding: 28px;
}

body.eduvest-laravel .profile-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

body.eduvest-laravel .profile-form textarea {
    min-height: 170px;
}

body.eduvest-laravel .profile-help-card {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    color: var(--edu-muted);
    border: 1px solid rgba(196, 181, 253, 0.16);
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.08);
}

body.eduvest-laravel .profile-help-card i {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    border-radius: 8px;
    background: rgba(139, 92, 246, 0.24);
}

body.eduvest-laravel .profile-help-card p {
    margin: 0;
}

[data-aos] {
    pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
    body.eduvest-laravel *,
    body.eduvest-laravel *::before,
    body.eduvest-laravel *::after {
        animation-duration: 1ms !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

@media (max-width: 980px) {
    body.eduvest-laravel h1 {
        font-size: 2.4rem;
    }

    body.eduvest-laravel h2 {
        font-size: 1.65rem;
    }

    body.eduvest-laravel .app-header {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        padding-block: 10px;
    }

    body.eduvest-laravel .nav-list {
        flex-wrap: wrap;
    }

    body.eduvest-laravel .two-columns,
    body.eduvest-laravel .testimonial-grid,
    body.eduvest-laravel .course-grid,
    body.eduvest-laravel .metric-grid,
    body.eduvest-laravel .course-detail-hero,
    body.eduvest-laravel .dashboard-focus-grid,
    body.eduvest-laravel .dashboard-board,
    body.eduvest-laravel .profile-page-shell,
    body.eduvest-laravel .featured-course-grid,
    body.eduvest-laravel .video-lessons-shell,
    body.eduvest-laravel .news-detail-card {
        grid-template-columns: 1fr;
    }

    body.eduvest-laravel .course-playlist-panel,
    body.eduvest-laravel .profile-preview-card {
        position: relative;
        top: auto;
    }

    body.eduvest-laravel .dashboard-plan-card,
    body.eduvest-laravel .dashboard-profile-panel {
        grid-template-columns: 1fr;
    }

    body.eduvest-laravel .dashboard-plan-card > div {
        padding: 0 18px 18px;
    }

    body.eduvest-laravel .dashboard-plan-card > img {
        min-height: 180px;
    }

    body.eduvest-laravel .news-detail-card > img {
        min-height: 280px;
    }
}

@media (max-width: 620px) {
    body.eduvest-laravel .app-main {
        width: min(100% - 22px, 1180px);
        padding-top: 18px;
    }

    body.eduvest-laravel .hero-section,
    body.eduvest-laravel .page-hero,
    body.eduvest-laravel .course-detail-hero,
    body.eduvest-laravel .media-partner-section,
    body.eduvest-laravel .testimonial-section,
    body.eduvest-laravel .auth-panel,
    body.eduvest-laravel .content-card,
    body.eduvest-laravel .form-shell,
    body.eduvest-laravel .news-detail-content,
    body.eduvest-laravel .profile-edit-card,
    body.eduvest-laravel .profile-preview-card {
        padding: 20px;
    }

    body.eduvest-laravel .hero-section,
    body.eduvest-laravel .page-hero {
        min-height: 280px;
    }

    body.eduvest-laravel h1 {
        font-size: 2rem;
    }

    body.eduvest-laravel .hero-actions,
    body.eduvest-laravel .hero-actions > *,
    body.eduvest-laravel .course-hero-actions,
    body.eduvest-laravel .course-hero-actions > *,
    body.eduvest-laravel .lesson-add-button {
        width: 100%;
    }

    body.eduvest-laravel .course-meta,
    body.eduvest-laravel .card-footer,
    body.eduvest-laravel .table-header,
    body.eduvest-laravel .form-actions,
    body.eduvest-laravel .actions,
    body.eduvest-laravel .lesson-title-row,
    body.eduvest-laravel .lesson-editor-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    body.eduvest-laravel .material-item {
        grid-template-columns: 1fr;
    }

    body.eduvest-laravel .profile-form-grid {
        grid-template-columns: 1fr;
    }

    body.eduvest-laravel .partner-logos img {
        width: 132px;
        height: 58px;
    }
}
