/* profilo.css */
.profile-container {
    padding: 40px 5%;
}

.profile-header {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    background: #e67e22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    flex-shrink: 0;
    overflow: hidden;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stats-box {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.stat-item {
    font-size: 0.9rem;
}

.stat-item strong {
    color: #fff;
    font-size: 1.1rem;
}

/* RESPONSIVE PROFILO */
@media (max-width: 600px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .stats-box {
        justify-content: center;
    }
}