/* Подключаем современный шрифт */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

body {
    background: radial-gradient(circle at top center, #1e1e1e 0%, #111 100%);
    color: #eee;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px); /* Эффект матового стекла */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

li {
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 0;
    padding: 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

li:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Стили для статусов */
#server-status {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

#player-count {
    color: #2ecc71;
    font-weight: bold;
}

/* Кнопка */
.btn {
    display: block;
    padding: 18px 20px;
    background: #2ecc71;
    color: #111; /* Темный текст на светлом фоне кнопки выглядит премиальнее */
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn:hover {
    background: #27ae60;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.btn:active {
    transform: translateY(-1px);
}
