table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
    background-color: #1c1f2a; /* Тёмный фон таблицы */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px 15px;
    color: #ffffff; /* Белый текст */
}

th {
    background-color: #2e3b55; /* Тёмно-синий для заголовков */
    font-weight: bold;
}

tr:nth-child(even) {
    background-color: #252c3c; /* Чередующиеся строки */
}

tr:hover {
    background-color: #364263; /* Цвет при наведении */
    transition: background-color 0.3s ease;
}

@media screen and (max-width: 768px) {
    table {
        font-size: 14px;
    }

    th, td {
        padding: 10px;
    }
}



.header {
    background: #06112e!important;
}


@media (min-width:1100px) {
body::after {
    content: "УЧАСТИЕ В АЗАРТНЫХ ИГРАХ МОЖЕТ ВЫЗВАТЬ ИГРОВУЮ ЗАВИСИМОСТЬ. СОБЛЮДАЙТЕ ПРАВИЛА (ПРИНЦИПЫ) ОТВЕТСТВЕННОЙ ИГРЫ.";
    text-align: center;
    display: block;
    color: rgb(0, 0, 0);
    font-size: 1rem;
    position: fixed;
    width: 100%;
    left: 0px;
    top: 0px;
    z-index: 1000;
    line-height: 1.1;
    background: rgb(240, 240, 240);
    padding: 4px 0px;
}

header.header {
    margin-top: 25px !important;
}
}


.language-footer {
    display: flex;
    flex-direction: column;
    margin-left: 120px;
}

.footer-lang-title {
    font-size: 16px;
    color: var(--title-color, #A29EB6);
    margin-bottom: 16px;
}

.footer-lang-switcher {
    display: flex;
    gap: 10px;
}

.footer-lang-btn {
    font-size: 14px;
    padding: 5px 10px;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.3s ease-in-out;
    background: var(--login-btn, #1D213C);
}

.footer-lang-btn.active {
    background: var(--registr-btn, #2AB765);
    font-weight: 600;
}

@media only screen and (min-width: 1025px) {
    .footer-lang-btn:hover:not(.active) {
        background: var(--login-btn, #2a2f56);
        opacity: 0.9;
    }
}

@media only screen and (max-width: 767px) {
    .language-footer {
        margin: 36px 0 0;
        margin-left: 0;
    }
}