.robot-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.robot-main-container {
  position: relative;
}
.robot-main-container > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.6);
  position: absolute;
  top: 0px;
  left: 0px;
}
.robot-bg-section {
  position: relative;
  width: 100%;
  padding-bottom: 1px;
  z-index: 1;
}
.robot-bg-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
.robot-bg-section.robot-bg-shallow::before {
  opacity: 0.5;
  background-color: #111;
}
.robot-bg-section.robot-bg-dark::before {
  opacity: 0.5;
  background-color: #111;
}
.robot-main {
  max-width: 1050px;
  margin: 0 auto;
  padding: 6rem 0rem 0rem;
}
.robot-main .robot-hero {
  text-align: center;
  margin: 4rem 0;
}
.robot-main .robot-hero .robot-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}
.robot-main .robot-hero .robot-title span {
  color: #972525;
}
.robot-main .robot-hero .robot-subtitle {
  color: #999999;
  font-size: 1rem;
  letter-spacing: 1px;
}
.robot-main .robot-games {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 3rem 0;
}
.robot-main .robot-games .robot-game-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.robot-main .robot-games .robot-game-card .robot-game-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.robot-main .robot-games .robot-game-card .robot-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.robot-main .robot-games .robot-game-card .robot-game-image:hover img {
  transform: scale(1.05);
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-tag {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-popular {
  background-color: #9c27b0;
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-popular::before {
  content: "\e8b6";
  font-family: iconfont ;
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-new {
  background-color: #4caf50;
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-new::before {
  content: "\e624";
  font-family: iconfont ;
}
.robot-main .robot-games .robot-game-card .robot-game-image .robot-game-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.robot-main .robot-games .robot-game-card .robot-game-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
}
.robot-main .robot-games .robot-game-card .robot-game-info .robot-game-name {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}
.robot-main .robot-games .robot-game-card .robot-game-info .robot-arrow-link {
  width: 16px;
  height: 16px;
  font-family: "iconfont";
  background: url("../assets/arrow-right.svg") no-repeat center;
  opacity: 0.5;
  transition: opacity 0.3s;
  text-decoration: none;
  font-size: 16px;
  color: #fff;
}
.robot-main .robot-games .robot-game-card .robot-game-info .robot-arrow-link:hover {
  opacity: 1;
}
.robot-main .robot-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 4rem 0;
}
.robot-main .robot-features .robot-icon-guarantee {
  font-size: 35px;
}
.robot-main .robot-features .robot-icon-guarantee::before {
  content: "\e876";
  font-family: iconfont ;
}
.robot-main .robot-features .robot-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 1rem;
}
.robot-main .robot-features .robot-feature .robot-icon-guarantee {
  font-size: 35px;
}
.robot-main .robot-features .robot-feature .robot-icon-guarantee::before {
  content: "\e876";
  font-family: iconfont ;
  color: #7c2cec;
}
.robot-main .robot-features .robot-feature .robot-icon-users {
  font-size: 35px;
}
.robot-main .robot-features .robot-feature .robot-icon-users::before {
  content: "\e6a5";
  font-family: iconfont ;
  color: #7c2cec;
}
.robot-main .robot-features .robot-feature .robot-icon-cashback {
  font-size: 35px;
}
.robot-main .robot-features .robot-feature .robot-icon-cashback::before {
  content: "\e60a";
  font-family: iconfont ;
  color: #7c2cec;
}
.robot-main .robot-features .robot-feature h3 {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}
.robot-main .robot-features .robot-feature p {
  color: #999999;
  font-size: 0.9rem;
  margin-top: 0.6rem;
  line-height: 1.3;
}
.robot-main .robot-how-it-works {
  text-align: center;
}
.robot-main .robot-how-it-works h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ffffff;
}
.robot-main .robot-how-it-works .robot-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
  overflow: hidden;
}
.robot-main .robot-how-it-works .robot-carousel-container {
  display: flex;
  transition: transform 0.5s ease;
  margin: 0 -1rem;
}
.robot-main .robot-how-it-works .robot-carousel-slide {
  flex: 0 0 100%;
  padding: 0 1rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.robot-main .robot-how-it-works .robot-carousel-slide .robot-step-image {
  flex: 0 0 50%;
}
.robot-main .robot-how-it-works .robot-carousel-slide .robot-step-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.robot-main .robot-how-it-works .robot-carousel-slide .robot-step-content {
  flex: 1;
  text-align: left;
  padding: 1rem 0;
}
.robot-main .robot-how-it-works .robot-carousel-slide .robot-step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.robot-main .robot-how-it-works .robot-carousel-slide .robot-step-content p {
  color: #999999;
  line-height: 1.6;
}
.robot-main .robot-how-it-works .robot-carousel .robot-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.robot-main .robot-how-it-works .robot-carousel .swiper-button-prev,
.robot-main .robot-how-it-works .robot-carousel .swiper-button-next {
  position: static;
  transform: none;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin: 0;
}
.robot-main .robot-how-it-works .robot-carousel .swiper-button-prev::after,
.robot-main .robot-how-it-works .robot-carousel .swiper-button-next::after {
  font-size: 14px;
  color: white;
}
.robot-main .robot-how-it-works .robot-carousel .swiper-button-prev:hover,
.robot-main .robot-how-it-works .robot-carousel .swiper-button-next:hover {
  background: rgba(255, 255, 255, 0.2);
}
.robot-main .robot-reviews {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}
.robot-main .robot-reviews .robot-trustpilot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}
.robot-main .robot-reviews .robot-trustpilot-header .robot-trustpilot-logo img {
  width: 9rem;
  height: min-content;
}
.robot-main .robot-reviews .robot-trustpilot-header .robot-trustpilot-score p {
  color: #ffffff;
  font-size: 1.25rem;
}
.robot-main .robot-reviews .robot-trustpilot-header .robot-trustpilot-score p span {
  font-weight: 600;
}
.robot-main .robot-reviews .robot-reviews-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-header .robot-review-label {
  color: #999999;
  font-size: 0.9rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-header .robot-review-product {
  color: #972525;
  text-decoration: none;
  font-size: 0.9rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-header .robot-review-product:hover {
  text-decoration: underline;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-header .robot-review-stars {
  margin-left: auto;
  color: #00b67a;
  font-size: 1.1rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-content {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.robot-main .robot-reviews .robot-reviews-container .robot-review .robot-review-time {
  color: #999999;
  font-size: 0.85rem;
}
.robot-main .robot-reviews .robot-reviews-action {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.robot-main .robot-reviews .robot-reviews-action .robot-all-reviews {
  width: fit-content;
  display: flex;
  align-items: center;
  background: #972525;
  color: #ffffff;
  text-decoration: none;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}
.robot-main .robot-reviews .robot-reviews-action .robot-all-reviews svg {
  transition: transform 0.3s ease;
}
.robot-main .robot-reviews .robot-reviews-action .robot-all-reviews:hover {
  opacity: 0.9;
}
.robot-main .robot-reviews .robot-reviews-action .robot-all-reviews:hover svg {
  transform: translateX(5px);
}
@media screen and (max-width: 800px) {
  .robot-main {
    padding: 10rem 1rem 1rem;
  }
  .robot-main .robot-features {
    grid-template-columns: repeat(1, 1fr);
  }
  .robot-main .robot-features .robot-feature {
    justify-content: center;
  }
  .robot-main .robot-hero {
    margin: 2rem 0;
  }
  .robot-main .robot-hero .robot-title {
    font-size: 2rem;
  }
  .robot-main .robot-games {
    grid-template-columns: repeat(2, 1fr);
  }
  .robot-main .robot-how-it-works {
    padding: 2rem 0;
  }
  .robot-main .robot-how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .robot-main .robot-how-it-works .robot-carousel {
    padding: 1rem;
  }
  .robot-main .robot-how-it-works .robot-carousel-slide {
    flex-direction: column;
    gap: 1rem;
  }
  .robot-main .robot-how-it-works .robot-carousel-slide .robot-step-image,
  .robot-main .robot-how-it-works .robot-carousel-slide .robot-step-content {
    flex: 0 0 100%;
  }
  .robot-main .robot-how-it-works .robot-carousel-slide .robot-step-content {
    text-align: center;
  }
  .robot-main .robot-reviews {
    margin: 2rem auto;
  }
  .robot-main .robot-reviews .robot-trustpilot-header {
    flex-direction: column;
    text-align: center;
  }
  .robot-main .robot-reviews .robot-review .robot-review-header {
    flex-wrap: wrap;
  }
  .robot-main .robot-reviews .robot-review .robot-review-header .robot-review-stars {
    width: 100%;
    margin: 0.5rem 0;
    text-align: left;
  }
}
