body {
    background-color: #ffffff; /* Светлый фон как на MONRO Casino */
    color: #1c1c1c; /* Тёмный текст для контраста */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f5f5f5; /* Светлый фон блока для соответствия MONRO Casino */
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

a {
    color: #274ff0; /* Яркий красный акцент на ссылках */
    text-decoration: none;
}

a:hover {
    color: #4775ff; /* Светлый красный при наведении */
}

h1, h2, h3 {
    color: #2e58e0;
    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.2);
}

.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.8);
}

.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.3); /* Мягкое затемнение для улучшения видимости кнопки */
}

.link-btn {
    background-color: #2661d7;
    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(215, 38, 61, 0.8);
}

.image-overlay-container:hover .link-btn {
    background-color: #323fcf;
    color: #1c1c1c;
    transform: scale(1.2);
}

.logo {
    font-family: 'Arial Black', sans-serif;
    font-weight: 900;
    font-size: 42px;
    color: #575d65;
    text-shadow: 3px 3px 6px #3c65ec;
    text-transform: uppercase;
    letter-spacing: 3px;
}
