* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    background: #0f0f0f;
    color: #fff;
}

.perfil-artista {
    max-width: 1400px;
    margin: auto;
}

.capa {
    height: 220px;
    background: linear-gradient(135deg, #ff0057, #6a00ff);
    border-radius: 0 0 30px 30px;
}

.card {
    background: #181818;
    margin: -80px 20px 40px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.6);
    text-align: center;
}

.avatar {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #181818;
    margin-top: -100px;
    background: #000;
}

h1 {
    margin: 15px 0 10px;
    font-size: 28px;
}

.badge-artista {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px;
    background: #ff0057;
    border-radius: 20px;
    font-size: 14px;
}

.bio {
    max-width: 600px;
    margin: 15px auto;
    color: #ccc;
    line-height: 1.6;
}

.acoes {
    margin-top: 25px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    margin: 0 8px;
}

.btn.seguir {
    background: #ff0057;
    color: #fff;
}

.btn.compartilhar {
    background: #2b2b2b;
    color: #fff;
}

.btn:hover {
    opacity: .9;
}
.videos-artista {
    margin: 40px 20px;
}

.videos-artista h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.grid-videos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.video-card {
    background: #181818;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.video-card img {
    width: 100%;
    display: block;
}

.video-card .titulo {
    display: block;
    padding: 12px;
    font-size: 14px;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.6);
}

.sem-videos {
    color: #aaa;
}
.paginacao {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.paginacao a {
    padding: 10px 16px;
    background: #1f1f1f;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    transition: background .2s ease;
}

.paginacao a:hover {
    background: #ff0057;
}

.paginacao a.ativa {
    background: #ff0057;
    font-weight: bold;
}
.acoes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.stat {
    text-align: center;
    font-size: 18px;
    font-weight: bold;
}

.stat span {
    display: block;
    font-size: 13px;
    font-weight: normal;
    color: #aaa;
    margin-top: 4px;
}
