
html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    background: #030A16;

}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}
* {
  scroll-behavior: smooth;
}
  
body {
  font-family: "Roboto", sans-serif;
  color: #fff;
  background: #030A16;
}


.no-scroll {
  overflow-y: hidden;
}

  
body.no-scroll {
  overflow-y: hidden;
}
  
a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s linear;
}
  
button {
  cursor: pointer;
  font-family: inherit;
}
  
ul, ol {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul li {
  position: relative;
}
  
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}
  
img {
  display: block;
}

.main {
  max-width: 1600px;
  margin: 0 auto;
  padding:  0px 30px 0 30px;
  display: flex;
  gap: 20px;
  position: relative;
}


.container {
  width: 100%;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
  background: #0F1622;
  border-radius:6px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.image.border {
  border: 2px solid #2A86D8;
}
.image img {  
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.image-box {
  width: 100%;
  height: 100%;
  border-radius:12px;
  overflow: hidden;
}
.image-box.border {
  border: 2px solid #2A86D8;
}
.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-weight: 900;
  font-size: 33px;
  line-height: 150%;
  text-transform: uppercase;
  color: #FFFF5A;
  position: relative;
  margin-bottom: 12px;
}


p {
  font-size: 15px;
  font-weight:300;
  line-height: 150%;
  text-align: left;
  position: relative;
  z-index: 1;
}

p a {
  font-size: 15px;
  font-weight:300;
  line-height: 150%;
  color: #FFF;
  text-decoration: underline;
  transition: all 0.3s linear;
}
p a:hover, td a:hover {
  text-decoration: underline;
}


h2 {
  font-weight: 900;
  font-size: 26px;
  line-height: 150%;
  text-align: left;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  padding: 4px 12px;
  color: #FFF;
  position: relative;
  z-index: 1;
  border-radius: 6px;
  border: 2px solid #0F1650;
}



h3 {
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

h4 {
  font-weight: 900;
  font-size: 20px;
  line-height: 155%;
  position: relative;
  z-index: 1;
}

h5 {
  font-weight: 600;
  font-size: 15px;
  line-height: 165%;
  position: relative;
  z-index: 1;
}

ul {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
ul li {
  font-weight: 600;
  font-size: 15px;
  line-height: 165%;
  position: relative;
  background: transparent;
  border-radius: 0px;
  border: none;
  padding: 0;
  padding-left: 18px;
  
}
ul li::before {
  content: "";
  position: absolute;
  transform: translate(0, 0);
  top: 9px;
  left: 0px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}
ol {
  display: flex;
  gap: 0px;
  flex-direction: column;
  counter-reset: item;
}
ol li {
  padding-left: 20px;
  padding: 8px 0 8px 20px;
  font-size: 16px;
  font-weight:600;
  line-height: 150%;
  position: relative;
  counter-increment: item;
}
ol li::before {
  content: counter(item) ". ";
  position: absolute;
  top: 8px;
  font-size: 16px;
  font-weight:600;
  line-height: 150%;
  left: 0px;
  min-width: 20px;
  color: #fff;
  border-radius: 50%;
}


ul.list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}


ul.list li {
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 15px;
  line-height: 165%;
  position: relative;
  padding: 10px 20px 10px 41px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  overflow: hidden;
}

ul.list li::before {
  content: "";
  position: absolute; 
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 2;
  background: transparent;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
}

ul.list li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  mask-composite: exclude;
  pointer-events: none;
}

ul.list2 {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 660px;
}

ul.list2 li {
  width: max-content;
}
ul.list3 {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
ul.list3 li {
  width: max-content;
}

.list.short {
  max-width: 630px;
}


ol.list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  counter-reset: item;
  position: relative;
  z-index: 1;
}

ol.list li {
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 150%;
  counter-increment: item;
  position: relative;
  padding: 11px 20px 11px 64px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  overflow: hidden;
}

ol.list li::before {
  content: counter(item) "";
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px 0 0 6px;
  font-weight: 400;
  font-size:25px;
  line-height: 120%;
  width: 44px;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
}

ol.list li::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px;
  border-radius: 6px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  mask-composite: exclude;
  pointer-events: none;
}


.button {
  border-radius: 10px;
  background: radial-gradient(76.9% 122.63% at 33.52% -15.63%, #F2F292 0%, #169100 85.15%);
  box-shadow: 0px 2px 4px 0px #149A02;
  font-weight: 500;
  font-size: 17px;
  line-height: 100%;
  color: #fff;
  text-shadow: 0 2px 4px #149a02;
  text-align: center;
  display: inline-block;
  max-width: max-content;
  min-width: 203px;
  position: relative;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.buttons__wrapper {
  padding: 2px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border-radius: 6px;
}

.buttons-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  padding: 10px;
  border-radius: 6px;
}
.banner__logo {
  width: 158px;
  height: auto;
}


.burger-menu {
  display: none;
}

.button.center {
  margin: 0 auto;
}

.button:hover {
  scale: 1.05;
}

.button.register-button {
  font-size: 14px;
  padding:13px;
  box-shadow: none;
  min-width:131px;
  border-radius: 10px;
}

.button.login-button {
  font-size: 14px;
  padding:13px;
  background: radial-gradient(92.56% 151.44% at 33.52% -15.63%, #2575DE 0%, #221BE8 85.15%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  box-shadow: 10px 20px 80px 0px #1E40E94D, -20px -20px 50px 0px #0E0E0F80, -10px -20px 50px 0px #003CFF33, 0px 0px 10px 0px #FFFFFF99 inset;
  min-width:129px;
  border-radius: 10px;
}

.button.login-button:hover {
  scale: 1.05;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #050E22;
  z-index: 103;
}

.header__container {
  max-width: 1600px;
  padding: 0 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  height: 68px;
}

.header__logo {
  width: 178px;
  height: auto;
  margin-right: 51px;
  transition: all 0.3s linear;
}

.header__logo:hover {
  scale: 1.02;
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header-menu__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row;
}
.header-menu__list li {
  background: transparent;
  border-radius: 0px;
  border: none;
  padding: 0;
}
.header-menu__list li::before {
  display: none;
}
.header-menu__list li a {
  font-weight: 800;
  font-size: 16px;
  line-height: 120%;
  opacity: 0.5;
  text-transform: capitalize;
  position: relative;
  color: #fff;
  transition: all 0.3s linear;
}

.header-menu__list a:hover {
  opacity: 1;
}
.header-menu__list a.active {
  opacity: 1;
}

.header__right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-left: auto;
}

.header__buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__lang {
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;

}

.header__lang img {
  width: 24px;
  height: 24px;
}



.hero {
  max-width: 1600px;
  margin: 88px auto 20px;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}

.hero__container {
  position: relative;
  padding: 58px 40px;
  border-radius: 12px;
}


.hero__image img {
  right: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.hero-content__rating {
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  text-transform: uppercase ;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content:flex-start;
  gap: 6px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero-content__rating div {
  opacity: 0.8;
}

.hero-content__text {
  margin-bottom: 24px;
}

.hero-content__wrap {
  max-width:700px;
}
.hero-content__wrap.bonus {
  max-width: 600px;
}
.hero-content__wrap.app {
  max-width: 700px;
}


.features__box {
  overflow: auto;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border: 2px solid #0F1650;
  border-radius: 6px;
}

.features__box::-webkit-scrollbar {
  display: none;
}
.features__list  {
  overflow-x: auto;
  width: 100%;
}
.features__list thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;

}
.features__list tbody {
  border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.features__list thead {
  overflow: hidden;
}
.features__list thead tr th {
  padding: 12px 20px;

}
.features__list tbody tr td {
  padding: 12px 20px;
}

.features__list tr {
  font-size: 15px;
  font-weight: 300;
  line-height: 150%;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  overflow: hidden;
}
.features__list tr td {
  position: relative;
}


.features__list tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF1F;
}

.features__list tr td:nth-child(1), .features__list tr th:nth-child(1) {
  width: 22%;
  flex-shrink: 1;
  min-width: 282px;
}
.features__list tr td:nth-child(2), .features__list tr th:nth-child(2) {
  width: 78%;
  flex-shrink: 1;
}

.features__list tr th {
  font-weight: 900;
  font-size: 20px;
  line-height: 150%;
  text-transform: none;
  color: #FFF;

}
.features__list tr td {
  font-weight: 300;
  font-size: 15px;
  line-height: 150%;

}

.props-cons__box {
  display: flex;
  gap: 20px;
}

.props-cons__item {
  width: calc(50% - 10px);
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border-radius: 6px;
  overflow: hidden;
}
.props-cons__item h3 {
  padding: 20px;
  display: flex;
  gap: 24px;
  font-weight: 600;
  font-size: 20px;
  line-height: 165%;
  text-transform: uppercase;
  color: #FFF;
  align-items: center;
}

.props-cons__item h3 img {
  width: 40px;
  height: 40px;
}
.pros-cons__item-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 84px;
  width: calc(100% - 84px);
  padding-right: 20px;
  padding-bottom: 20px;
}
.pros-cons__item-list div {
  font-weight: 600;
  font-size: 15px;
  line-height: 165%;
  position: relative;
  padding-left: 18px;
}
.pros-cons__item-list div::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0px;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
}


.banner.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 148px 110px;
}
.banner2.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 103px 100px;
}
.banner3.container {
  display: flex;
  position: relative;
  background: transparent;
  border-radius: 6px;
  padding: 113px 40px;
}

.image.opr img {
    object-position: right;
}
.image.opr2 img {
    object-position: 78%;
}
.image.opl img{
  object-position: left;
}
.image.opc img{
  object-position: center;
}
.image.op {
  opacity: 1;
}


.banner__image {
  width: 100%;
  height: 100%;
  right: 0;
  left: auto;
  bottom: 0;
  top: auto;
  position: absolute;

}
.banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  object-position: right;

}
.banner__wrapper {
  position: relative;
  max-width: 673px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.banner__wrapper2 {
  position: relative;
  max-width: 673px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.banner__wrapper3 {
  position: relative;
  max-width: 673px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}


.banner__buttons {
  display: flex;
  gap: 20px;
  margin: 0 auto;
}

.banner__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #FFFC65;
  background: transparent;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}

.banner__text {
  font-weight: 500;
  font-size: 26px;
  line-height: 119%;
  text-align: center;
  margin-bottom: 24px;
}

.banner__text span {
  color: #FFFC65;

}
.banner__buttons2 {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.banner__box {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.banner__wrap {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.banner2__button {
  padding: 12px 21px;
  min-width: 234px;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  display: flex;
  position: relative;
  z-index: 1;
  background: radial-gradient(92.56% 151.44% at 33.52% -15.63%, #2575DE 0%, #221BE8 85.15%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  box-shadow: 0px 0px 10px 0px #FFFFFF99 inset;

}
.banner2__button.second {
  background: radial-gradient(76.9% 122.63% at 33.52% -15.63%, #F2F292 0%, #169100 85.15%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
  box-shadow: 0px 0px 10px 0px #FFFFFF99 inset;
}
.banner2__button div {
  font-weight: 500;
  font-size: 15px;
  line-height: 128%;
  text-align: center;
  text-transform: uppercase;
  min-width: 144px;
  color: #fff;
}
.banner2__button div span {
  display: block;
}
.banner2__image img {
  object-position: left;

}
.banner.banner5 .image img {
  object-position: right;
}

.banner4 .banner__text {
  text-align: center;
}

.button__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #1C222D 0%, #72217F 100%);
  border: 2px solid #72217F;
  position: relative;
  z-index: 1;

}
.button__box img {
  width: 158px;
  height: auto;
}
.button__box .button {
  min-width: 235px;
}


.live__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.live__item {
  width: calc(50% - 10px);
  padding: 2px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border-radius: 6px;
}
.live__box {
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.live__box2 {
  padding: 12px;
}
.live__box h4 {
  font-weight: 600;
  font-size: 25px;
  line-height: 165%;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #FFFFFF99;
  max-width: 435px;
  margin: 0 auto 15px;
  width: 100%;
}
.live__box p {
  max-width: 435px;
  font-weight: 500;
  font-size: 15px;
  line-height: 165%;
  text-align: center;
  opacity: 0.5;
  margin: 0 auto 16px;

}


.box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: 6px;
  position: relative;
}



.games__box {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #3CACFD;
  border-bottom: 1px solid #5F0FFF;
}

.games__box::-webkit-scrollbar {
  display: none;
}

.games__table {
  width: 100%;
  overflow-x: auto;
}

.games__table thead {
  border-radius:  12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFC65;
  background: linear-gradient(0deg, #5F0FFF 15.25%, #3CACFD 100%);
}

.games__table tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.games__table thead {
  overflow: hidden;
}
.games__table thead tr th {
  padding: 13px 20px;
  display: flex;
  align-items: center;
}
.games__table tbody tr td {
  padding: 8px 20px;
}
.games__table tbody tr:nth-child(even) {
  background: #030A1640;
}
.games__table tbody tr:nth-child(odd) {
   background: #4F5EDE4D;
}

.games__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.games__table tr th {
  width: 12.5%;
  min-width: 155px;
  text-align: left;
}

.games__table tr td {
  width: 12.5%;
  min-width: 155px;
}

.games__table tr td {
  position: relative;
}

.games__table tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:#0B295D;
}

.games__table td {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.games__box7 {
  overflow: auto;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border: 2px solid #0F1650;
  border-radius: 6px;
}

.games__box7::-webkit-scrollbar {
  display: none;
}

.games__table7 {
  width: 100%;
  overflow-x: auto;
}

.games__table7 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 13px;
  line-height: 140%;
  text-transform: uppercase;
}

.games__table7 tbody {
   border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
}

.games__table7 thead tr th {
  padding: 12px 20px;
  display: flex;
  align-items: center;

}
.games__table7 tbody tr td {
  padding: 12px 20px;
}

.games__table7 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;

}


.games__table7 tr th {
  width:20%;
  text-align: left;
}

.games__table7 tr td {
  width:20%;
}
.games__table7 tr td {
  position: relative;
}

.games__table7 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:#FFFFFF1F;
}

.games__box4 {
  overflow: auto;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border: 2px solid #0F1650;
  border-radius: 6px;
}

.games__box4::-webkit-scrollbar {
  display: none;
}

.games__table4 {
  width: 100%;
  overflow-x: auto;
}

.games__table4 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 13px;
  line-height: 140%;
  text-transform: uppercase;

}

.games__table4 tbody {
   border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
}


.games__table4 thead tr th {
  padding: 12px 20px;
  display: flex;
  
}
.games__table4 tbody tr td {
  padding: 12px 20px;
}

.games__table4 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;

}
.games__table4 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:#FFFFFF1F;
}

.games__table4 tr th {
  width: 25%;
  text-align: left;
}

.games__table4 tr td {
  width: 25%;
}


.games__table4 tr td {
  position: relative;
}




.games__box5 {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #3CACFD;
  border-bottom: 1px solid #5F0FFF;
}

.games__box5::-webkit-scrollbar {
  display: none;
}

.games__table5 {
  width: 100%;
  overflow-x: auto;
}

.games__table5 thead {
  border-radius:  12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFC65;
  background: linear-gradient(0deg, #5F0FFF 15.25%, #3CACFD 100%);
}

.games__table5 tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.games__table5 thead tr th {
    padding: 13px 20px;
  display: flex;
  align-items: center;

}
.games__table5 tbody tr td {
  padding: 8px 20px;
}
.games__table5 tbody tr:nth-child(even) {
  background: #030A1640;
}
.games__table5 tbody tr:nth-child(odd) {
   background: #4F5EDE4D;
}

.games__table5 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
text-align: left;
}

.games__table5 tr td, .games__table5 tr th {
  width: 25%;
  flex-shrink: 1;
}

.games__table5 tr td {
  position: relative;
}

.games__table5 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:#0B295D;
}



.games__box6 {
  overflow: auto;
  border-radius: 12px;
  border: 1px solid #3CACFD;
  border-bottom: 1px solid #5F0FFF;
}

.games__box6::-webkit-scrollbar {
  display: none;
  
}

.games__table6 {
  width: 100%;
  overflow-x: auto;
}

.games__table6 thead {
  border-radius:  12px 12px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #FFFC65;
  background: linear-gradient(0deg, #5F0FFF 15.25%, #3CACFD 100%);

}

.games__table6 tbody {
  border-radius: 0 0 12px 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}

.games__table6 thead tr th {
  padding: 13px 20px;
    display: flex;
  align-items: center;

}
.games__table6 tbody tr td {
  padding: 8px 20px;
}

.games__table6 tbody tr:nth-child(even) {
  background: #030A1640;
}
.games__table6 tbody tr:nth-child(odd) {
   background: #4F5EDE4D;
}

.games__table6 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;

}

.games__table6 tr td:nth-child(1), .games__table6 tr th:nth-child(1) {
  width: 50%;
}
.games__table6 tr td:nth-child(2), .games__table6 tr th:nth-child(2) {
  width: 50%;
}

.games__table6 tr td {
  position: relative;
}

.games__table6 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background:#0B295D;
}


.games__box2 {
  overflow: auto;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  border: 2px solid #0F1650;
  border-radius: 6px;

}

.games__box2::-webkit-scrollbar {
  display: none;
  
}

.games__table2 {
  width: 100%;
  overflow-x: auto;
}

.games__table2 thead {
  border-radius:  6px 6px 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 13px;
  line-height: 140%;
  text-transform: uppercase;
}

.games__table2 tbody {
   border-radius: 0 0 6px 6px;
  width: 100%;
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
}

.games__table2 thead tr th {
  padding: 12px 20px;
  display: flex;
}
.games__table2 tbody tr td {
  padding: 12px 20px;
}


.games__table2 tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;

}

.games__table2 tr td, .games__table2 tr th {
  width: 33.33%;
}


.games__table2 tr td {
  position: relative;
}

.games__table2 tbody tr::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background:#FFFFFF1F;
}


.reviews__box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
}
.reviews__item {
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  padding: 20px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: calc(50% - 10px);
  position: relative;
  border-right: 2px solid rgba(40, 71, 198, 0.8);
  overflow: hidden;
}
.reviews__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  z-index: 1;
}
.reviews__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  z-index: 1;
}



.reviews-item__name {
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
.reviews-item__stars {
  display: flex;
  gap: 5px;
}
.reviews-item__text {
  color: #FFFFFFB2;
  font-weight: 400;
  font-size: 15px;
  line-height: 135%;
}


.ac {
  width: 100%;
  margin-top: 0;
  border: none;
  position: relative;
  border-radius:6px;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  box-shadow: 0px 4px 4px 0px #00000040;
  border: 2px solid #2C3265;
  overflow: hidden;
}

.ac:not(:last-child) {
  margin-bottom: 20px;
}
.ac-header {
  width: 100%;
}
.ac-header::after, .ac-header::before {
  display: none;
}
.ac .ac-trigger {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  text-align: left;
  text-transform: uppercase;
  color: #fff;
  white-space: normal;
  padding: 23px 70px 23px 20px !important;
}
  
.ac .ac-trigger:focus {
  color: #fff;
}

.ac.is-active > .ac-header {
  color: #fff;
 
}
.ac.is-active > .ac-header .ac-trigger {
  color: #fff;
  border-radius: 6px 6px 0 0;
  border-bottom: 2px solid #FFFFFF1F;
}

.ac .ac-panel {
  padding: 0;
}

.ac .ac-panel .faq__box {
  padding: 16px 20px;
}

.ac .ac-panel p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: left;
  color: #fff;
}
.ac .ac-panel p a {
  color: #fff;
  text-decoration: underline;
}
.ac .ac-panel ul {
  gap: 1px;
}
.ac .ac-panel ul li {
  gap: 1px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  text-align: left;
  color: #fff;
  padding-left: 23px;
}
.ac .ac-panel ul li::before {
  width: 3px;
  height: 3px;
  left: 10px;
}
  

.ac .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width: 20px;
  height: 12px;
  flex-shrink: 0;
  position: absolute;
  display: flex;
  align-items: center;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s linear;
}
.ac.is-active > .ac-header .ac-trigger::after {
  content: url('./img/arrow-up.svg');
  width: 20px;
  height: 12px;
  transform: translateY(-50%) rotate(0deg);
}

.summary__box {
  display: flex;
  gap: 16px;
}
.summary__box img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  flex-shrink: 0;
}
.summary-box__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary-box__author {
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
}
.summary-box__author strong {
  font-weight: 900;
}


.content {
  flex-shrink: 1; 
  width: calc(100% - 260px);
}


.footer {
  padding-top: 10px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1600px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.footer__lang-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}
.footer__lang-list li {
  padding: 0;
}
.footer__lang-list li::before {
  display: none;
}
.footer__lang-list li a {
  background: #111622;
  border-radius: 12px;
  padding: 12px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s linear;
}
.footer__lang-list li a:hover {
  color: #298AF1; 
}

.footer__content {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
  max-width: 1540px;
  gap: 30px;
}


.footer__nav {
  width: 100%;
  padding: 30px;
  background: #111622;
  border-radius: 15px;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: center;

}
.footer-nav__box {
  min-width: 180px;
}

.footer-nav__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  margin-bottom: 30px;
  
}
.footer-nav__list {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.footer-nav__list li {
  padding: 0;
}
.footer-nav__list li::before {
  display: none;
}
.footer-nav__list li a {
  padding-left: 24px;
  position: relative;
  color: #BCBCBC;
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  transition: all 0.3 linear;
}
.footer-nav__list li a::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #BCBCBC;
  position: absolute;
  top: 6px;
  left: 10px;
  transition: all 0.3 linear;
}
.footer-nav__list li a:hover {
  color: #fff;
}
.footer-nav__list li a:hover::before {
  background: #fff;
}


.footer__down {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.footer-down__text {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.footer-down__text p {
  font-weight: 500;
  font-size: 14px;
  line-height: 120%;
  color: #FFFFFF6E;
}
.footer__copy {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #FFFFFF;
  text-align: center;
}



.button-up {
  position: fixed; 
  bottom: 10px;    
  right: 20px;   
  cursor: pointer;
  display: flex;   
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background: transparent;
  display: none;  
  z-index: 102;   
  width: 50px;
  height: 50px;
}

.button-up img {
  width: 50px;
  height: 50px;
}
  

.burger-button {
  display: none;
}




.sidebar {
  position: -webkit-sticky;
  position: sticky;
  top: 88px;
  height: calc(100vh - 88px);
  overflow-y: auto;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 240px;
  -webkit-flex: 0 1 240px;
  flex: 0 1 240px;
  padding-bottom: 20px;
  flex-shrink: 0;
}

.sidebar::-webkit-scrollbar {
  display: none;
  width: 0;
}
  
  
@media screen and (min-width: 1600px) {
  .sidebar {
    left: calc((100% - 1600px) / 2 + 30px);
  }
}
  
  
.aside-left__wrapper {
  position: sticky;
}
.aside-left__wrap {
  overflow-y: auto;
  height: auto;
  padding: 0px;
}
.aside-left-wrap__box {
  background: #0F1622;
  border-radius: 12px;
  padding: 4px 8px;

}
.aside-left__wrap::-webkit-scrollbar {
  width: 0;
}

.aside-left-wrap__box {
  margin-bottom: 20px;
}
.aside-left__nav {
  padding: 0px;
  background: #0F1622;
  border-radius: 12px;
}

  
.main-left-nav__desc {
  border-radius: 12px;
}
.main-left-nav__desc.active {
  border-radius: 12px;
}
   
  
.main-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.main-left-nav__list.visible {
  max-height: 2000px;
  padding-bottom: 8px;
  opacity: 1;
  overflow-y: auto;
}

.aside-left-wrap__list {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0;
  gap: 2px;
}

.aside-left-wrap__list li {
  padding: 0;
}
.aside-left-wrap__list li::before {
  display: none;
}
.aside-left-nav__list li {
  padding: 0;
}
.aside-left-nav__list li::before {
  display: none;
}
.aside-left-wrap__list li a {
  padding: 16px 13px;
  font-size: 17px;
  font-weight: 400;
  line-height: 120%;
  text-align: left;
  position: relative;
  gap: 25px;
  display: flex;
  align-items: center;
  background: transparent;
  border-radius: 15px;
  transition: all 0.3s linear;
  position: relative;
}

.aside-left-wrap__list li a div {
  filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
}




.aside-left-wrap__list li:nth-child(1) a div {
  background: #16A3025E;
}
.aside-left-wrap__list li:nth-child(2) a div {
  background: #0855C95E;
}
.aside-left-wrap__list li:nth-child(3) a div {
  background: #DE941D5E;
}
.aside-left-wrap__list li:nth-child(4) a div {
  background: #FF070B5E;
}
.aside-left-wrap__list li:nth-child(5) a div {
  background: #F2F2925E;
}
.aside-left-wrap__list li:nth-child(6) a div {
  background: #C031CD5E;
}
.aside-left-wrap__list li:nth-child(7) a div {
  background: #22C21A5E;
}

.aside-left-wrap__list li a:hover {
    background: #FFFFFF1A;
    border-radius: 12px;
}


.main-left-nav__desc, .aside-left-nav__desc {
  border-radius: 12px;
}
.main-left-nav__desc.active, .aside-left-nav__desc.active {
  border-radius: 12px 12px 0 0;
}
.aside-left-nav__desc {
  position: relative;
  padding: 12px;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  text-transform: capitalize;
  text-align: left;
  color: #44B52D;
  cursor: pointer;
  transition: all 0.3s linear;
}


.aside-left-nav__desc::after {
  content: url('./img/plus.svg');
  position: absolute;
  top: 13px;
  right: 13px;
  width: 18px;
  height: 18px;
  transform: rotate(180deg);
  transform-origin: center center;
  transition: all 0.3s linear;
}

.aside-left-nav__desc.active::after{
  content: url('./img/plus.svg');
  transform: rotate(0deg);
}

.aside-left-nav__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
  
.aside-left-nav__list.visible {
  max-height: 2000px;
  opacity: 1;
  overflow-y: auto;
  padding-top: 6px;
  padding-bottom: 12px;
}

.aside-left-nav__list.visible::-webkit-scrollbar {
  width: 0;
}

.aside-left-nav__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  gap: 12px;
}

.aside-left-nav__list li a {
  padding: 0px 12px;
  font-weight: 400;
  font-size: 15px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.65);
  text-align: left;
  position: relative;
  display: flex;
  transition: all 0.3s linear; 
}

.aside-left-nav__list li a:hover {
  color: rgba(255, 255, 255, 1);
}


.main-left {
  display: none;
}
  

@media screen and (max-width: 1440px) {
  .hero-content__wrap {
    padding: 20px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.7) 100%);
    position: relative;
  }
}



@media screen and (max-width: 1228px) {
  .footer__menu li{
    flex: 1 0 calc((100% - 2px) / 4);
  }
  .footer-nav__box {
    min-width: auto;
  }
  .footer__nav {
    gap: 50px;
    flex-wrap: wrap;
  }
}
@media screen  and (max-width: 1200px) {
  .aside-left-wrap__list {
    padding: 0;
  }
  .aside-left-wrap__list li:last-child {
    margin-bottom: 10px;
  }
  .aside-left-wrap__list::after {
    display: none;
  }
  .aside-left-wrap__list li a {
    display: block;
  }
  .main-left {
    display: block;
  }
  .main-left.container {
    padding: 0;
  }
  .sidebar {
    display: none;
  }
  .hero__content {
    padding-left: 20px;
  }
  h1 {
    text-align: center;
  }
  .hero-content__wrap {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-content__rating {
    justify-content: center;
  }
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer__content {
    max-width: 100%;
  }
  .footer__nav-list li:not(:last-child)::after {
    display: none;
    }
  .main {
    padding-left: 20px;
  }
  .button-up {
    right: 20px;
  }
  .content, .container {
    width: 100%;
    max-width: 100%;
  }

  .header__container {
    padding-left: 20px;
  }
  .hero__image img {
    right: 0px;
    width: 100%;
  }
  .hero.container {
    width:100%;
    margin-right: 0px;
  }
  .aside-left-nav__desc {
    padding: 12px;
    padding-right: 45px;
  }
  .aside-left-nav__desc::after {
    top: 14px;
  }
  .hero-content__wrap {
    padding: 16px;
    margin: 0 auto;
    align-items: center;
  }
  .hero-content__text {
    text-align: center;
  } 
  .hero-content__subtitle {
    text-align: center;
  }
  .main {
    padding-right: 20px;
  }
  h1 {
    text-align: center;
  }
  .aside-left-nav__list li a {
    font-size: 15px;
  }

}


@media screen and (max-width: 1120px) {
  .header__menu {
    display: none;
  }
  .header__container {
    padding-right: 20px;
    height: 60px;
  }
  .hero.bonus-page {
    margin-top: 80px;

  }
  .header__buttons {
    position: fixed;
    width: 100%;
    padding: 16px;
    background: #101F2EF2;
    bottom: 0;
    left: 0;
    gap: 16px;
    z-index: 103;
    justify-content: center;
    display: none;
  }
  .header__buttons .button.register-button {
    min-width: 163px;
  }
  .header__buttons .button.login-button {
    min-width: 163px;
  }
  .button-up {
    bottom: 10px;
  }


.burger-button {
  display: flex;
  margin-left: auto;
  flex-direction: column;
  justify-content: space-around;
  height: 30px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 2; 
  }
.burger-button span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.burger-button.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-button.open span:nth-child(2) {
  opacity: 0;
}
.burger-button.open span:nth-child(3) {
  transform: translateY(-12px) rotate(-45deg);
}
.burger-menu {
  position: fixed;
  top: 60px;
  right: -100%; 
  width: 100%;
  height: 100%;
  padding: 0 10px;
  background: #050E22;
  padding-bottom: 100px;
  transition: right 0.3s ease; 
  overflow-y: auto;
  display: block;
  z-index: 105;
}
.burger-menu.open {
  right: 0; 
  overflow-y: auto;

}
.burger-menu ul {
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-top: 16px;
  min-width: 300px;
}
.burger-menu ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.burger-menu ul li::before {
  display: none;
}
.burger-menu ul li a {
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  width: 300px;
  height: 46px;
  color: #FFF;
  border: 1px solid #FBBF15;
  border-radius: 8px;
}
.burger-menu__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  min-width: 300px;
  margin-top: 20px;
}
.burger-menu__buttons a {
  width: 300px;
}
.burger-menu .button.login-button {
  width: 300px;
  height: 46px;
  max-width: 100%;
  font-size: 15px;
}
.burger-menu .button.register-button {
  font-size: 15px;
  width: 300px;
  height: 46px;
  max-width: 100%;
}
.aside__right {
  display: none;
}
.main {
  padding-right: 20px;
}
.footer__down {
  padding: 0;
}
.burger-menu__lang {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}
.burger-menu__lang a {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  color:#E3E8EB;
  margin-top: 40px;
  justify-content: center;
  text-transform: uppercase;
}
.burger-menu__lang a img {
  width: 24px;
  height: 24px;
}
.hero {
  margin: 76px auto 20px;
}
.header__right {
  gap: 20px;
}
}


@media screen and (max-width: 1100px) {
  .swiper-slide {
    width: 100% !important; 
    max-width: 100%;

  }
    .revievs-item {
        min-height: 147px;
    }
}
@media screen and (max-width: 1024px) {
  .banner__wrap2 {
    gap: 20px;
    flex-direction: column;
    margin: 0 auto;
    background: #4F5EDE4D;
    border: 2px solid #3CACFD;
    border-bottom: 2px solid #5F0FFF;
    backdrop-filter: blur(13px);
    border-radius: 12px;
    padding: 20px 10px;
    align-items: center;
    justify-content: center;
  }
  .order__box {
    flex-direction: column-reverse;
  }
  .order__left {
    width: 100%;
  }
  .order__right {
    margin: 0 auto;
    width: 100%;
    max-width: 324px;
  }
}

@media screen and (max-width: 950px) {
  .list.duo, .list.trio {
    flex-direction: column;
    gap: 20px;
  }
  .list.duo li, .list.trio li {
    width: 100%;
  }
  .cards {
    flex-direction: column;
  }
  .cards__item {
    width: 100%;
  }
  .cards__item h3 {
    margin-bottom: 16px;
    font-size: 16px;
    padding-bottom: 16px;
  }
  .hero-content__wrap {
    margin: 0 auto;
  }
  .banner__wrapper, .banner__wrapper3, .banner__wrapper2 {
    padding: 20px 10px;
    margin: 0 auto;
        border-radius: 6px;
    background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.7) 100%);
  }
  .banner.container {
    padding: 40px 10px;
  }
  .banner__title {
    font-size: 24px;
  }
  .banner__text {
    font-size: 18px;
  }


  h1 {
    text-align: center;
  }
  .hero-content__subtitle {
    text-align: center;
  }
  .hero.container {
    padding: 40px 10px;

  }
  .rating__item {
    width: calc(50% - 10px);
  }
  .footer__nav {
    padding: 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
  .footer-nav__list li a {
    font-size: 15px;
  }
  .footer-nav__box {
    width: 33%;
    max-width: 170px;
  }
  .props-cons__box {
    flex-direction: column;
  }
  .props-cons__item {
    width: 100%;
  }
  .bonuses__list li {
    width: 100%;
  }
  .bonuses__list li:last-child div {
    flex-direction: column;
  }
  .games__table tr td {
    min-width: 190px;
  }
  .games__table2 tr th:nth-child(1), .games__table2 tr td:nth-child(1) {
    width: 150px;
  }
  .games__table2 tr th:nth-child(2), .games__table2 tr td:nth-child(2) {
    width: 200px;
  }
  .games__table2 tr th:nth-child(3), .games__table2 tr td:nth-child(3) {
   width: 180px;
  }
  .games__table4 tr th:nth-child(1), .games__table4 tr td:nth-child(1) {
    width: 180px;
  }
  .games__table4 tr th:nth-child(2), .games__table4 tr td:nth-child(2) {
    width: 180px;
  }
  .games__table4 tr th:nth-child(3), .games__table4 tr td:nth-child(3) {
    width: 180px;
  }
  .games__table4 tr th:nth-child(4), .games__table4 tr td:nth-child(4) {
    width: 180px;
  }
  .games__table5 tr td:nth-child(1), .games__table5 tr th:nth-child(1) {
    width: auto;
    min-width: 180px;
  }
  .games__table5 tr td:nth-child(2), .games__table5 tr th:nth-child(2) {
    width: auto;
    min-width: 180px;
  }
  .games__table5 tr td:nth-child(3), .games__table5 tr th:nth-child(3) {
    width: auto;
    min-width: 180px;
  }
  .games__table5 tr td:nth-child(4), .games__table5 tr th:nth-child(4) {
    width: auto;
    min-width: 194px;
  }
  .banner.container.opl2 .image img {
    object-position: 22%;
  }

  .button__box {
    flex-direction: column;
  }
  .button__box a:first-child {
    order: 2;
  } 
  .button__box a:last-child {
    order: 3;
  } 
  .button__box img {
    order: 1;
  } 
  .banner__wrap {
    margin: 0 auto;
    padding: 20px 10px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    position: relative;
  }
  .games__table7 tr td, .games__table7 tr th {
    min-width: 200px;
  }
  .grade__item {
    width: calc(50% - 10px);
  }
  .box.after::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    border-radius: 6px;
    z-index: 0;
  }
  .box__buttons {
    flex-direction: row;
    justify-content: space-between;
    max-width: none;
  }
  .box__inner2 {
    flex-direction: column;
  }
  ul.list.small {
    max-width: 100%;
  }
  .reviews__item {
    width: 100%;
    min-height: auto;
  }
  .reviews__item.last {
    min-height: 200px;
  }
  .live__item {
    width: 100%;
  }
}


@media screen and (max-width: 768px) {
  .box__buttons {
    flex-direction: column;

  }
  .hero.container {
    padding: 42px;
  }


  .hero__container {
    padding: 48px 10px;
  }

  .footer {
    padding: 0 20px 60px;
  }

  .banner__wrapper {
    margin: 0 auto;
  }

  .banner {
    padding: 20px 7px;
  }
  .footer__wrapper {
    flex-direction: column;
  }

  .footer__logo-wrap, .footer__menu {
    flex:0;
    margin-bottom: 16px;
  }
  .footer__button {
    margin: 0;
  }

  .footer__wrapp div {
   justify-content: flex-start;
  }
  .footer__btn {
    flex-direction: row;
  }
  .rating-item__stars li img {
    width: 23px;
  }
  .reviews__list li {
      width: 100%;
  }
  .banner__box {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
  .revievs-item {
    min-height: 190px;
  }
  .rating__item {
    width: 100%
  }
  ul.list2 li, ul.list3 li {
    width: 100%;
  }
  .image.op {
    opacity: 0.5;
  }
  .buttons-box {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .banner__logo {
    order: 1;
  }
  .buttons-box a:first-child {
    order: 2;
  }
  .buttons-box a:last-child {
    order: 3;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 230px;
    width: auto;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 300px;
    width: auto;
  }
  .features__list tr th {
    font-size: 18px;
  }
}

@media screen and (max-width: 650px) {
  .banner__buttons {
    flex-direction: column;
  }
  .footer-nav__box {
    width: calc(50% - 5px);
    max-width: none;
  }
  .footer__nav {
    gap: 32px 10px;
  }
  .footer__down {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-down__text {
    width: 100%;
  }
  .summary__box {
    flex-direction: column;
  }
  .features__list tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 230px;
    width: auto;
  }
  .features__list tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 300px;
    width: auto;
  }
  .features__list.features__list2 tr td:nth-child(1),.features__list tr th:nth-child(1) {
    min-width: 180px;
    width: auto;
  }
  .features__list.features__list2 tr td:nth-child(2),.features__list tr th:nth-child(2) {
    min-width: 100px;
    width: auto;
  }
  .features__list tr th {
    font-size: 18px;
  } 


}
@media screen and (max-width: 600px) {
  .box__cards {
      gap: 20px;
  }
  .box-cards__item h4 {
    font-size: 16px;
  }
  .hero-content__wrap {
    padding: 20px 7px;
  }
  .banner__wrapper {
    padding: 20px 10px;
    margin: 0 auto;
  }
  .container.banner {
    padding: 40px 4px;
  }
  .container.hero {
    padding: 40px 10px;
  }
  .main {
    padding: 0px 10px;
  }
  .hero {
    padding: 0;
  }
  .footer {
    padding-right: 10px;
    padding-left: 10px;
  }
 h1 {
    font-size: 24px;
    text-align: center;
  }
  .banner-wrapper__buttons {
    flex-direction: column;
  }
  .banner__wrapper {
    padding: 16px 10px;
  }

  .hero-content__rating {
    justify-content: center;
  }
  .hero-content__subtitle {
    text-align: center;
    font-size: 28px;
    line-height: 24px;
  }
  .hero__button {
    margin: 0 auto;
  }
  h2 {
    font-size: 20px;
    line-height: 24px;
  }


  .header__logo {
    width: 110px;
    height: auto;
    margin-right: 0;
    margin-left: 0;
  }
  .header__logo img {
    width: 100%;
    height: auto;
  }
  h3, .article h3 {
    font-size: 18px;
    line-height: 22px;
  }
  h4, .article h3 {
    font-size: 16px;
    line-height: 22px;
  }
  .header__container {
    padding-right: 10px;
    padding-left: 10px;
  }

  .banner__wrapper {
  align-items: center;
  }
  
  .hero-content__wrap {
    align-items: center;
  }

  .ac .ac-trigger {
    font-size:16px;
    line-height: 24px;
  }
  .bonuses__list li:last-child div a {
    min-width: 100%;
    max-width: none;
  }
  .hero__image img {
    object-position: 89%;
  }
  ol.list li {
    width: 100%;
  }
  .banner__buttons2 {
    flex-direction: column;
    gap: 20px;
  }
  .banner2.container {
      padding: 40px 10px;
  }
  .banner3.container {
      padding: 40px 10px;
  }
  .get-bonus ul li {
    width: 100%;
  }
  .box {
    padding: 20px 10px;
    position: relative;
  }

}



@media screen and (max-width: 582px) {
  .revievs-item {
      min-height: 190px;
  }
  .swiper {
    padding: 0px 42px;
  }
}

@media screen and (max-width: 510px) {
  .revievs-item {
      min-height: 240px;
  }
}
@media screen and (max-width: 480px) {

  .hero-content__rating {
      flex-direction: column;
  }
  .header__buttons a {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .header__buttons .button.register-button {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .header__buttons .button.login-button {
    min-width:calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .footer__menu li {
    flex: 1 0 calc(50% - 8px);
    width: calc(50% - 8px);
  }
  .footer__menu li .footer__info li {
    flex: 1 0 100%;
    width: 100%;
  }
  .pros-cons__item-list {
    margin-left:20px;
    width: calc(100% - 20px);
  }
  .rating__list td:first-child {
    width: 70%;
  }
  .rating__list td:last-child {
    width: 30%;
  }
  .box.flex {
    padding: 30px 10px;
  }
  .reviews__item {
    padding: 20px 10px;
  }
}

@media screen and (max-width: 463px) {
  .revievs-item {
      min-height: 236px;
      padding: 20px 40px;
  }
  .swiper {
    padding: 0px 0px;
  }
  .swiper-button-next, .swiper-button-prev {
    filter: drop-shadow(0 0 10px rgba(173, 216, 230, 0.8));
  }
  .reviews-item__icons {
    gap: 12px;
  }
  .reviews-item__icons img:nth-child(2) {
   width: calc(100% - 36px);
   
  }
}

@media screen and (max-width: 425px) {

  .banner__wrapper {
    width: 100%;
  }
  .container {
    padding: 20px 10px;
  }
  .footer__top {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
  .footer__content {
    gap: 20px;
  }
  .footer__payment {
    padding: 16px 10px;
  }
  .footer__payment ul {
    gap: 20px 10px;
  }
  .footer__payment ul li {
    width: calc(50% - 5px);
    height: auto;
  }
  .footer-nav__box {
    width: 100%;
  }
  .footer__nav {
    gap:50px;
    flex-wrap: wrap;
  }

}





/* BONUS PAGE */


.hero__container.bonus {
  padding: 46px 40px;
}
.hero__container.app {
  padding: 58px 40px;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  flex-direction: row;
  gap: 12px;
}
.breadcrumbs li {
  position: relative;
  padding: 0;
}
.breadcrumbs li::before {
  display: none;
}
.breadcrumbs a {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s linear;
}
.breadcrumbs li:last-child a {
   color: rgba(255, 255, 255, 1);
}

.flex__box {
  display: flex;
  gap: 16px;
  align-items:stretch;
}
.flex__item {
  width: calc(50% - 8px);
  position: relative;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
ul.list.duo {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
ul.list.duo li {
  width: calc(50% - 10px);
}

.box.border {
  border: 2px solid #0F1650;
  border-radius: 6px;
}
h3.box__title {
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  padding: 14px 20px;
  gap: 16px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 20px;
  line-height: 155%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.button__box2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}
.list.short2 {
  max-width: 732px;
}
.banner.border {
  overflow: hidden;
  border-left: 2px solid transparent;
  border-right: 2px solid rgba(40, 71, 198, 0.8);
  position: relative;
}
.banner.border::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  z-index: 1;
}
.banner.border::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #0F1650 0%, rgba(40, 71, 198, 0.8) 100%);
  z-index: 1;
}


@media screen and (max-width: 1200px) {
  .breadcrumbs {
    justify-content: center;
  }
  .hero__container.bonus {
    padding: 46px 10px;
  }
  .hero__container.app {
    padding: 58px 10px;
  }
  
}
@media screen and (max-width: 950px) {
  ul.list.duo li {
    width: 100%;
  }
  .flex__box {
    flex-direction: column;
  }
  .flex__item {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .hero__container.bonus {
    padding: 40px 10px;
  }
  .hero__container.app {
    padding: 40px 10px;
  }
  .button__box2 {
      flex-direction: column-reverse;
      justify-content: center;
  }
  h3.box__title {
    padding: 10px 20px;
    font-size: 16px;
  }
  
}






