body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(45deg, #0b0e13, #2c2f35, #11151b, #0b0e13);
    background-size: 400% 400%;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    animation: waveBackground 8s linear infinite;
}

@keyframes waveBackground {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* Container principal */
.container {
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Logo */
.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Controles */
.controls {
    margin-bottom: 20px;
}

.control-icon {
    font-size: 30px;
    color: #464a51;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    margin: 0 15px;
}

.control-icon:hover {
    color: #1ed760;
    transform: scale(1.1);
}

/* Faixa atual */
.current-track {
    font-size: 18px;
}

/* Controle de Volume */
.volume-control {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.volume-control i {
    font-size: 20px;
    color: #464a51;
}

#volume-slider {
    width: 200px;
    margin: 0 10px;
    cursor: pointer;
    background: #464a51;
    border-radius: 5px;
    transition: background 0.3s;
    appearance: none;
    height: 5px;
}

#volume-slider::-webkit-slider-thumb {
    width: 15px;
    height: 15px;
    background: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    appearance: none;
    transition: background 0.3s;
}

#volume-slider:hover {
    background: #1ed760;
}

#volume-slider:hover::-webkit-slider-thumb {
    background: #ffffff;
}

/* Modal */
#download-dialog {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 10px;
    opacity: 0;
    transition: top 0.5s ease-out, opacity 0.5s ease-out;
    width: 90%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

#download-dialog.show {
    top: 20px; /* Ajusta o modal para aparecer abaixo do topo */
    opacity: 1;
}

.dialog-content {
    background: #fff;
    color: #333;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.dialog-content i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

.dialog-content p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.dialog-section {
    margin: 10px 0;
}

.dialog-section h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #007bff;
}

.dialog-section button {
    background: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    margin: 5px;
    transition: background 0.3s;
}

.dialog-section button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #bbbbbb;
}

/* Responsivo */
@media (max-width: 600px) {
    #download-dialog {
        width: 90%;
    }

    .container {
        padding: 10px;
    }

    .logo {
        width: 80px;
        height: 80px;
    }

    .control-icon {
        font-size: 24px;
    }

    .current-track {
        font-size: 16px;
    }
}
pre {
    background-color: #a7a7a7;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    overflow: auto;
    font-family: 'Courier New', Courier, monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
}

code {
    color: #000000;
    padding: 2px 4px;
    border-radius: 3px;
    font-family: 'Courier New', Courier, monospace;
}
