/* Basit LMS - Öğrenci Panel Stil Dosyası */

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #06b6d4;
    --dark: #1f2937;
    --light: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Login Page */
.basit-lms-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
}

.basit-lms-login-container {
    width: 100%;
    max-width: 450px;
}

.basit-lms-login-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.login-header p {
    color: #6b7280;
    font-size: 16px;
}

.basit-lms-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    border-left: 4px solid var(--danger);
    font-weight: 600;
}

.basit-lms-login-form .form-group {
    margin-bottom: 25px;
}

.basit-lms-login-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.basit-lms-login-form label .dashicons {
    color: var(--primary);
}

.basit-lms-login-form input[type="text"],
.basit-lms-login-form input[type="password"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.basit-lms-login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.form-group-check {
    margin-bottom: 25px;
}

.form-group-check label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #6b7280;
    font-size: 14px;
    cursor: pointer;
}

.basit-lms-btn-primary {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.basit-lms-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

/* Student Panel */
.basit-lms-student-panel {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.basit-lms-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-content h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 500;
}

.basit-lms-btn-logout {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.basit-lms-btn-logout:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
    color: var(--white);
    text-decoration: none;
}

/* No Courses */
.no-courses {
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.no-courses .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: var(--primary);
    margin-bottom: 20px;
}

.no-courses h3 {
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 10px;
}

.no-courses p {
    color: #6b7280;
    font-size: 18px;
}

/* Courses Grid */
.basit-lms-courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    animation: gridFadeIn 0.8s ease;
}

@keyframes gridFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.course-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-image-placeholder .dashicons {
    font-size: 80px;
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.8);
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.course-content {
    padding: 25px;
}

.course-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.course-content p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.basit-lms-btn-course {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.basit-lms-btn-course:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.5);
    color: var(--white);
    text-decoration: none;
}

/* Video Page */
.basit-lms-video-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.video-page-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.back-button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-button:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
    color: var(--white);
    text-decoration: none;
}

.video-page-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
}

.video-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}

/* Video Player */
.video-player {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.video-player h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-description {
    margin-top: 25px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.video-description h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.video-description p {
    color: #6b7280;
    line-height: 1.6;
}

/* Video Playlist */
.video-playlist {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 20px;
}

.video-playlist h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.playlist-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.playlist-items::-webkit-scrollbar {
    width: 6px;
}

.playlist-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.playlist-items::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.playlist-item:hover {
    background: #f3f4f6;
    transform: translateX(5px);
    text-decoration: none;
}

.playlist-item.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(79, 70, 229, 0.1));
    border-color: var(--primary);
}

.playlist-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.playlist-item.active .playlist-number {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

.playlist-info {
    flex: 1;
}

.playlist-title {
    font-weight: 600;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.4;
}

.playlist-item .dashicons {
    color: var(--primary);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.playlist-item:hover .dashicons,
.playlist-item.active .dashicons {
    opacity: 1;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1200px) {
    .basit-lms-courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-container {
        grid-template-columns: 1fr;
    }
    
    .video-playlist {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .basit-lms-student-panel {
        padding: 20px 15px;
    }
    
    .basit-lms-header {
        padding: 30px 20px;
        text-align: center;
    }
    
    .header-content h1 {
        font-size: 32px;
    }
    
    .basit-lms-courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-page-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .video-page-header h2 {
        font-size: 24px;
    }
    
    .video-container {
        flex-direction: column;
    }
    
    .video-player {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .basit-lms-login-card {
        padding: 40px 25px;
    }
    
    .login-header h2 {
        font-size: 26px;
    }
}

/* Video Player Box - Modern ve Güzel Tasarım */
.video-player-box {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
}

.video-thumbnail-wrapper:hover img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail-wrapper:hover .play-overlay {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.6), rgba(118, 75, 162, 0.6));
}

.play-button {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff0844, #ff3d71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(255, 8, 68, 0.6);
    position: relative;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.video-thumbnail-wrapper:hover .play-button {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(255, 8, 68, 0.8);
    background: linear-gradient(135deg, #ff3d71, #ff0844);
}

.play-button .dashicons {
    font-size: 50px;
    width: 50px;
    height: 50px;
    color: white;
    margin-left: 8px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.play-text {
    margin-top: 20px;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-thumbnail-wrapper:hover .play-text {
    opacity: 1;
    transform: translateY(0);
}

/* Video Player Başlık */
.video-player h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 16px;
    border-left: 5px solid #6366f1;
}

.video-thumbnail-wrapper:hover .play-text {
    opacity: 1;
    transform: translateY(0);
}


/* Boş Durum - Hoş Geldiniz Mesajı */
.no-courses-welcome {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
}

.no-courses-welcome::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.welcome-animation {
    position: relative;
    margin-bottom: 40px;
    z-index: 1;
}

.welcome-icon {
    display: inline-block;
    animation: bounce 2s infinite;
}

.welcome-icon .dashicons {
    font-size: 120px;
    width: 120px;
    height: 120px;
    color: white;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.welcome-books {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.welcome-books .dashicons {
    font-size: 40px;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    animation: float 3s ease-in-out infinite;
}

.welcome-books .dashicons:nth-child(1) { animation-delay: 0s; }
.welcome-books .dashicons:nth-child(2) { animation-delay: 0.3s; }
.welcome-books .dashicons:nth-child(3) { animation-delay: 0.6s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.no-courses-welcome h2 {
    font-size: 48px;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.no-courses-welcome h3 {
    font-size: 28px;
    margin: 0 0 20px 0;
    font-weight: 600;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.no-courses-welcome p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-item .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    color: #10b981;
    background: white;
    border-radius: 50%;
    padding: 8px;
}

.feature-item span:last-child {
    font-size: 16px;
    font-weight: 600;
}

/* Video Player Başlık */
.video-player h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 16px;
    border-left: 5px solid #6366f1;
}

/* Modern Video Player Tasarımı */
.video-player-modern {
    background: white;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.video-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 12px 24px;
    border-radius: 0 0 16px 0;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.video-header-badge .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.video-title-modern {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    padding: 30px 30px 20px;
    line-height: 1.4;
}

.video-player-box-modern {
    margin: 0 30px 30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    position: relative;
}

.video-thumbnail-wrapper-modern {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    cursor: pointer;
    overflow: hidden;
    background: #000;
}

.video-thumbnail-wrapper-modern img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail-wrapper-modern:hover img {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.play-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.video-thumbnail-wrapper-modern:hover .play-overlay-modern {
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

.play-button-container {
    position: relative;
    margin-bottom: 20px;
}

.play-button-modern {
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 10px 25px rgba(255, 0, 0, 0.5));
}

.video-thumbnail-wrapper-modern:hover .play-button-modern {
    transform: scale(1.15);
    filter: drop-shadow(0 15px 35px rgba(255, 0, 0, 0.7));
}

.play-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulse-effect 2s infinite;
}

@keyframes pulse-effect {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.watch-text-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-thumbnail-wrapper-modern:hover .watch-text-modern {
    opacity: 1;
    transform: translateY(0);
}

.watch-main {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.watch-sub {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.video-duration-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    z-index: 3;
}

.video-duration-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.video-description-modern {
    padding: 0 30px 30px;
}

.description-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border-radius: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 16px;
    color: #374151;
}

.description-header .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
    color: #6366f1;
}

.video-description-modern p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 20px;
    margin: 0;
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .video-title-modern {
        font-size: 22px;
        padding: 20px 20px 15px;
    }
    
    .video-player-box-modern {
        margin: 0 20px 20px;
    }
    
    .video-description-modern {
        padding: 0 20px 20px;
    }
    
    .watch-main {
        font-size: 20px;
    }
    
    .play-button-modern svg {
        width: 50px;
        height: 50px;
    }
}
