/* --- ESTRUTURA GERAL DO PERFIL --- */
.profile-container {
    max-width: 800px;
    margin: 0 auto;
    background: #121212;
    color: #fff;
    min-height: 100vh;
    padding-bottom: 50px;
    position: relative;
	box-shadow: 0px 18px 20px #fff;
}

/* --- CAPA E AVATAR --- */
.profile-header {
    position: relative;
    height: 300px; /* Altura ideal para destacar a McLaren */
    background-color: #222;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
}

/* Gradiente para suavizar a transição da foto para o conteúdo preto */
.profile-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #121212, transparent);
    z-index: 1;
}

.avatar-container {
    position: absolute;
    bottom: -50px; /* Metade para fora da capa */
    left: 20px;
    z-index: 10; /* Garante que fique acima de tudo */
    display: flex;
    align-items: flex-end;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #121212; /* Borda da cor do fundo para dar profundidade */
    object-fit: cover;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* --- INFORMAÇÕES DO PERFIL --- */
.profile-info {
    padding: 60px 20px 20px; /* Padding superior maior por causa do avatar que sobe */
    position: relative;
    z-index: 5;
}

.profile-name {
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.psn-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(46, 220, 128, 0.1);
    color: #2e93dc;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid rgba(46, 220, 128, 0.3);
    margin-top: 10px;
    font-weight: 600;
}

.psn-badge i {
    margin-right: 8px;
}

.profile-bio {
    margin-top: 20px;
    color: #bbb;
    line-height: 1.6;
    font-size: 1rem;
    max-width: 90%;
}

/* --- REDES SOCIAIS --- */
.profile-social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-btn:hover { 
    transform: translateY(-3px);
    filter: brightness(1.2);
}

.social-btn.insta { background: #E1306C; color: #fff; }
.social-btn.yt { background: #FF0000; color: #fff; }

/* --- ESTATÍSTICAS --- */
.profile-stats {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.stat-item { text-align: center; }
.stat-value { 
    display: block; 
    font-size: 1.4rem; 
    font-weight: 800; 
    color: #fff; /* Cor da sua marca */
}
.stat-label { 
    font-size: 0.75rem; 
    color: #fff; 
    text-transform: uppercase; 
    letter-spacing: 1px;
}

/* --- FEED DE EVENTOS DA LIGA --- */
.perfil-feed-title {
    padding: 0 20px;
    margin-bottom: 25px;
    font-size: 1.3rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.perfil-feed-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: #843ea4;
    border-radius: 2px;
}

.feed-perfil {
    padding: 0 15px;
}

/* Ajuste nos cards dentro do perfil */
.feed-perfil .card {
   border-left: 4px solid #6e6af8 !important;
  background: #fff !important;
  margin-bottom: 20px !important;
  transition: transform 0.2s;
	color: black;
}


.feed-perfil .card:hover {
    transform: scale(1.01);
}



.cardperfil {
	background-color: #FFf;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
    border-left-width: 1px;
    border-left-style: solid;
	border-left-color: rgba(0, 0, 0, 0.05);
	  cursor: pointer;
color:black;
	
	box-shadow: 5px 5px 20px #11b5fc;
	
}






	
	
