﻿.profile-section {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #050505;
    padding: 80px 20px;
}

.profile-card {
    width: 700px;
    background: #111;
    border-radius: 30px;
    padding: 60px;
    border: 1px solid rgba(177,18,38,.2);
    text-align: center;
    box-shadow: 0 0 60px rgba(177,18,38,.15);
}

.profile-avatar {
    font-size: 110px;
    color: #b11226;
}

.profile-card h2 {
    color: white;
    margin-top: 15px;
    font-weight: 700;
}

.profile-card p {
    color: #bdbdbd;
    margin-bottom: 50px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.profile-box {
    background: #181818;
    border-radius: 20px;
    padding: 35px;
    color: white;
    text-decoration: none;
    transition: .35s;
    border: 1px solid transparent;
}

    .profile-box:hover {
        transform: translateY(-8px);
        border-color: #b11226;
        box-shadow: 0 0 25px rgba(177,18,38,.35);
        color: white;
    }

    .profile-box i {
        font-size: 34px;
        color: #b11226;
        display: block;
        margin-bottom: 15px;
    }

.logout i {
    color: #ff4444;
}
.profile-avatar {
    position: relative;
}

    .profile-avatar::after {
        content: "";
        position: absolute;
        inset: -20px;
        border-radius: 50%;
        background: #b11226;
        filter: blur(40px);
        opacity: .18;
        z-index: -1;
    }

/* ===========================
   PROFILE RESPONSIVE
=========================== */

@media (max-width:992px) {

    .profile-card {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width:768px) {

    .profile-section {
        padding: 40px 15px;
    }

    .profile-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .profile-avatar {
        font-size: 80px;
    }

    .profile-card h2 {
        font-size: 28px;
    }

    .profile-card p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .profile-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .profile-box {
        padding: 22px;
    }

        .profile-box i {
            font-size: 28px;
            margin-bottom: 10px;
        }
}