* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    
    /* Настройка фона */
    background: url('minecraft_bg.jpg') no-repeat center center fixed;
    background-size: cover;
}

.container {
    text-align: center;
    max-width: 900px;
    width: 100%;
    padding: 40px;
    background-color: rgba(35, 50, 134, 0.288); /* Немного прозрачная белая подложка */
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: rgb(255, 255, 255);
    font-size: 36px;
    margin-bottom: 20px;
}

h2 {
    color: rgb(255, 255, 255);
    margin-bottom: 1px;
}

p {
    color: #777;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Отступ между иконкой и текстом */
    padding: 15px 30px;
    background-color: #273e67;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.download-btn span.btn-text {
    display: block; /* Чтобы каждый кусок текста занимал отдельную строку */
}

.download-btn small {
    font-size: 0.75rem; /* Мелкий шрифт */
    color: #fff; /* Белый цвет */
    display: block; /* Каждое слово на отдельной строке */
}

.download-btn:hover {
    background-color: #273e67;
    transform: scale(1.05);
}

.download-btn i {
    margin-right: 10px;
    vertical-align: middle;
}

.download-btn i.fa-cloud-download {
    font-size: 24px;
}

.server-status {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
}
        
.player-count {
    font-size: 18px;
}
        
.version-info {
    font-size: 16px;
}

/* Цветовая подсветка */
.player-count-highlight {
    color: #ff7f00; /* оранжевый цвет */
    font-weight: bold; /* жирность шрифта */
}