* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
    margin-bottom: 20px;
}

#video-url {
    width: 100%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.players {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.player-box {
    background-color: #3498db;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    width: 150px;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.player-box:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
}

#video-container {
    margin-top: 20px;
    width: 100%;
    max-width: 800px;
}
