:root {
    --color: #168ef0;
    --blue: #58a6ff;
    --white: #fff;
    --gray: #ccc;
    --hovergray: #aaa;
    --bg-dark: #0d1117;
    --bg-darker: #090c10;
    --bg-light: #161b22;
    --border: #30363d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #0a0a0a;
    color: #fff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

h1 {
    color: #7289da;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(114, 137, 218, 0.5);
}

.counter {
    background: #7289da;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.count {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    color: white;
}

.label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.member-card {
    background: #18191c;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #7289da;
    margin-bottom: 1rem;
    object-fit: cover;
}

.avatar.special-role {
    border: 3px solid #fb87ff !important; 
    box-shadow: 0 0 10px rgba(241, 133, 255, 0.7);
}

.username {
    display: block;
    color: #fff;
    font-weight: bold;
    font-size: 1.1rem;
    word-break: break-word;
}

.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--color));
    width: 0%;
    transition: width 0.3s ease;
}