body {
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.video-container {
    background-color: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    padding: 20px;
    width: 90%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.mistvideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #1d95c9, #e0b44b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(224, 180, 75, 0.4);
}

.controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 20px;
    background-color: #242424;
    padding: 10px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.controls button {
    background: none;
    border: none;
    color: #b3b3b3;
    cursor: pointer;
    font-size: 1.8em;
    padding: 5px 10px;
    transition: color 0.3s, transform 0.2s;
}

.controls button:hover {
    color: #e0b44b;
    transform: scale(1.1);
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    margin: 0 15px;
    cursor: pointer;
}

.progress {
    height: 100%;
    width: 75%; /* Exemple de progression */
    background: linear-gradient(90deg, #1d95c9, #e0b44b);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(29, 149, 201, 0.5);
    transition: width 0.4s ease-in-out;
}