/* MasterStudy LMS Integration Styles */

/* STM LMS Button Overrides */
.stm-lms-btn {
    background: linear-gradient(180deg, #d1ba9b 0%, #ff751f 100%) !important;
    color: #141a20 !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.stm-lms-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(255, 117, 31, 0.5);
}

/* Course Card Overrides */
.stm_lms_course_card {
    border-radius: 24px !important;
    overflow: hidden;
    transition: all 0.3s ease !important;
}

.stm_lms_course_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

/* Login Form */
.masterstudy-login-form {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
}

/* Profile Page */
.masterstudy-profile {
    background: linear-gradient(135deg, #2e373d 0%, #141a20 100%) !important;
}

/* Course Progress */
.masterstudy-progress-bar {
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 3px !important;
}

.masterstudy-progress-fill {
    background: linear-gradient(90deg, #ff751f 0%, #ff9a52 100%) !important;
}

/* Sidebar */
.masterstudy-sidebar {
    background: #1a2028 !important;
}

/* Lesson Navigation */
.masterstudy-lesson-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.masterstudy-lesson-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #f5f5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.masterstudy-lesson-nav a:hover {
    background: rgba(255, 117, 31, 0.15);
    border-color: rgba(255, 117, 31, 0.3);
}

/* Video Player */
.masterstudy-video-player {
    border-radius: 16px !important;
    overflow: hidden;
}

/* Quiz Styles */
.masterstudy-quiz {
    background: linear-gradient(135deg, #2e373d 0%, #1a2028 100%);
    border-radius: 24px;
    padding: 32px;
}

.masterstudy-quiz-question {
    color: #f5f5f5;
    font-size: 18px;
    margin-bottom: 20px;
}

.masterstudy-quiz-answers label {
    display: block;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.masterstudy-quiz-answers label:hover {
    background: rgba(255, 117, 31, 0.1);
    border-color: rgba(255, 117, 31, 0.3);
}

.masterstudy-quiz-answers input:checked + label {
    background: rgba(255, 117, 31, 0.2);
    border-color: #ff751f;
    color: #f5f5f5;
}

/* Achievements / Certificates */
.masterstudy-certificate {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.4);
}

/* Instructor Profile */
.masterstudy-instructor-card {
    background: linear-gradient(135deg, #2e373d 0%, #1a2028 100%);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Course Bundle / Packages */
.masterstudy-bundle-card {
    background: linear-gradient(135deg, #2e373d 0%, #1a2028 100%);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.masterstudy-bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 117, 31, 0.3);
}

/* Reviews */
.masterstudy-reviews {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 24px;
}

.masterstudy-review-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.masterstudy-review-item:last-child {
    border-bottom: none;
}

/* MasterStudy Mobile Responsive */
@media (max-width: 768px) {
    .stm_lms_course_card__inner {
        padding: 16px !important;
    }
    
    .masterstudy-profile-content {
        padding: 20px !important;
    }
}