body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0d1117;
    color: white;
    display: flex;
}

.sidebar {
    width: 240px;
    height: 100vh;
    background: #11161d;
    padding: 20px;
    box-sizing: border-box;
    border-right: 1px solid #1f2630;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #65ff8f;
    margin-bottom: 40px;
}

.menu-title {
    font-size: 12px;
    color: #65ff8f;
    margin-bottom: 14px;
    margin-top: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.sidebar a {
    display: block;
    color: #d6d6d6;
    text-decoration: none;
    padding: 12px 14px;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.sidebar a:hover {
    background: rgba(101, 255, 143, 0.08);
    color: #65ff8f;
    padding-left: 20px;
}    

.sidebar a.active {
    background: rgba(101, 255, 143, 0.12);
    color: #65ff8f;
    }
    
    

.sidebar a {
    display: block;
    color: #d6d6d6;
    text-decoration: none;
    padding: 12px 14px;
    margin-bottom: 6px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.sidebar a:hover {
    background: rgba(101, 255, 143, 0.08);
    color: #65ff8f;
    padding-left: 20px;
}

.main-content {
    flex: 1;
}

.topbar {
    height: 70px;
    background: #11161d;
    border-bottom: 1px solid #1f2630;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

.search input {
    background: #1a212b;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    width: 300px;
}

.user-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-box button {
    background: #65ff8f;
    border: none;
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
}

.content {
    padding: 30px;
}

.card {
    background: #161b22;
    border: 1px solid #1f2630;
    border-radius: 18px;
    padding: 25px;
}




/* MAIN PAGE */

.welcome-card {
    background: linear-gradient(145deg, #161b22, #1b212b);
    border: 1px solid #232a34;
    border-radius: 22px;
    padding: 38px;
    margin-bottom: 35px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.20);
    }
    
    .welcome-card h1 {
    font-size: 34px;
    margin: 0 0 10px;
    font-weight: 800;
    }
    
    .welcome-card p {
    color: #9aa4b2;
    font-size: 16px;
    margin: 0;
    }
    
    .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 35px;
    }
    
    .card {
    background: linear-gradient(145deg, #161b22, #1b212b);
    border: 1px solid #232a34;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    transition: all 0.25s ease;
    }
    
    .card:hover {
    transform: translateY(-4px);
    border-color: rgba(101,255,143,0.25);
    }
    
    .card h3 {
    font-size: 15px;
    color: #8f98a3;
    margin-bottom: 14px;
    font-weight: 600;
    }
    
    .card p {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
    }
    
    .changelog-card {
    background: linear-gradient(145deg, #161b22, #1b212b);
    border: 1px solid #232a34;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    }
    
    .changelog-card h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    }
    
    .changelog-card p {
    margin-bottom: 12px;
    color: #d4d8dd;
    }
    

    .welcome-left {
        display: flex;
        align-items: center;
        gap: 22px;
        }
        
        .welcome-left img {
        width: 74px;
        height: 74px;
        border-radius: 14px;
        }






        .icon-box {
            width: 42px;
            height: 42px;
            background: #20252d;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            }
            
            .icon-box i {
            font-size: 18px;
            color: #8f98a3;
            }
            
    
    .status-online {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(101, 255, 143, 0.12);
    color: #65ff8f;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
    0% {
    box-shadow: 0 0 0 0 rgba(101,255,143,0.25);
    }
    70% {
    box-shadow: 0 0 0 10px rgba(101,255,143,0);
    }
    100% {
    box-shadow: 0 0 0 0 rgba(101,255,143,0);
    }
    }
    .changelog-card {
        background: linear-gradient(145deg, #161b22, #1b212b);
        border: 1px solid #232a34;
        border-radius: 24px;
        padding: 34px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.22);
    }
    
    .changelog-card h2 {
        margin: 0 0 28px;
        font-size: 26px;
        font-weight: 800;
        color: white;
    }
    
    .change-item {
        position: relative;
        padding-left: 28px;
        margin-bottom: 24px;
    }
    
    .change-item:last-child {
        margin-bottom: 0;
    }
    
    .change-item::before {
        content: '';
        position: absolute;
        left: 4px;
        top: 6px;
        width: 10px;
        height: 10px;
        background: #65ff8f;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(101,255,143,0.35);
    }
    
    .change-item::after {
        content: '';
        position: absolute;
        left: 8px;
        top: 20px;
        width: 2px;
        height: calc(100% + 10px);
        background: rgba(255,255,255,0.06);
    }
    
    .change-item:last-child::after {
        display: none;
    }
    
    .change-item strong {
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: white;
        margin-bottom: 4px;
    }
    
    .change-item small {
        color: #8f98a3;
        font-size: 13px;
    }



    /* BANLIST  */


    .banlist-card {
        background: linear-gradient(145deg, #161b22, #1b212b);
        border: 1px solid #232a34;
        border-radius: 24px;
        padding: 32px;
        box-shadow: 0 8px 28px rgba(0,0,0,0.2);
    }
    
    .banlist-card h2 {
        margin: 0 0 24px;
        font-size: 24px;
        font-weight: 800;
    }
    
    .ban-row {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    
    .ban-row:last-child {
        border-bottom: none;
    }
    
    .ban-row img {
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }
    
    .ban-info {
        flex: 1;
    }
    
    .ban-info strong {
        display: block;
        font-size: 16px;
    }
    
    .ban-info span {
        font-size: 13px;
        color: #8f98a3;
    }
    
    .ban-time {
        color: #d6d6d6;
        font-weight: 700;
    }
    
    .ban-status {
        padding: 7px 14px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
    }
    
    .ban-status.active {
        background: rgba(255,80,80,0.12);
        color: #ff6b6b;
    }
    
    .ban-status.expired {
        background: rgba(101,255,143,0.12);
        color: #65ff8f;
    } 

    .ban-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }
    
    .ban-header input {
        background: #1a212b;
        border: 1px solid #232a34;
        color: white;
        padding: 10px 14px;
        border-radius: 12px;
        width: 220px;
        outline: none;
    }
    
    .ban-row {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 18px;
        border-radius: 16px;
        transition: 0.25s ease;
    }
    
    .ban-row:hover {
        background: rgba(255,255,255,0.03);
    }

    .punish-type {
        min-width: 70px;
        text-align: center;
        padding: 7px 12px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 800;
    }
    
    .punish-type.ban {
        background: rgba(255,80,80,0.12);
        color: #ff6b6b;
    }
    
    .punish-type.mute {
        background: rgba(255,180,80,0.12);
        color: #ffb347;
    }
    
    .punish-type.kick {
        background: rgba(255,220,100,0.12);
        color: #ffd966;
    }
    
    .punish-type.warn {
        background: rgba(100,180,255,0.12);
        color: #7dc4ff;
    }




    /* */


    .profile-card {
        background: linear-gradient(145deg, #161b22, #1b212b);
        border: 1px solid #232a34;
        border-radius: 24px;
        padding: 34px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 35px;
        box-shadow: 0 10px 35px rgba(0,0,0,0.2);
    }
    
    .profile-left {
        display: flex;
        align-items: center;
        gap: 22px;
    }
    
    .profile-left img {
        width: 92px;
        height: 92px;
        border-radius: 18px;
    }
    
    .profile-left h1 {
        margin: 0;
        font-size: 30px;
        font-weight: 800;
    }
    
    .profile-left p {
        margin-top: 6px;
        color: #8f98a3;
    }
    
    .profile-badge {
        background: rgba(101,255,143,0.12);
        color: #65ff8f;
        padding: 10px 18px;
        border-radius: 14px;
        font-weight: 800;
    }
    .profile-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .profile-grid .card p {
        margin: 10px 0;
        font-size: 15px;
        color: #d6d6d6;
    }    

    .player-rank {
        font-size: 28px;
        font-weight: 800;
        margin-right: 10px;
        vertical-align: middle;
    }
    
    .player-rank.admin {
        color: #e26b6b;
        text-shadow: 0 0 10px rgba(226,107,107,0.18);
    }