* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:root {
  --primary-color: #fdfdfd;
  --secondary-color: #001d12;
  --body-bg: linear-gradient(120deg, #17171a 0%, #212225 100%);
  --header-bg: #1c1b1f;
  --btn-reg: #ffffff;
  --btn-reg-hover: #FBCC29;
  --btn--login: #FBCC29;
  --btn--login-hover: #ffdf2b;
  --active: #FBCC29;
  --link: rgb(255, 255, 255);
  --link-hover: #FBCC29;
  --burger-active: #ffffff;
  --nav-bg: #04001a;
  --nav-top: 60px;
  --logo: 100px;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
  text-align: justify;
}

h1, .title {
  font-size: clamp(20px, 5vw, 34px);
  text-align: center;
  margin: 40px 0;
}

@media (max-width: 550px) {
  h1, .title {
    margin: 20px 0;
  }
}

h2 {
  font-size: clamp(20px, 5vw, 28px);
  margin-bottom: 20px;
}
h3 {
  font-size: clamp(18px, 5vw, 24px);
  margin-bottom: 15px;
}

ul,
ul li {
  list-style: none;
}

li {
  margin-bottom: 10px;
}

ol, ul {
  margin: 10px 0;
}

ol {
  margin-left: 15px;
}

p {
  margin-bottom: 10px;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

/* no-scroll */
.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100vw;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  position: relative;
  flex-grow: 1;
}

footer {
  flex-shrink: 0;
}

body {
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  color: var(--primary-color);
  background: var(--body-bg);
}

.container {
  padding: 0 10px;
  max-width: 1230px;
  margin: 0 auto;
}

.p-80 {
  margin: 40px 0;
}
@media (max-width: 768px) {
  .p-80 {
    margin: 20px 0;
  }
}

.link {
  color: var(--link);
  transition: .3s ease-in-out;
}
@media (min-width: 768px) {
  .link:hover {
    color: var(--link-hover);
  }
}

.link__modile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--btn--login);
  background-color: var(--btn--login);
  font-weight: 600;
  color: var(--secondary-color);
  overflow: hidden;
}
@media (min-width: 768px) {
  .btn:hover {
    border-color: var(--btn--login-hover);
    background-color: var(--btn--login-hover);
  }
}

.btn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fa4923;
  opacity: 0;
  z-index: 1;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}


.btn:after {
  content: "";
  display: block;
  width: 30px;
  height: 300px;
  margin-left: 60px;
  background: #ffffff6c;
  position: absolute;
  left: -40px;
  top: -150px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  -webkit-animation-name: slideme;
  animation-name: slideme;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes slideme {
  0% {
    left: -30px;
    margin-left: 0px;
  }
  30% {
    left: 110%;
    margin-left: 80px;
  }
  100% {
    left: 110%;
    margin-left: 80px;
  }
}

.img__wrapp {
  width: 50%;
  text-align: center;
  @media (max-width: 768px) {
    width: 100%;
  }
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
  }
}

.text__content {
  display: flex;
  flex-direction: column;
  text-align: justify;
  width: 50%;
  @media (max-width: 768px) {
    width: 100%;
  }
}

@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/lato-regular.woff") format("woff"),
    url("fonts/lato-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("fonts/lato-bold.woff") format("woff"),
    url("fonts/lato-bold.woff2") format("woff2");
}
.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  color: #fff;
  background: var(--header-bg);
  z-index: 50;
  padding: 10px 0;
  box-shadow: 0 0 15px #fff;
  font-weight: 600;
}

.logo__link {
  display: flex;
  align-items: center;
}

.logo__wrapp {
  max-width:var(--logo);
  margin-right: 10px;
}

.logo__wrapp img {
  width: 100%;
  height: 100%;
}

.logo {
  margin: 0;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 30px);
}

.header__container {
  display: grid;
  grid-template-areas: "logo btns"
                        "nav nav";
  gap: 10px;
}

.logo__link {
  grid-area: logo;
}

.offer__btns--65713 {
  grid-area: btns;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.offer__btn {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;

  @media (max-width: 550px){
    font-size: 14px;
    padding: 10px;
  }
}

.offer__btn--reg {
  border-color: var(--btn-reg);
  background-color: transparent;
  color: var(--btn-reg);
  transition: 0.3s ease-in-out;
}

@media (hover: hover) {
  .offer__btn--reg:hover {
    border-color: var(--btn-reg-hover);
    background-color: var(--btn-reg-hover);
    color: #000;
  }
}

.offer__btn--download {
  margin-right: auto;
  margin-left: 0;
}

.offer__btn--download img {
  max-width: 20px;
  height: 20px;
}

@media (max-width: 990px){
  .header__container {
    display: flex;
    gap: 0;
  }

  .offer__btns--65713 {
    margin-left: auto;
  }
}

.banner {
  position: relative;
  width: 100%;
  height: 30vh;

  @media (min-width: 820px) {
    height: 80vh;
  }
}

.banner img {
  width: 100%;
  height: 100%;
}

.video__iframe {
	width: 100%;
	height: 100%;
	position: absolute;
}

.video__iframe video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    min-width: 100%;
    min-height: 100%;
}

@media screen and (min-width: 990px){
.burger__btn {
  grid-area: burger;
  display: none;

  }
}

@media screen and (max-width: 990px){
  .burger__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  margin-left: 5px;
  background-color: transparent;
  cursor: pointer;
  }
}

/* burger__btn */
.burger__btn span {
  position: relative;
  background-color: #fff;
  width: 23px;
  height: 2px;
}

.burger__btn span::before {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 2px;
  top: -5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .burger__btn span::before {
    top: -7px;
  }
}
.burger__btn span::after {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 2px;
  bottom: -5px;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 560px) {
  .burger__btn span::after {
    bottom: -7px;
  }
}
.burger__btn-active span::before {
  transform: rotate(45deg);
  top: -1px;
  background-color: var(--burger-active);
}
.burger__btn-active span::after {
  transform: rotate(-45deg);
  bottom: -1px;
  background-color: var(--burger-active);
}

/* span__none-active */
.span__none-active {
  height: 0 !important;
}

.nav {
  grid-area: nav;
  margin-left: auto;
}

.nav ul {
  margin: 0;
  gap: 15px
}
.nav li {
  margin: 0;
}

.nav {
  grid-area: nav;
  margin-left: auto;
}

.nav__mobile {
  display: none;
}

/* @media (max-width: 820px) {
  .nav__mobile {
    display: block;
  }
  .nav__desc {
    display: none;
  }
} */

@media screen and (max-width: 990px) {
  .nav {
  position: absolute;
  background: var(--nav-bg);
  padding: 40px;
  width: 400px;
  right: 0;
  top: var(--nav-top);
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
  transform: translateY(100%);
  z-index: 40;
  transition: all 0.3s ease-in-out;
  }
}


@media (max-width: 560px) {
  .nav {
  width:100%;
  }
}


@media screen and (min-width: 990px) {
  .nav__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    max-width: 750px;
  }
}

.nav__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media screen and (max-width: 990px) {
  .nav__list {
  display: flex;
  justify-content: start;
  flex-wrap: nowrap;
  align-items: start;
  width: 100%;
  gap: 15px;
  margin-bottom: 0;
  flex-direction: column;
  overflow-y: scroll;
  padding-bottom: 50px;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  }
}

.nav__item {
  margin-right: 20px;
}

/* nav__active */
.nav__active {
  display: flex;
  justify-content: center;
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
}

.active {
  position: relative;
  color: var(--active);
}

.active::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -5px;
  background-color: var(--active);
  transition: all 0.3s ease-in-out;
}

.footer {
  margin-top: 50px;
  padding: 30px 0;
  background: var(--header-bg);
}

.footer__wrapp {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;

  @media (max-width: 1100px) {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}

.footer__logo {
  max-width: var(--logo);
}

.footer__title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer__age {
  max-width: 40px;
}

.footer__img {
  width: 150px;
}


.footer__btns--65713 {
  display: flex;
  gap: 10px;
}

.footer li {
  margin-bottom: 0;
}

.icons__wrapp {
  display: flex;
  gap: 10px;
  align-items: center;
}

.icons__wrapp li {
  background: #202020;
  padding: 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}

.icon__social img {
  width: 25px;
  height: 25px;
}

.footer__block {
  flex: 1 0 auto;
  width: 33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;

  @media (max-width: 1100px) {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

.footer__block h3 {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}

.footer__block p {
  margin-bottom: 0;
  @media (max-width: 1100px) {
    text-align: center;
  }
}

.pament__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.pament__icons li {
  background: #202020;
  padding: 5px 10px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.pament__icons img {
  width: 60px;
  height: 40px;
}

@media (hover: hover) {
  .pament__icons li:hover {
    background: #353232;
  }
  .icons__wrapp li:hover {
    background: #353232;
  }
}




.copyright {
  text-align: center;
  margin-top: 10px;
  color: rgb(182, 182, 182);
}

.owerlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.owerlay_active {
  visibility: visible;
  opacity: 1;
}

.li-style li {
  position: relative;
  margin-left: 20px;
}

.li-style li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #B19464;
  border-radius: 20px;
  display: block;
  left: -20px;
  padding-right: 10px;
  margin-right: 15px;
  transform: translateY(5px);
}

.img__left {
  max-width: 50%;
  float: left;
  margin-right: 15px;
  margin-bottom: 15px;

  @media (max-width: 768px) {
    max-width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

.img__right {
  max-width: 50%;
  float: right;
  margin-left: 15px;
  margin-bottom: 15px;

  @media (max-width: 768px) {
    max-width: 100%;
    margin-bottom: 20px;
    margin-left: 0;
  }
}

.content,
.big__content {
  display: flex;

  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}

.content div {
  justify-content: center;
}

.big__content {
  gap: 20px;
}

.content div {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
}
.big__content div {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.big__content div a,
.content div a { 
  height: 100%;
}
.big__content div a img,
.content div a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.link__page {
  color: #9CC135 ;
  transition: all 0.3s ease-in-out;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.link__page:hover {
  color: #cae553;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20  {
  margin-top: 20px;
}

.table-container {
  overflow-x: auto; 
  margin: 20px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: var(--header-bg);
}


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

  th, td {
    padding: 10px;
  }
}

.page__btns--65713 {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;

  @media (max-width: 400px) {
    flex-direction: column;
    padding: 0 10px;
  }
}

.page__btns--65713 .offer__btn{
  margin-left: 0;
  display: block;
  text-align: center;
  align-items: center;
}

.cards__wrapp {
  display: flex;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex-grow: 1;
  flex-basis: auto;
  width: clamp(220px, 25% - 20px, 300px);
  flex-direction: column;
  text-align: center;
  padding: 10px;
  border: 1px solid var(--active);
  background: var(--header-bg);
  border-radius: 5px;
  box-shadow: 3px 2px 4px rgba(177, 168, 130, 0.404);
  overflow: hidden;
  position: relative;
  display: flex;
}

.card h3 {
  margin: 0;
  text-align: center;
}

.card img {
  max-width: 50px;
  margin: 0 auto;
  margin-bottom: 10px;
}


.accordions {
  width: 100%;
}

.accordion {
  width: 100%;
  height: auto;
  margin: 10px 0;
}

.accordion__slot {
  width: 100%;
  display: block;
}

.accordion__button {
  border-radius: 5px;
  color: #ffffff;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  border: 1px solid #3f445a;
  outline: none;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 500ms ease;
  user-select: none;
  background: #2e2f31;
  box-shadow: 3px 3px 5px rgba(117, 109, 109, 0.527);
  position: relative;
  letter-spacing: 1px;
  font-weight: 600;
}
.accordion__button:hover {
  color: #FBCC29;
}
.accordion__button::after {
  transition: transform 500ms;
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%) rotate(0deg);
  top: 50%;
  right: 10px;
  content: "";
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("img/arrow.svg");
}

.accordion__button-active::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.accordion__button-active {
  color: #FBCC29;
}

.accordion__panel {
  overflow: hidden;
  max-height: 0;
  visibility: hidden;
  padding: 0 5px;
  transition: visibility 500ms, max-height 600ms;
  transition-timing-function: cubic-bezier(0.694, 0.0482, 0.335, 1);
}
.accordion__panel-active {
  max-height: var(--height, 0);
  visibility: visible;
}

.accordion-panel__content {
  background: #2e2f31;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  line-height: 1.5;
  margin: 10px 0;
  user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}



/* menu */

.menu__wrapp {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  padding: 0 10px;
  scrollbar-color: #a3a8b1 transparent;
  scrollbar-width: thin;
}

.menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 75px;
  gap: 10px;

}

.menu__item::-webkit-scrollbar {
  width: 5px; 
  color: transparent;
}

.menu__item::-webkit-scrollbar-track {
  margin-top: 10px;
  background: transparent;
}

.menu__item::-webkit-scrollbar-thumb {
  background-color: #050c26; 
  border-radius: 20px;
  border: 3px solid #050c26; 
}

.menu__item p {
  text-align: center;
  color: #fff;  
  margin: 0;
}

.menu__item--img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgb(41, 24, 116);
  border-radius: 10px;
}

.menu__item--img img{
  width: 30px;
}


/* sport card */

.sport__wrapp {
  display: flex;
  align-items: center;
  gap: 10px;
  
  @media (max-width: 768px) {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.sport__wrapp--hiden {
  display: none;
}
.sport__btn--hidden {
  display: none;
}


@media (max-width: 768px) {
  .sport__wrapp--hiden {
    display: flex;
  }
  .sport__btn--hidden {
    display: flex;
  }

  .sport__card--hidden {
    display: none;
  }
}

.sport__card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26)
}

.sport__card img {
  width: 100%;
}

.sport__card p {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(14px, 2vw, 18px);
  z-index: 10;
  margin: 0;
}



/* game line */

.game__line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  @media (max-width: 440px) {
    gap: 15px;
  }
}

.game__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.game__card img {
  border-radius: 10px;
}

@media (min-width: 590px) {
  .game__card {
    display: flex;
    flex-direction: row;
    align-items: center;
  } 
  
  .game__card img {
    width: 50px;
    object-fit: cover;
    border-radius: 10px;
  }
}

.game__card p {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  font-size: 14px;
}


/* menu lines */


.menu__section {
  position: sticky;
  top: var(--menu-top);
  left: 0;
  width: 100%;
  background-color: var(--body-bg);
  z-index: 10;
}

.memu__line {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 10px 5px 10px 0;
  scrollbar-width: none;

  @media (max-width: 1200px) {
    gap: 10px;
  }
}
.memu__line::-webkit-scrollbar { 
  display: none; 
}

.menu__link {
  color: #ffffff;
}

.menu__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: max-content;
  padding: 10px;
  border: 1px solid #a3a8b1;
  border-radius: 7px;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
  min-width: 110px;
  transition: all 0.3s ease-in-out;

  /* @media (max-width: 1200px) {
    flex-direction: row;
  } */
}

@media (hover: hover) {
  .menu__item:hover {
    background-color: #42424256;
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.5);
  }
}

.menu__item p {
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.menu__item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .menu__item img {
    width: 30px;
    height: 30px;
  }
}


/* game block */

.game {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.game__block--text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.game__title {
  display: flex;
  align-items: center;
  margin: 0;
}

.game__title img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.game__items {
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  gap: 10px;
  scrollbar-color: #a3a8b1 transparent;
  scrollbar-width: thin;
}

.game__ietms::-webkit-scrollbar {
  width: 5px; 
  color: transparent;
}

.game__ietms::-webkit-scrollbar-track {
  margin-top: 10px;
  background: transparent;
}

.game__ietms::-webkit-scrollbar-thumb {
  background-color: #050c26; 
  border-radius: 20px;
  border: 3px solid #050c26; 
}

/* при развороте - сетка */
.game__items.expanded {
  display: grid;
  overflow: visible;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 15px;
}

/* адаптив */
@media (max-width: 1030px) {
  .game__items.expanded {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 720px) {
  .game__items.expanded {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 370px) {
  .game__items.expanded {
    grid-template-columns: repeat(2, 1fr);
  }
}

.game__item {
  width: 112px;

  @media (max-width: 1030px) { 
  width: 120px;
  }
}

.game__item img {
  width: 100%;
  object-fit: cover;
}

.game__button {
  display: none;
  background: transparent;

  @media (max-width: 1030px) {
    display: block;
    color: #fff;
  }
}

.game__items.expanded .game__item {
  width: 100%;
  height: 100%;
}

.game__items.expanded .game__item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* заполняет всю ячейку, не теряя пропорции */
  display: block;
}


/* slider */
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px; /* можно регулировать */
  margin: 0 auto;
  border-radius: 10px;
}

.slider__track {
  display: flex;
  transition: transform 0.4s ease;
}

.slide {
  position: relative;
  flex: 0 0 100%; /* каждый слайд занимает 100% ширины контейнера */
}

.slide:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.slide__btn {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 30px;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  z-index: 2;
}

.slider__btn.prev { left: 10px; }
.slider__btn.next { right: 10px; }


.slide__one {
  position: relative;
}

.slide__content {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

.slider__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}
.slider__dot.active__dot {
  background: #333;
}

/* На мобильных скрываем кнопки, оставляем булеты */
@media (max-width: 768px) {
  .slider__btn { display: none; }
  .slider__dots { display: flex; }
}



/* app */

.app {
  padding: 10px;
  border: 1px solid var(--active);
  border-radius: 10px;

  @media (max-width: 1200px) {
    margin: 0 10px;
  }
}

.app__wrpp {
  display: flex;
  align-items: center;


  @media (max-width: 690px) {
    flex-direction: column;
  }
}

.app__btn {
  @media (max-width: 690px) {
    width: 100%;
  }
}

.app__desc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
}

.app__img {
  max-width: 100px;
}

.app__content span {
  color: var(--link-hover)
}

.app__content p {
  text-align: center;
  font-size: 18px;
  font-weight: 600px;
  margin: 0;
}

.app__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.app__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.app__info img {
  max-width: 20px;
  margin-bottom: 10px;
}

.app__info p {
  margin: 0;
  text-align: center;
  font-size: 14px;
}
.app__info h3 {
  margin: 0;
  text-align: center;
  font-size: 18px;
  color: var(--link-hover)
}


.payment__wrapp {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;

  @media (max-width: 690px) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-auto-rows: 1fr;
    align-items: stretch;
  }
  @media (max-width: 350px) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    align-items: stretch;
  }
}

.payment__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-transform: uppercase;
  box-sizing: border-box;
  width: 120px;

  @media (max-width: 690px){
    width: 100%;
  }
}


.payment__item img {
  width: 50px;
  height: 50px;
}
.payment__item p {
  text-align: center;
  margin: 0;
}


.slots__game {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;

  @media (max-width: 690px) {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

.payment__item {
  width: 120px;

  @media (max-width: 690px){
    width: 100%;
  }
}

.slots__btn {
  width: 200px;
  margin: 20px auto;
  display: block;
}


/* bonus */


.bonus__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 10px;

  @media (max-width: 1150px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media (max-width: 740px) {
    grid-template-columns: repeat(1, 1fr);
  }
}

.bonus__item {
  position: relative;
  height: 300px;
  overflow: hidden;

  @media (max-width: 740px) {
    height: 350px;
  }
  @media (max-width: 470px) {
    height: 270px;
  }
}

.bonus__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bonus__text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background-color: #00000059;
  animation: pulsar 2s infinite;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.07);
  }
  100% {
    transform: scale(1);
  }
}

.bonus__text h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.bonus__text p {
  color: goldenrod;
  font-weight: 600;
}