/* ==========================================================================
   🎓 STUDENT PAGE REDESIGN SIZING & OVERLAP OVERRIDES (Page-specific)
   ========================================================================== */

/* Currently inherits common styles from index_redesign.css. Add student-specific overrides below. */

/* 🎬 Video Explainer Section */
.premium-steps__video-wrapper {
    margin-top: 50px;
    text-align: center;
    padding: 0 20px;
}

.video-section-title {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background-color: #111111;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-placeholder-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(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.play-button-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #E73E3F;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(231, 62, 63, 0.4);
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.video-placeholder-overlay:hover .play-button-circle {
    transform: scale(1.1);
}

.video-placeholder-text {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    margin: 0;
    font-weight: 300;
    opacity: 0.8;
}

.video-container.playing .video-placeholder-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 📱 Responsive Mobile Styles for Video Section */
@media (max-width: 768px) {
    .play-button-circle {
        width: 50px;
        height: 50px;
        margin-bottom: 8px;
    }
    
    .play-button-circle svg {
        width: 22px;
        height: 22px;
    }

    .video-placeholder-text {
        font-size: 12px;
        padding: 0 15px;
        text-align: center;
    }

    .video-section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .premium-steps__video-wrapper {
        margin-top: 30px;
    }
}

