/**
 * Necudah LMS - Premium Design Layer
 * 
 * This stylesheet provides the "WOW" factor. 
 * It is only loaded when the Necudah theme is active or via settings.
 */

:root {
    --lms-primary: var(--v3-accent, #6366f1);
    --lms-primary-dark: #4f46e5;
    --lms-secondary: #ec4899;
}

/* Gradients */
.lms-course-thumbnail-placeholder {
    background: linear-gradient(135deg, var(--lms-primary), var(--lms-secondary)) !important;
}

.lms-progress-fill {
    background: linear-gradient(90deg, var(--lms-primary), var(--lms-secondary)) !important;
}

/* Fancy Cards */
.card,
.necudah-card {
    background: var(--necudah-bg-alt);
    border-radius: var(--necudah-radius);
    box-shadow: var(--necudah-shadow);
    border: 1px solid var(--necudah-border) !important;
}

.lms-course-card {
    border-radius: var(--necudah-radius);
    background: var(--necudah-bg-alt);
    box-shadow: var(--necudah-shadow);
    border: 1px solid var(--necudah-border);
}

.lms-course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--necudah-shadow-lg);
}

/* Progress Hero */
.lms-progress-bar.lms-progress-hero {
    background: rgba(255, 255, 255, 0.3) !important;
}

/* Difficulty Badges */
.lms-difficulty {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700 !important;
}

/* Animations */
.lms-curriculum-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.lms-curriculum-item:hover {
    transform: translateX(5px);
    background: var(--necudah-bg-alt) !important;
    box-shadow: var(--necudah-shadow);
}

/* Course Completed Badge - Silver Theme */
.lms-course-completed-badge {
    text-align: center;
    margin-bottom: 15px;
    padding: 15px;
    background: var(--necudah-bg-alt);
    border-radius: var(--necudah-radius);
    border: 1px solid var(--necudah-border);
}

.lms-course-completed-badge .lms-badge-icon {
    font-size: 32px;
    margin-bottom: 5px;
    color: var(--necudah-text);
    filter: grayscale(100%);
}

.lms-course-completed-badge h3 {
    margin: 0;
    color: var(--necudah-text);
    font-size: 18px;
}