/* Обнуление отступов и настройка шрифта */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0b3d1e; /* Резервный цвет фона */
    color: #e0e0e0; /* Светлый текст */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    /* Используем изображение как фон */
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    padding: 30px;
    max-width: 600px;
    background: rgba(10, 40, 20, 0.85); /* Полупрозрачный фон для контента */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); /* Лёгкий эффект размытия фона */
    position: relative; /* Для позиционирования переключателя */
}

/* Стили для переключателя языка */
.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}

.lang-btn {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.lang-btn.active {
    background-color: rgba(107, 234, 140, 0.5); /* Изумрудный цвет для активной кнопки */
    color: #e0e0e0;
}

.site-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #6bea8c; /* Светло-зелёный заголовок */
}

.alt-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #5de07e; /* Slightly different shade for variety */
}

.message {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.sub-message {
    font-size: 1.1rem;
    margin: 10px 0;
    line-height: 1.5;
}

.telegram-section {
    margin-top: 30px;
}

.telegram-icon {
    font-size: 4rem; /* Размер иконки */
    color: #0088cc; /* Цвет иконки Telegram */
    transition: transform 0.3s ease, color 0.3s ease;
}

.telegram-icon:hover {
    color: #33b5e5;
    transform: scale(1.1);
}

.telegram-icon i {
    pointer-events: none; /* Иконка не мешает клику */
}