/* PROFILE CARD */
.profile-card {
    max-width: 400px;
    margin: auto;
    padding: 25px;
    border-radius: 20px;

    background: linear-gradient(145deg, #1a1f2e, #0b0f1a);
    border: 1px solid rgba(255, 215, 0, 0.2);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.8),
        0 0 20px rgba(255, 215, 0, 0.15);

    text-align: center;
}

/* HEADER */
.profile-header {
    margin-bottom: 20px;
}

/* AVATAR */
.avatar-wrapper {
    position: relative;
    display: inline-block;
}

.avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #000;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
    font-size: 28px;
}

.avatar-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

/* Upload button */
.upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffd700;
    color: #000;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
}

/* DETAILS */
.profile-details {
    text-align: left;
}

.profile-details .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.profile-details span {
    color: #9ea5b8;
}

.profile-details strong {
    color: #fff;
}
.rating-stars i {
    color: #777; /* grey color */
    font-size: 16px;
    margin-right: 2px;
}

.profile-card.wallet{
    margin-top: 20px;
  transition: 0.3s;
    h2{
        color: #fff;
        margin-bottom: 15px;
    }
}

.profile-card.wallet:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}