/* Video Player Section Styles */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.video-container-wrapper {
    position: relative;
    z-index: 1;
}

.video-section-title {
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.video-section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 50px;
}

.video-player-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: #000;
    position: relative;
}

.video-player-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
}

/* Custom Video Controls Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-player-container:hover .video-overlay {
    opacity: 1;
}

/* Play Button Overlay */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.video-play-button:hover {
    background: #ffffff;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.video-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #667eea;
    margin-left: 4px;
}

.video-play-button.playing {
    opacity: 0;
    pointer-events: none;
}

/* Video Info Badge */
.video-info-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }

    .video-section-title {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .video-section-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .video-player-container {
        border-radius: 15px;
        margin: 0 15px;
    }

    .video-play-button {
        width: 60px;
        height: 60px;
    }

    .video-play-button::after {
        border-width: 10px 0 10px 16px;
    }

    .video-info-badge {
        font-size: 12px;
        padding: 8px 16px;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 576px) {
    .video-section-title {
        font-size: 26px;
    }

    .video-section-subtitle {
        font-size: 14px;
    }

    .video-play-button {
        width: 50px;
        height: 50px;
    }

    .video-play-button::after {
        border-width: 8px 0 8px 14px;
    }
}
