.page-original {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

/* Fixed Header Spacing */
.page-original__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop default */
}

/* Hero Section */
.page-original__hero-section {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* Content at bottom of hero */
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
}

.page-original__hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-original__hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  transform: translateX(100%); /* Initial state for sliding in */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-original__hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.page-original__hero-slide.prev {
  transform: translateX(-100%);
}


.page-original__hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* No filter on images */
}

.page-original__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.page-original__main-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #FFD36B; /* Glow color for prominence */
  margin-bottom: 10px;
  line-height: 1.2;
  max-width: 100%;
}

.page-original__hero-description {
  font-size: 1.2em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 30px;
}

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

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

.page-original__hero-dot.active {
  background-color: #FFD36B; /* Glow */
}


/* General Section Styling */
.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-original__section-title {
  font-size: 2.2em;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.2;
}

.page-original__text-block {
  font-size: 1em;
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
  text-align: justify;
}

/* Buttons */
.page-original__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-original__cta-buttons--center {
  justify-content: center;
  margin-top: 30px;
}

.page-original__cta-buttons--left {
  justify-content: flex-start;
  margin-top: 30px;
}


.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__read-more,
.page-original__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-original__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #111111; /* Dark text for contrast */
  border: 2px solid transparent;
}

.page-original__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-original__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Main color */
}

.page-original__btn-secondary:hover {
  background: #F2C14E; /* Main color */
  color: #111111; /* Card BG */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-original__read-more {
  color: #F2C14E; /* Main color */
  text-decoration: underline;
  padding: 0;
}

.page-original__read-more:hover {
  color: #FFD36B; /* Glow */
}

.page-original__btn-text {
  color: #F2C14E; /* Main color */
  text-decoration: none;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-original__btn-text:hover {
  color: #FFD36B; /* Glow */
}

/* Dark Section Styling */
.page-original__dark-section {
  background-color: #111111; /* Card BG */
  padding: 50px 0;
}

/* About Section */
.page-original__about-section {
  text-align: center;
  padding: 50px 0;
}

/* Games Section */
.page-original__games-section {
  padding: 50px 0;
  text-align: center;
}

.page-original__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__game-card {
  background: #111111; /* Card BG */
  padding: 30px 20px;
  border-radius: 10px;
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-original__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(242, 193, 78, 0.2);
}

.page-original__game-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 15px;
  object-fit: contain;
  /* No filter on images */
}

.page-original__game-title {
  font-size: 1.4em;
  color: #F2C14E; /* Main color */
  margin-bottom: 10px;
}

.page-original__game-title a {
  color: #F2C14E; /* Main color */
  text-decoration: none;
}

.page-original__game-title a:hover {
  color: #FFD36B; /* Glow */
}

.page-original__game-description {
  font-size: 0.95em;
  color: #FFF6D6; /* Text Main */
}

/* Promotions Section */
.page-original__promotions-section {
  text-align: center;
}

.page-original__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__promo-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-original__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(242, 193, 78, 0.2);
}

.page-original__promo-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  /* No filter on images */
}

.page-original__promo-card h3 {
  font-size: 1.3em;
  color: #F2C14E; /* Main color */
  padding: 15px 20px 5px;
}