/* Estilização Geral */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #f0f2f5; 
    color: #333;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Área central de conteúdo */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Container do Player */
.container {
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.video-wrapper {
    width: 100%;
    position: relative;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9; 
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Controles */
.controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 500px; 
}

button {
    flex: 1;
    max-width: 180px;
    background-color: #00a884;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button:hover { background-color: #008f6f; }
button:active { transform: scale(0.98); }

@media (max-width: 600px) {
    .main-content { padding: 10px; }
    .container { padding: 5px; box-shadow: none; background-color: transparent; }
    button { padding: 12px; font-size: 14px; }
}