/* Team Hierarchy - Stammbaum Layout */

/* Update Timer - EINE ZEILE */
.team-update-timer {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #333;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    height: 42px;
}

.team-update-timer i {
    color: #ff54a4;
    font-size: 14px;
    margin-right: 6px;
}

.update-time {
    font-weight: 600;
    color: #2d2d2d;
}

/* Mobile: Kleinere Schrift */
@media (max-width: 768px) {
    .team-update-timer {
        font-size: 11px;
        padding: 8px 15px;
        height: 38px;
        max-width: 95%;
    }
    
    .team-update-timer i {
        font-size: 12px;
        margin-right: 4px;
    }
}

/* Stammbaum Container */
.team-hierarchy {
    position: relative;
    padding: 40px 0;
}

/* Team Level */
.team-level {
    margin-bottom: 60px;
    position: relative;
}

.team-level-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.team-level-title h3 {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
    transition: all 0.3s ease;
    position: relative;
}

/* Dynamischer Hintergrund basierend auf Rolle */
.team-level[data-role="Owner"] .team-level-title h3 {
    background: linear-gradient(90deg, #00e3ff, #ff4b90);
}

.team-level[data-role="Manager"] .team-level-title h3 {
    background: linear-gradient(90deg, #4cadd0, #5c40ff);
}

.team-level[data-role="Admin"] .team-level-title h3 {
    background: linear-gradient(90deg, #ff1d21, #ab35ff);
}

.team-level[data-role="Developer"] .team-level-title h3 {
    background: linear-gradient(90deg, #4800ff, #5d75fd);
}

.team-level[data-role="Moderator"] .team-level-title h3 {
    background: linear-gradient(90deg, #ff864e, #ff3fa2);
}

.team-level[data-role="Supporter"] .team-level-title h3 {
    background: linear-gradient(90deg, #65e8ff, #f662fc);
}

.team-level[data-role="Designer"] .team-level-title h3 {
    background: linear-gradient(90deg, #ff6100, #fff030);
}

.team-level-title h3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Vertikale Linie vom Titel zu den Cards */
.team-level-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 84, 164, 0.8), rgba(255, 84, 164, 0.4));
    border-radius: 2px;
    z-index: 1;
}

/* Rollenspezifische Titel-Linien */
.team-level[data-role="Owner"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(0, 227, 255, 0.8), rgba(255, 75, 144, 0.4));
}

.team-level[data-role="Manager"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(76, 173, 208, 0.8), rgba(92, 64, 255, 0.4));
}

.team-level[data-role="Admin"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(255, 29, 33, 0.8), rgba(171, 53, 255, 0.4));
}

.team-level[data-role="Developer"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(72, 0, 255, 0.8), rgba(93, 117, 253, 0.4));
}

.team-level[data-role="Moderator"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(255, 134, 78, 0.8), rgba(255, 63, 162, 0.4));
}

.team-level[data-role="Supporter"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(101, 232, 255, 0.8), rgba(246, 98, 252, 0.4));
}

.team-level[data-role="Designer"] .team-level-title::after {
    background: linear-gradient(180deg, rgba(255, 97, 0, 0.8), rgba(255, 240, 48, 0.4));
}

/* Verbindungslinien zwischen Levels */
.team-level::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 84, 164, 0.6), rgba(255, 84, 164, 0.2));
    border-radius: 2px;
    z-index: 0;
}

.team-level:last-child::after {
    display: none;
}

/* Rollenspezifische Linienfarben */
.team-level[data-role="Owner"]::after {
    background: linear-gradient(180deg, rgba(0, 227, 255, 0.6), rgba(255, 75, 144, 0.2));
}

.team-level[data-role="Manager"]::after {
    background: linear-gradient(180deg, rgba(76, 173, 208, 0.6), rgba(92, 64, 255, 0.2));
}

.team-level[data-role="Admin"]::after {
    background: linear-gradient(180deg, rgba(255, 29, 33, 0.6), rgba(171, 53, 255, 0.2));
}

.team-level[data-role="Developer"]::after {
    background: linear-gradient(180deg, rgba(72, 0, 255, 0.6), rgba(93, 117, 253, 0.2));
}

.team-level[data-role="Moderator"]::after {
    background: linear-gradient(180deg, rgba(255, 134, 78, 0.6), rgba(255, 63, 162, 0.2));
}

.team-level[data-role="Supporter"]::after {
    background: linear-gradient(180deg, rgba(101, 232, 255, 0.6), rgba(246, 98, 252, 0.2));
}

.team-level[data-role="Designer"]::after {
    background: linear-gradient(180deg, rgba(255, 97, 0, 0.6), rgba(255, 240, 48, 0.2));
}

/* Horizontale Verbindungslinie über allen Cards eines Levels */
.team-cards::before {
    content: '';
    position: absolute;
    top: 0;
    left: 140px;
    right: 140px;
    height: 3px;
    background: rgba(255, 84, 164, 0.4);
    border-radius: 2px;
    z-index: -1;
}

/* Rollenspezifische horizontale Linien */
.team-level[data-role="Owner"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(0, 227, 255, 0.5), rgba(255, 75, 144, 0.5), transparent);
    box-shadow: 0 0 10px rgba(0, 227, 255, 0.3);
}

.team-level[data-role="Manager"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(76, 173, 208, 0.5), rgba(92, 64, 255, 0.5), transparent);
    box-shadow: 0 0 10px rgba(76, 173, 208, 0.3);
}

.team-level[data-role="Admin"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(255, 29, 33, 0.5), rgba(171, 53, 255, 0.5), transparent);
    box-shadow: 0 0 10px rgba(255, 29, 33, 0.3);
}

.team-level[data-role="Developer"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(72, 0, 255, 0.5), rgba(93, 117, 253, 0.5), transparent);
    box-shadow: 0 0 10px rgba(72, 0, 255, 0.3);
}

.team-level[data-role="Moderator"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(255, 134, 78, 0.5), rgba(255, 63, 162, 0.5), transparent);
    box-shadow: 0 0 10px rgba(255, 134, 78, 0.3);
}

.team-level[data-role="Supporter"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(101, 232, 255, 0.5), rgba(246, 98, 252, 0.5), transparent);
    box-shadow: 0 0 10px rgba(101, 232, 255, 0.3);
}

.team-level[data-role="Designer"] .team-cards::before {
    background: linear-gradient(90deg, transparent, rgba(255, 97, 0, 0.5), rgba(255, 240, 48, 0.5), transparent);
    box-shadow: 0 0 10px rgba(255, 97, 0, 0.3);
}

/* Verstecke horizontale Linie wenn nur 1 Card */
.team-cards:has(.team-card:only-child)::before {
    display: none;
}

/* Pfeile in Rollenfarbe */
.team-level[data-role="Owner"] .team-card-avatar::after {
    color: #00e3ff;
    text-shadow: 0 0 10px rgba(0, 227, 255, 0.5);
}

.team-level[data-role="Manager"] .team-card-avatar::after {
    color: #4cadd0;
    text-shadow: 0 0 10px rgba(76, 173, 208, 0.5);
}

.team-level[data-role="Admin"] .team-card-avatar::after {
    color: #ff1d21;
    text-shadow: 0 0 10px rgba(255, 29, 33, 0.5);
}

.team-level[data-role="Developer"] .team-card-avatar::after {
    color: #4800ff;
    text-shadow: 0 0 10px rgba(72, 0, 255, 0.5);
}

.team-level[data-role="Moderator"] .team-card-avatar::after {
    color: #ff864e;
    text-shadow: 0 0 10px rgba(255, 134, 78, 0.5);
}

.team-level[data-role="Supporter"] .team-card-avatar::after {
    color: #65e8ff;
    text-shadow: 0 0 10px rgba(101, 232, 255, 0.5);
}

.team-level[data-role="Designer"] .team-card-avatar::after {
    color: #ff6100;
    text-shadow: 0 0 10px rgba(255, 97, 0, 0.5);
}

/* Team Cards Container */
.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, 280px);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-content: center;
    padding-top: 40px;
}

/* Stammbaum-Linien zwischen Cards */
.team-card {
    position: relative;
}

/* Vertikale Linie von oben zur Card */
.team-card::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 84, 164, 0.6), rgba(255, 84, 164, 0.3));
    border-radius: 2px;
    z-index: -1;
}

/* Rollenspezifische Card-Linien mit Glow-Effekt */
.team-level[data-role="Owner"] .team-card::before {
    background: linear-gradient(180deg, rgba(0, 227, 255, 0.7), rgba(255, 75, 144, 0.4));
    box-shadow: 0 0 8px rgba(0, 227, 255, 0.4);
}

.team-level[data-role="Manager"] .team-card::before {
    background: linear-gradient(180deg, rgba(76, 173, 208, 0.7), rgba(92, 64, 255, 0.4));
    box-shadow: 0 0 8px rgba(76, 173, 208, 0.4);
}

.team-level[data-role="Admin"] .team-card::before {
    background: linear-gradient(180deg, rgba(255, 29, 33, 0.7), rgba(171, 53, 255, 0.4));
    box-shadow: 0 0 8px rgba(255, 29, 33, 0.4);
}

.team-level[data-role="Developer"] .team-card::before {
    background: linear-gradient(180deg, rgba(72, 0, 255, 0.7), rgba(93, 117, 253, 0.4));
    box-shadow: 0 0 8px rgba(72, 0, 255, 0.4);
}

.team-level[data-role="Moderator"] .team-card::before {
    background: linear-gradient(180deg, rgba(255, 134, 78, 0.7), rgba(255, 63, 162, 0.4));
    box-shadow: 0 0 8px rgba(255, 134, 78, 0.4);
}

.team-level[data-role="Supporter"] .team-card::before {
    background: linear-gradient(180deg, rgba(101, 232, 255, 0.7), rgba(246, 98, 252, 0.4));
    box-shadow: 0 0 8px rgba(101, 232, 255, 0.4);
}

.team-level[data-role="Designer"] .team-card::before {
    background: linear-gradient(180deg, rgba(255, 97, 0, 0.7), rgba(255, 240, 48, 0.4));
    box-shadow: 0 0 8px rgba(255, 97, 0, 0.4);
}

/* Pfeile zwischen Avatar und Name */
.team-card-avatar::after {
    content: '↕';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: #ff54a4;
    font-size: 18px;
    font-weight: bold;
    z-index: 3;
    text-shadow: 0 0 10px rgba(255, 84, 164, 0.5);
}

@media (max-width: 768px) {
    .team-cards {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 40px;
    }
    
    .team-card::before {
        display: none;
    }
}

/* Team Card */
.team-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    width: 280px;
    height: 240px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Discord Banner */
.team-card-banner {
    width: 100%;
    height: 100px;
    background: linear-gradient(135deg, #ff54a4, #ff8e1d);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Avatar */
.team-card-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 6px solid rgba(30, 30, 30, 0.9);
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    background: #1e1e1e;
    z-index: 2;
}

.team-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Info */
.team-card-info {
    padding: 60px 20px 20px 20px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.team-card-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 3px 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.team-card-info .team-role {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-top: 0;
    line-height: 1.4;
    max-width: 100%;
    word-wrap: break-word;
    padding: 0;
    border: none;
    color: #555;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

/* Verhindere Scroll wenn Popup offen */
body.popup-open {
    position: fixed !important;
    width: 100% !important;
    overflow: hidden !important;
}

/* Discord Profile Popup */
.discord-profile-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    will-change: transform, opacity;
}

.discord-profile-popup.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.discord-profile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    will-change: opacity;
}

.discord-profile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Profile Banner */
.profile-banner {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ff54a4, #ff8e1d);
    position: relative;
    overflow: hidden;
}

.profile-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-banner.color-banner {
    background: var(--banner-color);
}

/* Profile Content */
.profile-content {
    padding: 80px 20px 20px 20px;
    position: relative;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 8px solid #ffffff;
    position: absolute;
    top: -60px;
    left: 20px;
    overflow: hidden;
    background: #ffffff;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info */
.profile-info {
    margin-bottom: 20px;
}

.profile-username {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0 0 5px 0;
}

.profile-discriminator {
    font-size: 18px;
    color: #666;
    margin: 0;
}

/* Profile Badges */
.profile-badges {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.profile-badge,
.discord-badge {
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    cursor: help;
}

.profile-badge:hover,
.discord-badge:hover {
    background: rgba(255, 84, 164, 0.3);
    transform: scale(1.1);
}

/* Custom Tooltip - Nach unten */
.profile-badge::after,
.discord-badge::after {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10001;
    margin-top: 5px;
}

/* Tooltip am linken Rand */
.profile-badge:first-child::after,
.discord-badge:first-child::after {
    left: 0;
    transform: translateX(0) translateY(8px);
}

.profile-badge:first-child:hover::after,
.discord-badge:first-child:hover::after {
    transform: translateX(0) translateY(12px);
}

/* Tooltip am rechten Rand */
.profile-badge:last-child::after,
.discord-badge:last-child::after {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(8px);
}

.profile-badge:last-child:hover::after,
.discord-badge:last-child:hover::after {
    transform: translateX(0) translateY(12px);
}

.profile-badge::before,
.discord-badge::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

/* Pfeil am linken Rand */
.profile-badge:first-child::before,
.discord-badge:first-child::before {
    left: 16px;
    transform: translateX(0);
}

/* Pfeil am rechten Rand */
.profile-badge:last-child::before,
.discord-badge:last-child::before {
    left: auto;
    right: 16px;
    transform: translateX(0);
}

.profile-badge:hover::after,
.discord-badge:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(12px);
}

.profile-badge:hover::before,
.discord-badge:hover::before {
    opacity: 1;
}

/* Icon Farben */
.profile-badge i,
.discord-badge i {
    color: #555;
}

.profile-badge:hover i {
    color: #ff54a4;
}

/* Profile Bio */
.profile-bio {
    margin: 20px 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.profile-bio h4 {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.profile-bio p {
    font-size: 14px;
    color: #333;
    margin: 0;
    line-height: 1.6;
}

/* Profile Roles */
.profile-roles {
    margin-top: 20px;
}

.profile-roles h4 {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.profile-role-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.profile-role-tag {
    background: rgba(255, 84, 164, 0.2);
    color: #ff54a4;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 84, 164, 0.3);
}

/* Close Button */
.profile-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-close:hover {
    background: rgba(255, 84, 164, 0.5);
    transform: rotate(90deg);
}

/* Dark Mode */
body.dark-mode .team-update-info {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(30, 30, 30, 0.9));
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .team-card {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(30, 30, 30, 0.9));
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .team-card:hover {
    border-color: #ff54a4;
}

body.dark-mode .team-card-avatar {
    border-color: #1e1e1e;
}

/* Responsive */
@media (max-width: 768px) {
    .team-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .team-update-info {
        flex-direction: column;
        text-align: center;
    }
    
    .discord-profile-popup {
        width: 95%;
        max-width: none;
    }
    
    .profile-banner {
        height: 150px;
    }
    
    .profile-avatar {
        width: 100px;
        height: 100px;
        top: -50px;
    }
    
    .profile-content {
        padding: 60px 15px 15px 15px;
    }
}

/* Animation */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-card {
    animation: slideInUp 0.6s ease forwards;
}

.team-card:nth-child(1) { animation-delay: 0.1s; }
.team-card:nth-child(2) { animation-delay: 0.2s; }
.team-card:nth-child(3) { animation-delay: 0.3s; }
.team-card:nth-child(4) { animation-delay: 0.4s; }
.team-card:nth-child(5) { animation-delay: 0.5s; }
.team-card:nth-child(6) { animation-delay: 0.6s; }


/* Dark Mode Overrides für Team Cards */
[data-theme="dark"] .team-card-info h4 {
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
}

[data-theme="dark"] .team-card-info .team-role {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Dark Mode Overrides für Popup */
[data-theme="dark"] .discord-profile-popup {
    background: #18191c !important;
}

[data-theme="dark"] .profile-username {
    color: #fff !important;
}

[data-theme="dark"] .profile-discriminator {
    color: #b9bbbe !important;
}

[data-theme="dark"] .profile-badge,
[data-theme="dark"] .discord-badge {
    background: rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .profile-badge i,
[data-theme="dark"] .discord-badge i {
    color: #fff !important;
}

[data-theme="dark"] .profile-bio {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[data-theme="dark"] .profile-bio h4 {
    color: #b9bbbe !important;
}

[data-theme="dark"] .profile-bio p {
    color: #dcddde !important;
}

[data-theme="dark"] .profile-roles h4 {
    color: #b9bbbe !important;
}

[data-theme="dark"] .profile-close {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

[data-theme="dark"] .profile-avatar {
    border-color: #18191c !important;
    background: #18191c !important;
}
