.page-slot-games {
  font-family: 'Arial', sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
  padding-bottom: 40px;
}

.page-slot-games__section-spacing {
  padding-top: 40px;
  padding-bottom: 40px;
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-slot-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A, #D96800);
  border-radius: 2px;
}

.page-slot-games__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slot-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding-top: 10px; /* Small top padding as shared.css handles body padding-top */
}

.page-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-slot-games__description {
  font-size: 1.2em;
  color: #FFF3E6;
  margin-bottom: 30px;
}

.page-slot-games__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-slot-games__btn-primary,
.page-slot-games__btn-secondary,
.page-slot-games__btn-play,
.page-slot-games__btn-claim {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-slot-games__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-slot-games__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #A84F0C; /* Border */
}

.page-slot-games__btn-secondary:hover {
  background: #2a2d36;
  color: #FFB04D; /* Glow */
  border-color: #FFB04D;
}

.page-slot-games__games-showcase {
  background-color: #0D0E12;
}

.page-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slot-games__game-tile {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__game-tile img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 2px solid #A84F0C; /* Border */
}

.page-slot-games__game-title {
  font-size: 1.5em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__game-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games__btn-play {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  margin: 0 15px;
}

.page-slot-games__btn-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.5);
}

.page-slot-games__how-to-play-section {
  background-color: #1a1c24;
}

.page-slot-games__steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.page-slot-games__steps-list li {
  background-color: #17191F; /* Card BG */
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FFA53A;
}

.page-slot-games__step-title {
  font-size: 1.3em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
}

.page-slot-games__steps-list p {
  color: #FFF3E6;
  font-size: 1em;
}

.page-slot-games__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-slot-games__advantages-list li {
  background-color: #17191F; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid #D96800;
}

.page-slot-games__advantage-title {
  font-size: 1.4em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
}

.page-slot-games__advantages-list p {
  color: #FFF3E6;
  font-size: 1em;
}

.page-slot-games__promotions-section {
  background-color: #0D0E12;
}

.page-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.page-slot-games__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 2px solid #A84F0C; /* Border */
}

.page-slot-games__promo-title {
  font-size: 1.4em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-slot-games__promo-description {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 15px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-slot-games__btn-claim {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button */
  color: #FFF3E6; /* Text Main */
  margin: 0 15px;
}

.page-slot-games__btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.5);
}

.page-slot-games__view-all-promos {
  display: block;
  margin-top: 20px;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games__register-cta {
  background-color: #D96800; /* Deep Orange */
  background-image: url('[GALLERY:bg:1920x400:abstract,orange_gradient,network_lines]'); /* Example background image */
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  text-align: center;
}

.page-slot-games__register-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-slot-games__register-text {
  max-width: 800px;
}

.page-slot-games__register-text .page-slot-games__section-title {
  color: #FFF3E6; /* Text Main */
}

.page-slot-games__register-text .page-slot-games__section-title::after {
  background: #FFF3E6;
}

.page-slot-games__register-text .page-slot-games__description {
  color: #FFF3E6;
}

.page-slot-games__register-image-wrapper {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games__register-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-slot-games__register-buttons {
  margin-top: 20px;
}

.page-slot-games__faq-section {
  background-color: #1a1c24;
}

.page-slot-games__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games__faq-item {
  background-color: #17191F; /* Card BG */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #A84F0C; /* Border */
}

.page-slot-games__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #FFB04D; /* Glow */
  background-color: #1f212a;
  border-bottom: 1px solid #A84F0C;
}

.page-slot-games__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-slot-games__faq-question .page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

.page-slot-games__faq-answer {
  padding: 20px 25px;
  color: #FFF3E6; /* Text Main */
  font-size: 1em;
  line-height: 1.6;
}

.page-slot-games__faq-answer p {
  margin: 0;
}

/* General image responsiveness */
.page-slot-games img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-slot-games__text-block {
    font-size: 1em;
  }

  /* Hero section */
  .page-slot-games__hero-section {
    min-height: 400px;
    padding-top: 10px !important;
  }

  .page-slot-games__hero-image {
    object-fit: contain; /* Ensure full image is visible, not cropped */
    aspect-ratio: unset;
    max-height: none;
    filter: brightness(0.6);
  }

  .page-slot-games__hero-content {
    padding: 30px 15px;
  }

  .page-slot-games__main-title {
    font-size: 2.2em;
  }

  .page-slot-games__description {
    font-size: 1.1em;
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games__btn-play,
  .page-slot-games__btn-claim {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Game Grid */
  .page-slot-games__game-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow-x: hidden;
  }

  .page-slot-games__game-tile img {
     /* Adjust height for mobile */
    object-fit: cover;
  }

  .page-slot-games__game-title {
    font-size: 1.2em;
  }

  .page-slot-games__game-description {
    font-size: 0.85em;
  }

  /* Steps list */
  .page-slot-games__steps-list li,
  .page-slot-games__advantages-list li,
  .page-slot-games__promo-card {
    padding: 20px;
  }

  .page-slot-games__step-title,
  .page-slot-games__advantage-title,
  .page-slot-games__promo-title {
    font-size: 1.2em;
  }

  .page-slot-games__advantages-list {
    grid-template-columns: 1fr;
  }

  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games__promo-card img {
    
  }

  /* Register CTA */
  .page-slot-games__register-cta {
    padding: 40px 0;
  }

  .page-slot-games__register-content {
    gap: 20px;
  }

  .page-slot-games__register-image-wrapper {
    max-width: 100%;
  }

  .page-slot-games__register-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  /* FAQ */
  .page-slot-games__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-slot-games__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  /* Generic image and container rules for mobile */
  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__game-tile,
  .page-slot-games__promo-card,
  .page-slot-games__steps-list li,
  .page-slot-games__advantages-list li,
  .page-slot-games__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games__game-tile, .page-slot-games__promo-card, .page-slot-games__steps-list li, .page-slot-games__advantages-list li, .page-slot-games__faq-item {
      padding-left: 0;
      padding-right: 0;
  }
  .page-slot-games__promo-card .page-slot-games__btn-claim {
      margin: 0 15px;
  }
  .page-slot-games__game-tile .page-slot-games__btn-play {
      margin: 0 15px;
  }
}