/* TsM Member Plugin CSS */

/* Container Styles */
.tsm-member-profile {
    position: relative;
    width: 100%;
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 20px auto;
    background: linear-gradient(0deg, black, transparent);
    overflow: hidden;
    box-shadow: .5rem .5rem 3rem rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
}

/* Profile Picture Styles */
.tsm-member-profile img {
    width: 268px;
    height: 289px;
    border-radius: 5px;
    object-fit: cover;
}

/* Badge Styles for Plattform and Clan-Status */
.tsm-member-profile .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #0073aa;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.tsm-member-profile .badge.platform {
    top: 10px;
    right: 10px;
}

.tsm-member-profile .badge.clan-status {
    top: 40px;
    right: 10px;
}

/* Text Styling */
.tsm-member-profile h2 {
    font-size: 20px;
    margin: 10px 0;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.tsm-member-profile p {
    font-size: 16px;
    margin: 5px 0;
    color: #ddd;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Card Content */
.tsm-member-profile .card-content {
    width: 100%;
    padding: 15px 10px;
    text-align: center;
    background: hsl(180deg 13% 5%);
    box-sizing: border-box;
}

.tsm-member-profile .card-content h3 {
    font-size: 1.3rem;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.tsm-member-profile .card-content p {
    font-size: 1rem;
    margin: 10px 0;
    color: #ccc;
}

/* Social Media Icons */
.tsm-member-profile a i {
    font-size: 20px;
    margin: 0 5px;
    color: #555;
    transition: color 0.3s;
}

.tsm-member-profile a i:hover {
    color: #0073aa;
}

/* Social Media Icons Styling */
.social-icons a i {
    font-size: 20px; /* Adjust icon size */
    color: #B10004; /* Default color */
    margin: 0 10px;
    transition: color 0.3s ease;
}

.platform-icon .fa-desktop {
    font-size: 32px; /* Größe für PC */
}

.platform-icon .fa-playstation {
    font-size: 28px; /* Größe für PlayStation */
}

.platform-icon .fa-xbox {
    font-size: 30px; /* Größe für Xbox */
}