body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: #111;
    color: #fff;
}

.container {
    max-width: 480px;
    margin: auto;
    padding: 20px;
}

.profile {
    text-align: center;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff0303;
}

.sub {
    color: #ccc;
    font-size: 1rem;
    margin-top: -5px;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.btn {
    padding: 10px 15px;
    border-radius: 30px;
    background: #ff3103;
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #ff6666;
}

.video iframe {
    border-radius: 12px;
    margin-bottom: 20px;
}

.cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.card {
    background-size: cover;
    background-position: center;
    padding: 70px 20px;
    border-radius: 20px;
    position: relative;
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 3px black;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.02);
}

.spotify iframe {
    margin-bottom: 50px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    background-image: url('/img/back.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    backdrop-filter: blur(2px);
    z-index: -1;
}

.footer {

    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 14px;
    font-family: 'Arial', sans-serif;
    margin-top: 40px;
}

.footer strong {
    color: #ff0000;
    /* vermelho, pode trocar para a cor da sua identidade visual */
}

.spotify {
    max-width: 600px;
    margin: 40px auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: #fff;
    /* ou outra cor que combine com seu tema */
}