/* Video Section Styles */
.video-section {
    margin: 0rem 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
}

.video-container {
    width: 100%;
    max-width: 800px;
    position: relative;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, rgba(21,53,99,0.8), rgba(54,94,150,0.8));
    border: 1px solid rgba(68,142,250,0.2);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(68,142,250,0.15);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(21,53,99,0.9), rgba(54,94,150,0.9));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .video-overlay {
    opacity: 1;
}

.live-indicator {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(220,53,69,0.9);
    padding: 6px 10px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.live-text {
    font-family: 'Orbitron', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
}

.video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.video-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.video-player iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}



/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        margin: 2rem 0;
    }
    
    .video-container {
        max-width: 100%;
    }
    
    .video-title {
        font-size: 1.5rem;
    }
    
    .video-description {
        font-size: 1rem;
    }
    
    .play-button {
        font-size: 3rem;
    }
    
    .video-placeholder-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-overlay {
        padding: 1.5rem;
    }
    
    .live-indicator {
        top: 15px;
        left: 15px;
        padding: 6px 10px;
    }
    
    .live-text {
        font-size: 0.7rem;
    }
    
    .video-title {
        font-size: 1.3rem;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
} 