/* Основные стили */
body {
    background-color: #1a1a2e; /* Темный фон как раньше */
    color: #ffffff; /* Белый текст */
    font-family: 'Arial', sans-serif; /* Стандартный шрифт */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #21213b; /* Возвращение цвета блока как раньше */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

/* Стили для ссылок */
a {
    color: #e63946; /* Красный цвет ссылок */
    text-decoration: none; /* Убираем подчеркивание */
}

a:hover {
    color: #f1faee; /* Светлый цвет при наведении */
}

/* Стили для заголовков */
h1, h2, h3 {
    color: #e63946; /* Красный цвет заголовков */
    text-align: center; /* Центрирование заголовков */
}

/* Кнопка на изображении */
.image-overlay-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto;
    max-width: 700px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.image-overlay-container img {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.image-overlay-container:hover img {
    transform: scale(1.05);
    filter: brightness(0.4);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6); /* Добавление затемнения */
}

.link-btn {
    background-color: #e63946;
    color: #ffffff;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(230, 57, 70, 0.8);
}

.image-overlay-container:hover .link-btn {
    background-color: #f1faee;
    color: #e63946;
    transform: scale(1.2);
}

/* Лого Lex Casino */
.logo {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: #e63946;
    text-shadow: 3px 3px 6px #f1faee;
    text-transform: uppercase;
    letter-spacing: 3px;
}