@import url(https://fonts.googleapis.com/css?family=Open+Sans:regular,500,600,700,800&display=swap);
*,
*::before,
*::after {
    font-family: "Times New Roman", Times, Arial, serif sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    color: #ffffff;
}

body {
    width: 100%;
    background-color: #000000;
    background-repeat: no-repeat repeat-y;
    background-position: center;
    background-size: cover;
    text-rendering: optimizeSpeed;
    min-height: 100vh;
    scroll-behavior: smooth;
}
body.lock {
    overflow-y: hidden;
}
body,
html {
    padding: 0;
    height: 100%;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}
header {
    background-color: #000000;
    display: flex;
    margin: 0 auto;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    padding: 5px 0;
}
header a {
    text-decoration: none;
    font-size: 18px;
}
header img {
    border: none;
}
header .container {
    max-width: 85vw;
    padding: 0 16px;
    margin: 0 auto;
    height: 100%;
}
header .logo {
    flex: 0 0 100px;
}
header .container .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .flex .item,
.btns {
    display: flex;
    align-items: center;
}
header .flex .item .list ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 10;
}
header .flex .item .list ul li {
    font-weight: 600;
    font-size: 20px;
    position: relative;
}
header .flex .item .list ul li a:hover {
    color: #a0a0a0;
}
header .flex .item .list ul li::after {
    content: "";
    position: absolute;
    top: 100%;
    left: calc(50% - 53px);
    width: 106px;
    height: 2px;
    background: #a0a0a0;
    transform: scaleX(0);
}
header .flex .item .list ul li:hover::after {
    transform: scaleX(1);
    transition-duration: 0.2s;
}
header .flex .item:nth-child(2) {
    gap: 50px;
}
header .flex .item,
.btns {
    gap: 20px;
}
header .burger {
    display: none;
}
header .dropdown {
    position: relative;
    cursor: pointer;
}
header .dropdown span::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}
header .flex .item .list .dropdown-menu {
    position: absolute;
    top: 2px;
    left: 0;
    width: 200px;
    padding: 20px;
    background-color: #000000;
}
header .flex .item .list .dropdown ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}
header .flex .item .list .dropdown ul li a {
    font-size: 14px;
}
header .flex .item .list .dropdown li::after {
    width: auto;
}
.banner-container {
    position: relative;
    width: 100%; /* Контейнер занимает всю ширину */
    max-width: 2612px;
    margin: 0 auto; /* Центрируем баннер */
    overflow: hidden;
}

.banner-container img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto; /* Центрируем изображение */
    transition: transform 0.3s ease-in-out;
}

.banner-container:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 5%; /* Текст остаётся слева */
    transform: translateY(-50%);
    text-align: left;
    color: white;
    max-width: 40%;
}

.banner-text {
    font-size: 32px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.banner-button {
    background-color: #56ba13;
    color: #ffffff;
    padding: 10px 50px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-button:hover {
    background-color: #57b11bb5;
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) {
    .banner-content {
        max-width: 70%;
        left: 10%;
    }

    .banner-text {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .banner-button {
        padding: 8px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .banner-content {
        max-width: 80%;
        left: 5%;
    }

    .banner-text {
        font-size: 18px;
    }

    .banner-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

table.one-bet-table {
    width: 80%;
    margin: 50px auto;
    border-collapse: collapse;
    background-color: #333; /* Темный фон для таблицы */
  }
  
  table.one-bet-table th, table.one-bet-table td {
    padding: 12px;
    text-align: center;
    border: 1px solid #444; /* Легкий серый цвет для границ */
  }
  
  table.one-bet-table th {
    background-color: #000; /* Черный фон для заголовков */
    color: #fff; /* Белый текст в заголовках */
    font-weight: bold;
  }
  
  table.one-bet-table tr:nth-child(even) {
    background-color: #444; /* Более светлый фон для четных строк */
  }
  
  table.one-bet-table tr:hover {
    background-color: #555; /* Подсветка строки при наведении */
  }

.one-bet-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; } .one-bet-table-scroll table { width: 100%; border-collapse: collapse; }
footer {
    background-color: #0e0f19;
    min-height: 70px;
    text-align: center;
    font-size: 4rem;
    font-weight: bold;
    vertical-align: middle;
    padding-top: 20px;
    display: flex;
    height: auto;
}
/* Стили для футера */
.footer {
    background-color: #13181c; /* Изменен цвет фона на светлый серый */
    color: #366c98;
    padding: 20px 0;
    text-align: center;
}

/* Контейнер футера */
.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Увеличен промежуток между элементами */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Блоки с ссылками (Контакты, О нас и т.д.) */
.footer-links {
    display: flex;
    flex-direction: column; /* Ссылки идут в столбик */
    align-items: center;
    gap: 15px;
}

.footer-links a {
    color: #B0B0B0; /* Цвет ссылок изменен на серый */
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #366c98; /* Цвет при наведении */
}

/* Социальные сети */
.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Информационный блок */
.footer-warning {
    font-size: 14px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #005076;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


img {
    border-style: none;
    max-width: 100%;
    -ms-interpolation-mode: bicubic;
    display: flex;
    position: relative;
    border: #000000 0px solid;
    margin: 0 auto;
    border-radius: 20px;
}

h1 {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 40px;
    color: #009ecafa;
}
h2 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
}
h3,
h4,
h5,
h6 {
    font-weight: bold;
    margin: 0;
    padding: 0;
}
p {
    text-align: justify;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

a {
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}
.middle-text {
    text-align: center;
}
ul,
ol,
li {
    text-align: left;
}

ul[class],
ol[class] {
    padding: 0;
    list-style: none;
}
.one-bet-body {
    max-width: 1200px;
    padding-top: 5px;
    background-color: #000000;
    display: block;
    align-content: center;
    margin: 0 auto;
    text-align: center;
    margin-top: 0px;
}
table.one-bet-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    background-color: #0a1a33; /* тёмно-синий фон */
    color: #ffffff; /* белый текст */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  table.one-bet-table thead {
    background-color: #003366; /* насыщенный синий */
    color: #ffffff;
    text-align: left;
  }
  
  table.one-bet-table th,
  table.one-bet-table td {
    padding: 12px 16px;
    border: 1px solid #336699; /* светлая граница */
  }
  
  table.one-bet-table tbody tr:nth-child(even) {
    background-color: #1a2b4d; /* немного светлее фон */
  }
  
  table.one-bet-table tbody tr:hover {
    background-color: #264d73; /* подсветка при наведении */
  }
    
.one-bet-btn1 {
    border: 0px;
    border-radius: 40px;
    height: 35px;
    min-width: 70px;
    width: auto;
    background: linear-gradient(135deg, #41aaff, #0080e2);
    color: #ffffff;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0 0 10px #7ad0fe, 0 0 20px #25b1fc;
    animation: blink 1.5s infinite;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

@keyframes blink {
  0%, 100% {
    box-shadow: 0 0 10px #7ad0fe, 0 0 20px #25b1fc;
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 20px #7ad0fe, 0 0 30px #25b1fc;
    opacity: 0.8;
  }
}

.one-bet-btn1:hover {
    transform: scale(1.05);
    animation: none;
    background: linear-gradient(135deg, #376c97, #4d8ab9);
    box-shadow: 0 0 15px #7ad0fe, 0 0 25px #25b1fc;
}
.one-bet-btn2 {
    border: 0px;
    border-radius: 40px;
    height: 35px;
    min-width: 70px;
    width: auto;
    background-color: #376c97;
    text-align: center;
    float: right;
    cursor: pointer;
    touch-action: manipulation;
    padding-left: 5px;
    padding-right: 5px;
}
.btn1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 100%;
    font-size: medium;
    color: #ffffff;
    font-weight: bold;
}
.btn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    height: 100%;
    font-size: medium;
    color: #ffffff;
    font-weight: bold;
}
.btn3 {
    display: block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #4d8ab9; /* фиолетовый */
    border: none; /* без рамки */
    border-radius: 50px; /* овальная форма */
    cursor: pointer;
    text-align: center;
    margin: 15px auto;
    max-width: 500px;
    animation: cyber-pulse 2s infinite ease-in-out; /* более плавное мигание */
    box-shadow: 0 0 20px #6cbfff, 0 0 30px #1399ff;
    transition: background-color 0.3s, color 0.3s;
}

.btn3:hover {
    background-color: #4d8ab9;
    color: #000;
}

@keyframes cyber-pulse {
    0% {
        box-shadow: 0 0 10px #6cbfff, 0 0 20px #1399ff;
    }
    50% {
        box-shadow: 0 0 30px #6cbfff, 0 0 50px #1399ff;
    }
    100% {
        box-shadow: 0 0 10px #6cbfff, 0 0 20px #1399ff;
    }
}

  
  
.link {
    text-decoration: none;
}

.flag {
    display: block;
    max-width: 40px;
    float: right;
    margin-right: 10px;
    margin-top: 20px;
}
.flag img {
    border-radius: 5px;
    border: #000000 solid 5px;
}
.one-bet-developers img {
    border-radius: 15px;
    width: 100%;
    border: none;
}
.one-bet-partners img {
    border-radius: 15px;
    width: 100%;
    border: none;
}
.one-bet-navigation {
    margin-left: 30px;
}
.one-bet-content {
    margin: 0 30px 0 30px;
    word-wrap: break-word;
}

.one-bet-bunner {
    margin: 0 auto;
}
.one-bet-bunner img {
    border-radius: 15px;
}
.kopy {
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .header .burger {
        display: block;
        position: relative;
        width: 30px;
        height: 20px;
        z-index: 3;
    }
    .header .burger::after,
    .header .burger::before {
        content: "";
    }
    .header .burger::after,
    .header .burger::before,
    .header .burger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #15b7c9;
        border-radius: 10px;
        transition: all 0.3s ease 0s;
    }
    .header .burger::before {
        top: 0;
    }
    .header .burger::after {
        bottom: 0;
    }
    .header .burger span {
        top: 9px;
    }
    .header .burger.active::before {
        transform: rotate(45deg);
        top: 9px;
    }
    .header .burger.active::after {
        transform: rotate(-45deg);
        bottom: 9px;
    }
    .header .burger.active span {
        transform: scale(0);
    }
    .header .list {
        display: none;
    }
    .header .btns {
        gap: 10px;
        position: relative;
        z-index: 3;
        flex-direction: column;
    }
    header .flex .item .list .dropdown span {
        font-size: 24px;
    }
    header .flex .item .list .dropdown ul li a {
        font-size: 16px;
    }
    header .flex .item,
    .btns {
        justify-content: center;
    }
    .btn1,
    .btn2 {
        font-size: 16px;
    }
    .header .list.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        background-color: #000000;

        ul {
            flex-direction: column;
        }
    }
    .header .logo {
        position: relative;
        z-index: 3;
    }
    header .flex .item .list ul li a {
        font-size: 24px;
    }
    header .container {
        max-width: 100%;
    }
}
