/* Styles pour la section vidéo */
.video-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 16px 16px 0 0;
}

.preview-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: none;
    background: #FFB800;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: scale(1.1);
    background: #FFA000;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

.control-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.progress {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
}

.progress-filled {
    height: 100%;
    background: #FFB800;
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
}

.time-display {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.control-buttons {
    display: flex;
    gap: 12px;
}

.control-buttons button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
}

.control-buttons button:hover {
    color: #FFB800;
}

.video-features {
    display: flex;
    justify-content: space-around;
    padding: 24px;
    background: white;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature i {
    font-size: 24px;
    color: #FFB800;
}

.feature span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}
