/* ===== MOTIVATIONAL HERO ===== */
.video-hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #0b1120 0%, #1e1a3a 50%, #2d1b4b 100%);
    overflow: hidden;
}

.video-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.video-hero::after {
    content: '✨';
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 150px;
    opacity: 0.1;
    pointer-events: none;
}

.video-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    padding: 8px 22px;
    border-radius: 60px;
    margin-bottom: 28px;
}

.video-badge i {
    color: #ffd966;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.video-title {
    font-size: 3.6rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.video-title span {
    background: linear-gradient(135deg, #FFD966, #FF8A5C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

/* Stats Section */
.stats-section {
    max-width: 1200px;
    margin: -40px auto 50px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    background: white;
    border-radius: 30px;
    padding: 35px 30px;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.stat-card {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Day Filters - Monday Special */
.filters-section {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.monday-badge {
    text-align: center;
    margin-bottom: 25px;
}

.monday-badge span {
    display: inline-block;
    background: linear-gradient(135deg, #ffd966, #ffaa33);
    padding: 8px 25px;
    border-radius: 50px;
    color: #0b1120;
    font-weight: 700;
    font-size: 0.9rem;
}

.filters-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #475569;
}

.filter-btn:hover {
    border-color: #da0b4e;
    color: #da0b4e;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    color: white;
    border-color: transparent;
}

/* Search Box */
.search-container {
    max-width: 500px;
    margin: 25px auto 0;
    position: relative;
}

.search-container i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #da0b4e;
    box-shadow: 0 0 0 3px rgba(218, 11, 78, 0.1);
}

/* Videos Grid */
.videos-section {
    max-width: 1280px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px -15px rgba(0,0,0,0.2);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0b1120, #1e1a3a);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #da0b4e;
    transition: transform 0.3s;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.video-info {
    padding: 20px;
}

.video-category {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ffd96620, #ffaa3320);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #da0b4e;
    margin-bottom: 12px;
}

.video-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0b1120;
    line-height: 1.4;
}

.video-info p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e9edf3;
}

.views, .date {
    font-size: 0.75rem;
    color: #94a3b8;
}

.views i, .date i {
    margin-right: 5px;
}

.motivation-quote {
    font-size: 0.7rem;
    color: #ffd966;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin: 40px 0 20px;
}

.load-more-btn {
    padding: 14px 35px;
    background: linear-gradient(135deg, #da0b4e, #4f46e5);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -8px rgba(218, 11, 78, 0.4);
}

/* Daily Motivation Banner */
.daily-motivation {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.motivation-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 30px;
    padding: 25px 35px;
    text-align: center;
    color: white;

}

.motivation-banner i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.motivation-banner h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.motivation-banner p {
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .video-title {
        font-size: 2.8rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .video-title {
        font-size: 2.2rem;
    }
    .videos-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .motivation-banner {
        padding: 20px;
    }
}

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

.video-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Modal Styles */
.video-modal {
    max-width: 900px;
    margin: 40px auto;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.video-modal iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border: none;
}

.mfp-fade.mfp-bg {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-fade.mfp-bg.mfp-ready {
    opacity: 0.8;
}
.mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    transition: all 0.3s ease-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}