/* ===============================
   PROFILE PAGE (FINAL & CLEAN)
=============================== */

.profile-wrapper {
    margin-bottom: 80px;
}

/* ---------- Banner ---------- */
.profile-banner-wrap {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #0b0f14;
}

.profile-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------- Avatar im Banner ---------- */
.profile-banner-avatar {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: #0b0f14;
    padding: 4px;
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(0,0,0,.7);
    z-index: 5;
}

.profile-banner-avatar img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #1f6fff;
}

/* ---------- Profil Card ---------- */
.profile-card {
    margin-top: 60px;
    background: linear-gradient(180deg, #141c26, #0f151d);
    border-radius: 18px;
    padding: 40px 30px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,.6);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- Social Icons ---------- */
.profile-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 16px;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    color: #fff;
    background: #1f2a38;
    transition: transform .2s ease, box-shadow .2s ease;
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.social-icon.steam {
    background: linear-gradient(135deg, #2a475e, #1b2838);
}

.social-icon.twitch {
    background: linear-gradient(135deg, #9146ff, #6441a5);
}

.social-icon.truckersmp {
    background: linear-gradient(135deg, #ff9800, #ff5722);
    font-size: 20px;
}
