body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #006491; /* Cor azul da Domino's */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/logo-dominospizza.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(25px); /* Volta o desfoque */
    z-index: -1;
    opacity: 0.6; /* Reduz opacidade para melhor contraste */
}

.player-container {
    background: transparent; /* Remove o fundo branco */
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 350px;
    width: calc(100% - 40px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px;
    position: relative;
    z-index: 10;
}

.logomarca {
    width: 220px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 15px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.controls {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.website-link {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.website-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.version-info {
    position: fixed;
    bottom: 10px;
    right: 10px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
}

/* Responsivo para mobile */
@media (max-width: 480px) {
    body {
        padding: 0;
        height: 100dvh;
    }
    
    .player-container {
        padding: 20px;
        margin: 15px;
        max-width: none;
        width: calc(100% - 30px);
    }
    
    .logomarca {
        width: 180px;
    }
    
    .website-link,
    .version-info {
        font-size: 8px;
        padding: 4px 6px;
        bottom: 5px;
    }
    
    .website-link {
        left: 5px;
    }
    
    .version-info {
        right: 5px;
    }
}