/* Reset básico para evitar problemas de layout */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6, #64748b, #475569);
    background-attachment: fixed;
    min-height: 100vh;
    color: #f9f8fc;
    margin: 0;
    padding: 40px 20px;
    text-align: center;
}

.container {
    max-width: 750px;
    margin: 0 auto;
}

.profile-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #38bdf8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 20px;
}

.bio {
    font-size: 1.05rem;
    line-height: 1.6;
    background-color: rgba(15, 23, 42, 0.4);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Botão personalizado em tom verde escuro */
.btn-custom {
    display: inline-block;
    background-color: #14532d;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    border: 1px solid #16a34a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 40px;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: #15803d;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.lyrics-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #38bdf8;
    font-weight: bold;
}

/* CORRIGIDO: Adicionada a chave de abertura { e o fechamento correto */
.lyrics {
    font-size: 1rem;
    line-height: 1.8;
    white-space: pre-wrap;
    background-color: rgba(15, 23, 42, 0.3);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: inherit;
}