.games-cards-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 40px;
  width: 100%;
  height: 100%;
}

.game-card {
  border-radius: 10px;
  text-align: center;
  transition: transform 1s ease;
  cursor: pointer;
  width: "100%";
  height: 250px;
  perspective: 1000px;
  border: none;
}

.game-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 20px;
}

.game-title {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  margin: 10px 0;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
  perspective: 1000px;
}

.game-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-front {
  background-color: transparent;
}

.card-back {
  color: #fff;
  transform: rotateY(180deg);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.21) 100%);
  border-radius: 20px;
}

.card-back > div {
  background-color: #3f005e;
  width: calc(100% - 40px);
  position: absolute;
  bottom: 0px;
  padding: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
.game-link {
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
  display: inline-block;
  width: max-content;
  margin: 0px auto;
  padding: 1px 20px;
  text-decoration: none;
  border-radius: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 1100px) {
  .games-grid {
    grid-template-columns: repeat(2, minmax(100px, 1fr));
  }
  .games-cards-container {
    padding: 20px;
  }
}

@media screen and (max-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(1, minmax(100px, 1fr));
  }
  .game-card {
    width: 100%;
  }
}
.more-games-button {
  width: max-content;
  padding: 5px 30px;
  background-color: #ff9800;
  color: #000;
  border: none;
  border-radius: 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.more-games-button:hover {
  opacity: 0.7;
  text-decoration: none;
}
.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background: #aaaaaa !important;
}

.swiper-pagination-bullet-active {
  background: #b0176c !important;
}

.banner-background {
  background-image: url("./bg-banner-machines.I1p4HWZm.png");
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff !important;
}
.swiper-button-next {
  right: 30px !important;
}

.machine-banner-img {
  object-fit: cover !important;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .machine-banner-img {
    display: none;
  }
  .logos-banner-img {
    width: 100% !important;
  }
  .container.featured-projects {
    margin: 0px !important;
  }
}
@media screen and (max-width: 1300px) {
  .machine-banner-img {
    display: none;
  }
  .logos-banner-img {
    width: 100% !important;
  }
}
@media screen and (min-width: 1400px) {
  .banner-background.rounded {
    border-radius: 20px;
  }
}
.footer {
  background-color: #110423;
  padding: 40px 0px 0px 0px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  padding-bottom: 30px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
  text-align: left;
  padding: 0 10px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: 5px;
}

.footer-column ul li {
  margin-bottom: 8px;
  text-align: center;
}

.footer-column ul li a {
  text-decoration: none;
  color: #c9d1d9;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ff9800;
}

.footer-bottom {
  width: 100%;
  background: #000;
  font-size: 12px;
  color: #c9d1d9;
  display: flex;
  text-align: center;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icon {
  font-size: 20px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 10px;
}

.social-icon:hover {
  color: #ff9800;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: row;
    align-items: center;
    padding: 0 20px;
    gap: 20px;
  }

  .footer-column {
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
  .footer-bottom .container {
    justify-content: space-around;
  }
}
.header {
  background: linear-gradient(270deg, #700195 0%, #001343 100%);
  padding: 10px 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 73px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 10;
}

.header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .logo img {
  height: 60px;
}

.nav {
  display: flex;
  flex-direction: row-reverse;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 60px;
  margin: 0;
  padding: 0;
  letter-spacing: 2px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #ff4081;
}

.nav-link.active {
  color: #ff4081;
}
/* Estilo do botão hambúrguer */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 20px;
  border: none;
  cursor: pointer;
  z-index: 12;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .header .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 0;
    background-color: #22072d;
    width: 100%;
    padding: 20px 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  }

  .nav.nav-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: end;
    margin-right: 30px;
  }

  .hamburger {
    display: flex;
    margin-right: 20px;
  }
}
.games-container {
  margin-top: 20px;
  background-color: #ffffff;
}
.games-container .swiper-button-prev,
.games-container .swiper-button-next {
  display: none;
}

.breadcrumb-container {
  background-color: #3b0741;
  position: fixed;
  top: 87px;
  left: 0px;
  width: 100%;
  z-index: 9;
  padding: 10px 0px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 20px;
  color: #fff;
  width: 100%;
  gap: 5px;
}
.separator {
  width: 10px;
}
.breadcrumb-link {
  text-decoration: none;
  color: #aaaaaa;
  font-weight: bold;
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: #e63971;
}

.breadcrumb-separator {
  margin: 0 8px;
  color: #c9d1d9;
}

.breadcrumb-current {
  color: #c9d1d9;
  font-weight: bold;
}

.games-details-content > div {
  padding-top: 20px;
}
.related-games {
  color: #000000;
  margin-left: 20px;
}

.contact-section {
  background-color: #0056b3;
  color: #ffffff;
  text-align: center;
  padding: 100px 20px;
}
.contact-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.contact-texts {
  text-align: left;
}
.contact-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact-phone {
  margin-left: 2px;
}

.contact-button {
  width: max-content;
  height: 33px;
  background-color: #ffa600;
  color: #0056b3;
  font-size: 1rem;
  font-weight: bold;
  padding: 5px 30px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  word-wrap: inherit;
  word-break: inherit;
}

.contact-button:hover {
  background-color: #e6b800; /* Amarelo mais escuro no hover */
}

.games-title-section {
  color: #e21973;
  font-size: 1.7rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .breadcrumb {
    padding: 10px;
    flex-wrap: wrap;
  }
  .contact-texts {
    width: 100%;
    text-align: center;
  }
  .contact-section {
    padding: 40px 20px;
  }
  .games-container .banner-background.rounded {
    border-radius: 0px;
    height: 250px;
  }
  .games-title-section {
    padding-left: 20px;
    text-align: center;
  }
  .contact-button {
    margin: 0px auto;
  }
}
/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.filters-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.filters-buttons {
  display: flex;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .filters-container {
    align-items: center;
  }
  .filters-buttons {
    margin: 0 auto;

    flex-wrap: wrap;
    justify-content: center;
  }
}
.filter-button {
  padding: 5px 40px;
  font-size: 14px;
  font-weight: bold;
  color: #003366;
  background-color: transparent;
  border: 2px solid #003366;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-button.active,
.filter-button:hover {
  background-color: #003366;
  padding: 5px 42px;
  color: #ffffff;
}
.video-container {
  width: 100%;
  height: 100%;
}
.video-container video {
  min-height: 600px;
}
.banner-games-background {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-height: 100%;
  object-fit: cover;
  display: flex;
  background-image: url("./games-banner_cadillac.ld0upDci.png");
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    270deg,
    rgba(151, 0, 123, 0.57) 19%,
    rgba(217, 0, 159, 0.34) 59%,
    rgba(0, 0, 0, 0) 79%
  );
  z-index: 0;
}
.description {
  z-index: 2;
}
@media screen and (max-width: 1150px) {
  .banner-games-background img {
    width: 100% !important;
    max-width: 100% !important;
  }
  .banner-games-background img:nth-child(2),
  .banner-games-background .description {
    display: none !important;
  }
  .left-image {
    margin-top: 100px !important;
    height: 90% !important;
  }
}

@media screen and (max-width: 500px) {
  .banner-games-background {
    max-height: 450px !important;
  }
}
.game-description {
  padding: 1px 20px 20px 20px;
  background-color: #ffffff;
  color: #000;
}
.game-description h2 {
  color: #e21973;
  font-weight: 900;
}

.game-description p {
  max-width: 50%;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .game-description p {
    max-width: 100%;
  }
  /* .game-description {
    padding: 0px;
  } */
}
.game-feature {
  display: flex;
  width: 100%;
}

.game-feature-content {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  height: 550px;
}
.section-left {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 50%;
  background-color: black;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 400px;
  z-index: 1;
}
.section-right {
  width: 50%;
  top: 0px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  background-image: linear-gradient(45deg, #002038 0%, #b2008d 100%);
}
.wrapper-content {
  display: flex;
  justify-content: space-between;
}
.game-feature-title {
  font-size: 18px;
  font-weight: bold;
  color: #f4a600;
  margin-bottom: 16px;
  text-align: left;
}
.game-feature-details {
  text-align: left;
  color: #ffffff;
}
.game-feature-details h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 16px;
  margin-bottom: 8px;
}

.game-feature-details p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
  width: 100%;
  max-width: 400px;
}

.game-feature-image {
  display: flex;
  justify-content: center;
  padding: 40px 10px;
  position: relative;
}

img.machine {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  position: absolute;
  right: 220px;
  top: 40px;
}

@media (max-width: 1200px) {
  .section-right,
  img.machine {
    display: none;
  }
  .section-left {
    width: 100%;
  }
  .game-feature-details {
    text-align: left;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
  }
  .game-feature-details p {
    text-align: center;
  }
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
.screenshots-carousel {
  text-align: center;
  background-color: #ffffff;
}
.screenshots-carousel .container {
  padding-bottom: 40px;
}
.screenshot-header {
  background-color: #ff7102;
  padding: 1px;
  margin-bottom: 60px;
}

.carousel-title {
  font-size: 1.9rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.carousel-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.carousel-image:hover {
  transform: scale(1.05);
}

.screenshots-carousel .swiper-button-next,
.screenshots-carousel .swiper-button-prev {
  color: #ff6600;
}
.screenshots-carousel .swiper-button-prev {
  left: 10%;
}
.screenshots-carousel .swiper-button-next {
  right: 20%;
}
.screenshots-carousel .swiper-button-next::after,
.screenshots-carousel .swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}

.screenshots-carousel .swiper-button-next::after {
  border-width: 15px 0 15px 20px;
  border-color: transparent transparent transparent #6900ff;
}

.screenshots-carousel .swiper-button-prev::after {
  border-width: 15px 20px 15px 0;
  border-color: transparent #6900ff transparent transparent;
}

@media (max-width: 768px) {
  .screenshots-carousel .swiper-button-next,
  .screenshots-carousel .swiper-button-prev {
    display: none;
  }
}
@font-face {
  font-family: "Aurch Heavy";
  src: local("Aurch Heavy"),
    url("./Aurach-Heavy.mOv3Strg.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "SFUI";
  src: local("SFUI"),
    url("./SF-UI-Text-Regular.C0JAe8Wh.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

:root {
  font-family: SFUI, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #0a1321;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  scroll-behavior: smooth;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}
h1,
h2,
h3 {
  font-family: Aurch Heavy, sans-serif;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

.text-shadow {
  font-weight: bold;
  color: #ffffff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), -4px -4px 8px rgba(0, 0, 0, 0.7),
    4px -4px 8px rgba(0, 0, 0, 0.7), -4px 4px 8px rgba(0, 0, 0, 0.7);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0px auto;
}
.text-red {
  color: #ff0045;
}

@media (prefers-color-scheme: light) {
  :root {
    color: #213547;
    background-color: #ffffff;
  }
  a:hover {
    color: #747bff;
  }
  button {
    background-color: #f9f9f9;
  }
}

@media screen and (max-width: 768px) {
  .container {
    margin: 0px 20px;
  }
  .games-container.container,
  .games-details-container .container {
    margin: 0px;
  }
  .mobile-hidden {
    display: none;
  }
}
