:root {
  --content-width: 1170px;
  --container-offset: 15px;
  --container-width: calc(var(--content-width) + (var(--container-offset) * 2));
}

.custom-checkbox__field:checked+.custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus+.custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled+.custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSansRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Open Sans";
  src: url("../fonts/../fonts/OpenSansBold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.page {
  height: 100%;
  font-family: var(--font-family, sans-serif);
  -webkit-text-size-adjust: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-size: 16px;
  color: #fff;
  background-color: #090F1D;
}

img {
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

.site-container {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
  /* stylelint-disable-line declaration-no-important */
}

.btn-reset {
  border: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}

.list-reset {
  list-style: none;
  margin: 0;
  padding: 0;
}

.input-reset {
  appearance: none;
  border: none;
  border-radius: 0;
  background-color: #fff;
}

.input-reset::-webkit-search-decoration,
.input-reset::-webkit-search-cancel-button,
.input-reset::-webkit-search-results-button,
.input-reset::-webkit-search-results-decoration {
  display: none;
}

.visually-hidden {
  position: absolute;
  overflow: hidden;
  margin: -1px;
  border: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
}

.container {
  margin: 0 auto;
  padding: 0 var(--container-offset);
  max-width: var(--container-width);
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.centered {
  text-align: center;
}

.dis-scroll {
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  overscroll-behavior: none;
}

.page--ios .dis-scroll {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #090F1D;
}

.header__container {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  border-bottom: 1px solid #fff;
}

.header__logo {
  width: 100px;
}

.header__button {
  background-color: #21455D;
  color: #00CAFF;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 3px;
}

.header__button:hover {
  color: #fff;
}

.header__btn:hover {
  background-color: #214F5D;
}

.content__container {
  background-color: #141B2E;
  padding: 75px 15px;
}

.nav__list {
  display: flex;
  justify-content: space-between;
}

.nav__link:hover {
  background-color: #11344F;
}

.nav__link {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
}

.nav__svg {
  width: 20px;
  color: #93C2EA;
}

.content h1 {
  color: #0095FF;
  font-size: 30px;
  margin-bottom: 35px;
}

.content h2 {
  color: #0095FF;
  font-size: 25px;
  margin-bottom: 25px;
}

.content h3 {
  color: #0095FF;
  font-size: 20px;
  margin-bottom: 15px;
}

.content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.content a {
  color: white;
  text-decoration: underline;

}

.content img {
  display: block;
  margin: 25px auto;
}

.content ul,
.content ol {
  margin: 25px 0;
  padding-left: 35px;
  font-size: 18px;
}

.content h4 {
  margin-bottom: 7px;
}

.content li:not(:last-child) {
  margin-bottom: 10px;
}

.content ul li strong {
  color: #0095FF;
}

.table-wrapper,
.table-wrap {
  width: 100%;
  margin: 25px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-wrapper table,
.table-wrap table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  margin: 0;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 25px 0;
}

table tr td {
  border: 2px solid #0095FF;
  padding: 10px;
}

@media (max-width: 750px) {
  .table-wrapper,
  .table-wrap {
    margin: 20px -15px;
    padding: 0 15px;
  }
  
  .table-wrapper table,
  .table-wrap table {
    min-width: 500px;
  }
}

.footer {
  padding: 20px 0 80px 0;
}


.footer__logo {
  margin-bottom: 10px;
  display: block;
}

.footer__copyright {
  padding-top: 10px;
  border-top: 1px solid #3A3F4A;
}

/* Footer Licenses */
.footer-licenses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(58, 63, 74, 0.5);
}

.footer-licenses__item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-licenses__item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-licenses__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-licenses__img {
  display: block;
  height: auto;
  width: auto;
  max-width: 100%;
}

@media (max-width: 750px) {
  .footer-licenses {
    gap: 15px;
    padding: 15px 0;
  }
  
  .footer-licenses__img {
    max-width: 80px;
    height: auto;
  }
}

/* Footer Badges */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px 0;
  margin: 20px 0;
  border-top: 1px solid rgba(58, 63, 74, 0.5);
}

.footer-badges__sports {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.footer-badges__payments {
  border-top: 1px solid rgba(58, 63, 74, 0.5);
  padding-top: 20px;
  margin-top: 20px;
  background-color: rgba(30, 42, 71, 0.3);
  border-radius: 8px;
  padding: 20px 15px;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-badge-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-badge-item img {
  height: 25px;
  width: auto;
  display: block;
}

.footer-badge-icon {
  height: 25px;
  width: auto;
  max-width: 100px;
  display: block;
  fill: #fff;
}

@media (max-width: 750px) {
  .footer-badges {
    gap: 10px;
    padding: 15px 0;
  }
  
  .footer-badges__payments {
    padding: 15px 10px;
  }
  
  .footer-badge-item img,
  .footer-badge-icon {
    height: 20px;
  }
  
  .footer-badge-icon {
    max-width: 80px;
  }
}

.burger {
  --burger-width: 35px;
  --burger-height: 25px;
  --burger-line-height: 3px;

  position: relative;
  border: none;
  padding: 0;
  width: var(--burger-width);
  height: var(--burger-height);
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  z-index: 100;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger::before {
  top: 0;
}

.burger::after {
  top: calc(100% - var(--burger-line-height));
}

.burger__line {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: var(--burger-line-height);
  background-color: currentColor;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out;
}

.burger--active::before {
  top: 50%;
  transform: rotate(45deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active::after {
  top: 50%;
  transform: rotate(-45deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

.burger--active .burger__line {
  transform: scale(0);
  transition: transform 0.3s ease-in-out;
}

.header__top {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: space-between;
}

.content a {
  color: #73b2de;
  text-decoration: none;
}

.header__button {
  font-size: 17px;
}

.nav__item_juegos {
  position: relative;
  cursor: pointer;
}

.links {
  position: absolute;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: #36487B;
  padding: 10px;
  border-radius: 3px;
  width: max-content;
  display: none;
}

.nav__item_juegos:hover>.links {
  display: flex;
}

.sub-links {
  color: #fff;
  font-size: 17px;
}

.sub-links:hover {
  color: #2F5DE6;
}

.header__btns {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media (max-width:1050px) {
  .header__nav {
    display: none;
  }

  .burger {
    display: block;
  }

  .header__nav--active {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    padding: 90px 30px 30px 30px;
    background-color: #090F1D;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
  }

  .nav__list {
    flex-direction: column;
    gap: 15px;
  }

  .header__top {
    width: calc(50% + 23px);
  }

  .links {
    position: relative;
    left: 50%;
    top: 10px;
    transform: translate(-50%, -10px);
    background: none;
  }

  .sub-links {
    font-size: 18px;
  }
}

@media (max-width:570px) {
  .header__container {
    display: flex;
    flex-direction: column;
    gap: 6px;
    height: 115px;
  }

  .header__top {
    width: 100%;
  }

  .burger {
    order: 2;
  }

  .content__container {
    padding: 140px 15px 30px 15px;
  }

  .header__nav--active {
    left: initial;
    right: 0;
  }

  .header__btns {
    width: 100%;
    justify-content: center;
  }

  .header__button {
    width: 100%;
    text-align: center;
  }
}

.button--pulse {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero__right {
  position: relative;
  margin: 20px auto;
}

.hero__right img {
  margin: 0;
  width: 100%;
  height: auto;
}

.button--pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: #1aaa5a;
  border-radius: 3px;
}

.button--pulse:hover {
  background: #019e47
}

.button--pulse span {
  display: block;
  transition: all .3s ease-in-out;
  animation: pulseButton 1.5s infinite ease-in-out;
  font-size: 25px;
  line-height: 22px;
  font-weight: 600;
  text-align: center;
  padding-right: 45px;
  padding-left: 25px;
  position: relative;
  width: fit-content;
  color: #fff;
}

.button--pulse span::after {
  content: "";
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScyMycgaGVpZ2h0PScyMycgZmlsbD0nbm9uZSc+PHBhdGggZmlsbD0nI0YwRjBGMCcgZD0nTTEzLjU1OSAxNy40MTF2LTkuMkg5LjQ0MnY5LjJjMCAuMjE1LjA3Ni4zNzYuMjMuNDgzLjE1My4xMDcuMzUyLjE2OS41OTguMTg0aDIuNDZjLjI0NiAwIC40NDUtLjA2MS41OTgtLjE4NGEuNTg5LjU4OSAwIDAgMCAuMjMtLjQ4M1pNNy42OTQgNi41NzhIMTAuMmwtMS42MS0yLjA3YTEuMTE1IDEuMTE1IDAgMCAwLS44NzMtLjM5MWMtLjM1MyAwLS42NTIuMTE1LS44OTcuMzQ1LS4yNDYuMjMtLjM2LjUyMS0uMzQ1Ljg3NC4wMTUuMzUzLjEzLjY0NC4zNDUuODc0LjIxNC4yMy41MDYuMzUzLjg3NC4zNjhabTguODMyLTEuMjQyYzAtLjMzNy0uMTE2LS42MjktLjM0Ni0uODc0LS4yMy0uMjQ1LS41MjUtLjM2NC0uODg1LS4zNTYtLjM2LjAwNy0uNjU1LjE0MS0uODg2LjQwMmwtMS41ODcgMi4wN2gyLjQ4NWMuMzM3IDAgLjYyOC0uMTIzLjg3My0uMzY4LjI0Ni0uMjQ1LjM2LS41MzcuMzQ2LS44NzRabTQuODMgMy4yODl2NC4xMTdjMCAuMTA3LS4wMzkuMi0uMTE2LjI3NmEuNDA0LjQwNCAwIDAgMS0uMjk4LjExNWgtMS4yMnY1LjM1OWMwIC4zMzctLjEyMi42MjEtLjM2Ny44NTEtLjI0Ni4yMy0uNTM3LjM1My0uODc1LjM2OEg0LjUyYy0uMzM4IDAtLjYzLS4xMjMtLjg3NC0uMzY4YTEuMTY4IDEuMTY4IDAgMCAxLS4zNjgtLjg1MXYtNS4zNTloLTEuMjJhLjQwNC40MDQgMCAwIDEtLjI5OC0uMTE1LjM3Ny4zNzcgMCAwIDEtLjExNS0uMjc2VjguNjI1YzAtLjEyMy4wMzgtLjIyMi4xMTUtLjI5OWEuNDA0LjQwNCAwIDAgMSAuMjk5LS4xMTVoNS42MzVhMi44MDMgMi44MDMgMCAwIDEtMi4wMjQtLjgyOGMtLjU2OC0uNTUyLS44NTEtMS4yMzQtLjg1MS0yLjA0NyAwLS44MTMuMjgzLTEuNDg3Ljg1LTIuMDI0YTMuMDI3IDMuMDI3IDAgMCAxIDIuMDI1LS44NTFjLjkyIDAgMS42NC4zMyAyLjE2Mi45ODlsMS42NTUgMi4xMTYgMS42MzQtMi4xMTZjLjUyLS42NiAxLjI0Mi0uOTg5IDIuMTYyLS45ODkuNzk3IDAgMS40NzIuMjg0IDIuMDI0Ljg1MXMuODM1IDEuMjQyLjg1IDIuMDI0Yy4wMTYuNzgyLS4yNjggMS40NjQtLjg1IDIuMDQ3LS41ODMuNTgzLTEuMjU4Ljg1OS0yLjAyNC44MjhoNS42MzVjLjEyMiAwIC4yMjIuMDM4LjI5OS4xMTVhLjQwNC40MDQgMCAwIDEgLjExNC4yOTlaJy8+PC9zdmc+);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%)
}

@media (max-width:600px) {
  .button--pulse span {
    font-size: 20px;
  }

  .button--pulse {
    padding: 10px;
  }

}

@keyframes pulseButton {
  0% {
    transform: scale(1)
  }

  50% {
    transform: scale(1.1)
  }

  100% {
    transform: scale(1)
  }
}

.content img {
  max-height: 450px;
  max-width: 100%;
  height: auto;
  display: block;
}

.swiper {
  margin: 45px 0 0 0 !important;
  padding-bottom: 45px !important;
}

.swiper-slide {
  margin-bottom: 0 !important;
  position: relative;
}

.swiper-slide:hover .swiper__bg {
  display: block;
}

.swiper__img {
  margin: 0 !important;
}

.swiper__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0.3;
  display: none;
}

@media (max-width:750px) {
  .swiper {
    gap: 10px;
  }
}

@media (max-width:550px) {
  .swiper {
    gap: 15px;
    flex-direction: column;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 19px !important;
  background: #424242;
  padding: 7px;
  border-radius: 3px;
  color: white;
}

.swiper-button-prev:hover:after,
.swiper-rtl .swiper-button-next:hover:after,
.swiper-button-next:hover:after,
.swiper-rtl .swiper-button-prev:hover:after {
  color: red;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
  background: white;
}

.swiper-button-next, .swiper-button-prev{
  top: calc(50% - 25px) !important;
}

/* .swiper-button-lock{
  display: block !important;
} */

/* FAQ Accordion */
.faq {
  margin: 25px 0;
}

.faq__item {
  margin-bottom: 15px;
  border: 2px solid #0095FF;
  border-radius: 5px;
  background-color: #141B2E;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq__item:hover {
  border-color: #00CAFF;
}

.faq__question {
  width: 100%;
  padding: 20px;
  background-color: transparent;
  border: none;
  margin: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: background-color 0.3s ease;
}

.faq__question:hover {
  background-color: rgba(0, 149, 255, 0.1);
}

.faq__question h3 {
  flex: 1;
  margin: 0;
  margin-bottom: 0;
  padding: 0;
  color: #0095FF;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.faq__question h3 span {
  color: #0095FF;
}

.faq__icon {
  font-size: 28px;
  font-weight: 300;
  color: #0095FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq__answer[aria-hidden="false"] {
  max-height: 1000px;
  padding: 0 20px 20px 20px;
}

.faq__answer p {
  margin: 0;
  padding-top: 15px;
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 750px) {
  .faq__question {
    padding: 15px;
  }
  
  .faq__question h3 {
    font-size: 16px;
  }
  
  .faq__answer {
    padding: 0 15px;
  }
  
  .faq__answer[aria-hidden="false"] {
    padding: 0 15px 15px 15px;
  }
  
  .faq__icon {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
}

/* TOC (Table of Contents) */
.toc {
  margin: 25px auto;
  max-width: 800px;
  border: 2px solid #0095FF;
  border-radius: 5px;
  background-color: #141B2E;
  overflow: hidden;
}

.toc__toggle {
  width: 100%;
  padding: 20px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: background-color 0.3s ease;
}

.toc__toggle:hover {
  background-color: rgba(0, 149, 255, 0.1);
}

.toc__title {
  color: #0095FF;
  flex: 1;
}

.toc__icon {
  font-size: 16px;
  color: #0095FF;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.toc__toggle[aria-expanded="true"] .toc__icon {
  transform: rotate(180deg);
}

.toc__nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}

.toc__nav[aria-hidden="false"] {
  max-height: 1000px;
  padding: 0 20px 20px 20px;
}

.toc__list {
  list-style: disc;
  margin: 0 !important;
  padding: 10px 0 10px 20px;
}

.toc__list li {
  margin-bottom: 10px;
}

.toc__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.6;
  display: block;
  padding: 2px 0;
  transition: color 0.3s ease, padding-left 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 10px;
}

.toc__link:hover {
  color: #0095FF;
  padding-left: 15px;
  border-left-color: #0095FF;
}

@media (max-width: 750px) {
  .toc {
    max-width: 100%;
    margin: 25px 0;
  }
  
  .toc__toggle {
    padding: 15px;
    font-size: 16px;
  }
  
  .toc__nav {
    padding: 0 15px;
  }
  
  .toc__nav[aria-hidden="false"] {
    padding: 0 15px 15px 15px;
  }
  
  .toc__link {
    font-size: 14px;
  }
}

/* Author Block */
.author-info {
  margin: 20px 0 30px 0;
  padding: 15px 20px;
  background-color: #1e2a47;
  border: 1px solid rgba(0, 149, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  color: #b0c4de;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}

.author-info__date {
  color: #b0c4de;
  font-size: 13px;
}

.author-info__author {
  color: #b0c4de;
  font-size: 14px;
}

.author-info strong {
  color: #00CAFF;
  font-weight: 600;
}

@media (max-width: 750px) {
  .author-info {
    padding: 10px 15px;
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Author Block Large */
.author-block {
  margin: 40px 0;
  padding: 30px;
  background-color: #141B2E;
  border: 2px solid #0095FF;
  border-radius: 10px;
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.author-block__photo {
  flex-shrink: 0;
}

.author-block__photo img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #0095FF;
  margin: 0;
}

.author-block__info {
  flex: 1;
}

.author-block__name {
  color: #0095FF;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.author-block__position {
  color: #00CAFF;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.author-block__bio {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 750px) {
  .author-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 20px;
    gap: 20px;
  }
  
  .author-block__photo img {
    width: 120px;
    height: 120px;
  }
  
  .author-block__name {
    font-size: 24px;
  }
  
  .author-block__position {
    font-size: 16px;
  }
  
  .author-block__bio {
    font-size: 15px;
  }
}

/* eSports Cards */
.esports-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.esports-card {
  background-color: #141B2E;
  border: 2px solid #0095FF;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  color: #0095FF;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
}

.esports-card:hover {
  border-color: #00CAFF;
  background-color: rgba(0, 149, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 149, 255, 0.3);
  color: #00CAFF;
}

@media (max-width: 750px) {
  .esports-cards {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .esports-card {
    padding: 15px;
    font-size: 16px;
  }
}

@media (max-width: 570px) {
  .esports-cards {
    grid-template-columns: 1fr;
  }
}

.main--404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 48px 15px 80px;
}

.error404 {
  text-align: center;
  width: 100%;
}

.error404__title {
  margin: 0;
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #FA4031;
  text-shadow: 0 4px 48px rgba(250, 64, 49, 0.45);
}