/* ----- RP'S PROFILES ----- */
.profile-card {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background: linear-gradient(145deg, #8b0000 0%, #2c2c2c 100%);
    color: #fff;
}

.profile-card .card-header {
    position: relative;
    padding: 0;
    background: transparent;
}

.profile-card .background-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    filter: brightness(70%);
}

.profile-card .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid #fff;
}

.profile-card .card-title {
    margin-top: 60px;
    font-size: 1.5rem;
    font-weight: bold;
}

.profile-card .card-text {
    margin-top: 10px;
}

.profile-card .btn-primary {
    background-color: #ff5c5c;
    border: none;
    transition: background-color 0.3s ease;
}

.profile-card .btn-primary:hover {
    background-color: #e84c4c;
}

.show-info p {
    margin: 5px 0;
}
/* ----- RP'S PROFILES ----- */
