/* Estilos para a tela de vídeo */
.video-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    max-width: 100%;
}

.video-title {
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

/* Ajustes responsivos para dispositivos móveis */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
    }
    
    .video-title {
        font-size: 20px;
    }
}

/* Estilos para a tela de formulário de nome */
.name-form-container {
    width: 100%;
    max-width: 450px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#name-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#first-name {
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    margin-bottom: 25px;
    border: none;
    border-radius: 50px;
    background-color: white;
    color: #333;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    outline: none;
    transition: all 0.3s ease;
}

#first-name:focus {
    box-shadow: 0 4px 15px rgba(231, 66, 250, 0.4);
    transform: translateY(-2px);
}

#first-name::placeholder {
    color: #999;
    font-style: italic;
    font-size: 15px;
}

#name-form .continue-button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(to right, #e742fa, #c145d6);
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    box-shadow: 0 4px 15px rgba(231, 66, 250, 0.3);
}

#name-form .continue-button:hover {
    background: linear-gradient(to right, #d633e9, #b538c8);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231, 66, 250, 0.4);
}

#name-form .continue-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(231, 66, 250, 0.3);
} 