.page-original-games {
  color: #333333;
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
}

/* Hero Section */
.page-original-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
  background-color: #333333;
}

.page-original-games__hero-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 780;
  display: flex;
}

.page-original-games__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.page-original-games__hero-slide.is-active {
  opacity: 1;
}

.page-original-games__hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-original-games__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-original-games__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 15px;
  color: #E44D26;
}

.page-original-games__hero-description {
  font-size: 1.1em;
  margin-bottom: 25px;
}

.page-original-games__hero-button {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-original-games__hero-button:hover {
  background-color: #c23e1e;
}

.page-original-games__hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.page-original-games__hero-dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-original-games__hero-dot.is-active {
  background-color: #E44D26;
}

/* General Section Styling */
.page-original-games__section-title {
  font-size: 2.2em;
  color: #333333;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-original-games__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Games Section */
.page-original-games__games-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-original-games__games-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.page-original-games__games-prev,
.page-original-games__games-next {
  background-color: #E44D26;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.5em;
  margin: 0 10px;
  transition: background-color 0.3s ease;
}

.page-original-games__games-prev:hover,
.page-original-games__games-next:hover {
  background-color: #c23e1e;
}

.page-original-games__games-track {
  display: flex;
  gap: 20px;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  padding-bottom: 15px;
  scrollbar-width: none; /* Firefox */
  width: calc(100% - 100px); /* Adjust for buttons */
}

.page-original-games__games-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.page-original-games__game-card {
  flex: 0 0 260px;
  aspect-ratio: 13 / 19;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #333333;
}

.page-original-games__game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-original-games__game-card:hover img {
  transform: scale(1.05);
}

.page-original-games__game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: #ffffff;
  padding: 15px;
  text-align: center;
}

.page-original-games__game-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #E44D26;
}

.page-original-games__game-button {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-original-games__game-button:hover {
  background-color: #c23e1e;
}

.page-original-games__view-all-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  background-color: #333333;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-original-games__view-all-button:hover {
  background-color: #1a1a1a;
}

/* About Section */
.page-original-games__about-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-original-games__about-content {
  flex: 1;
}

.page-original-games__about-content .page-original-games__section-title,
.page-original-games__about-content .page-original-games__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-original-games__about-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-original-games__about-item {
  font-size: 1.1em;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #555555;
}

.page-original-games__about-item strong {
  color: #333333;
}

.page-original-games__about-item::before {
  content: '✔';
  color: #E44D26;
  position: absolute;
  left: 0;
  top: 0;
}

.page-original-games__about-button {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 30px;
  transition: background-color 0.3s ease;
}

.page-original-games__about-button:hover {
  background-color: #c23e1e;
}

.page-original-games__about-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-original-games__about-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Unique Section */
.page-original-games__unique-section {
  padding: 60px 20px;
  background-color: #333333;
  color: #ffffff;
}

.page-original-games__unique-section .page-original-games__section-title {
  color: #E44D26;
}

.page-original-games__unique-section .page-original-games__section-description {
  color: #D0DDE7;
}

.page-original-games__unique-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.page-original-games__unique-card {
  perspective: 1000px;
  height: 350px;
  cursor: pointer;
}

.page-original-games__unique-card > div {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  background-color: #444444;
}

.page-original-games__unique-card.is-flip > div {
  transform: rotateY(180deg);
}

.page-original-games__unique-front,
.page-original-games__unique-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 12px;
}

.page-original-games__unique-front {
  color: #ffffff;
}

.page-original-games__unique-front img {
  
  
  object-fit: contain;
  margin-bottom: 15px;
}

.page-original-games__unique-title {
  font-size: 1.5em;
  color: #E44D26;
}

.page-original-games__unique-back {
  background-color: #E44D26;
  color: #ffffff;
  transform: rotateY(180deg);
}

.page-original-games__unique-back p {
  font-size: 1.1em;
  line-height: 1.5;
}

/* Service Section */
.page-original-games__service-section {
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.page-original-games__service-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto 0 auto;
}

.page-original-games__service-item {
  text-align: center;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-original-games__service-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-original-games__service-title {
  font-size: 1.3em;
  color: #E44D26;
  margin-bottom: 10px;
}

.page-original-games__service-item p {
  color: #555555;
  font-size: 0.95em;
  line-height: 1.5;
}

.page-original-games__cta-wrapper {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #333333;
  border-radius: 12px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-original-games__cta-text {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-original-games__cta-button {
  display: inline-block;
  background-color: #E44D26;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-original-games__cta-button:hover {
  background-color: #c23e1e;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-original-games__about-section {
    flex-direction: column;
    text-align: center;
  }

  .page-original-games__about-content .page-original-games__section-title,
  .page-original-games__about-content .page-original-games__section-description {
    text-align: center;
  }

  .page-original-games__about-list {
    text-align: left;
  }

  .page-original-games__unique-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-original-games__service-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-original-games__games-track {
    width: calc(100% - 60px); /* Adjust for smaller buttons */
  }
}

@media (max-width: 768px) {
  .page-original-games__hero-track {
    aspect-ratio: 3 / 4;
  }

  .page-original-games__hero-content {
    width: 90%;
    padding: 15px;
  }

  .page-original-games__main-title {
    font-size: 1.8em;
  }

  .page-original-games__hero-description {
    font-size: 1em;
  }

  .page-original-games__hero-button {
    font-size: 0.9em;
    padding: 10px 20px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-original-games__section-title {
    font-size: 1.8em;
  }

  .page-original-games__section-description {
    font-size: 0.95em;
  }

  .page-original-games__games-controls {
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .page-original-games__games-prev,
  .page-original-games__games-next {
    font-size: 1.2em;
    padding: 8px 12px;
    margin: 5px;
    flex-shrink: 0;
  }

  .page-original-games__games-track {
    width: 100%;
    padding-bottom: 10px;
  }

  .page-original-games__game-card {
    flex: 0 0 200px;
    aspect-ratio: 13 / 19;
  }

  .page-original-games__game-card img,
  .page-original-games__about-image-wrapper img,
  .page-original-games__unique-front img,
  .page-original-games__service-item img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-original-games__about-section {
    flex-direction: column;
    text-align: center;
  }

  .page-original-games__about-content .page-original-games__section-title,
  .page-original-games__about-content .page-original-games__section-description {
    text-align: center;
  }

  .page-original-games__about-list {
    text-align: left;
    max-width: 90%;
    margin: 30px auto;
  }

  .page-original-games__about-button {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-original-games__unique-grid {
    grid-template-columns: 1fr;
  }

  .page-original-games__unique-card {
    height: 300px;
  }

  .page-original-games__service-list {
    grid-template-columns: 1fr;
  }

  .page-original-games__service-item {
    padding: 20px;
  }

  .page-original-games__cta-text {
    font-size: 1.4em;
  }

  .page-original-games__cta-button {
    font-size: 1em;
    padding: 12px 25px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-original-games__games-track {
    max-width: 100%;
    overflow-x: auto;
  }

  .page-original-games__games-controls {
    width: 100%;
    justify-content: space-between;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .page-original-games__games-prev,
  .page-original-games__games-next {
    background-color: #E44D26;
    color: #ffffff;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
    margin: 0;
    flex-shrink: 0;
  }
}