.page-slot-games {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-slot-games__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-slot-games__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-slot-games__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-slot-games__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games__description {
  font-size: 1.1rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-slot-games__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2AD16F;
}

.page-slot-games__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D;
}

.page-slot-games__btn-secondary:hover {
  background-color: #57E38D;
  color: #08160F; /* Background */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-slot-games__btn-full-width {
  width: 100%;
}

.page-slot-games__section {
  padding: 60px 20px;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__dark-section {
  background-color: #11271B; /* Card BG */
}

.page-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slot-games__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slot-games__grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-slot-games__grid-2-cols-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-slot-games__grid-2-cols-reverse .page-slot-games__image-wrapper {
  order: 2;
}

.page-slot-games__grid-2-cols-reverse .page-slot-games__text-block {
  order: 1;
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__text-block strong {
  color: #F2C14E; /* Gold */
}

.page-slot-games__image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-slot-games__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.page-slot-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-slot-games__card-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  padding: 15px 20px 10px;
  font-weight: 600;
}

.page-slot-games__card-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-slot-games__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  text-align: center;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-slot-games__featured-game-text,
.page-slot-games__promotion-footer-text,
.page-slot-games__footer-text {
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__featured-game-text a,
.page-slot-games__promotion-footer-text a,
.page-slot-games__footer-text a {
  color: #57E38D; /* Glow */
  text-decoration: none;
  font-weight: 600;
}

.page-slot-games__featured-game-text a:hover,
.page-slot-games__promotion-footer-text a:hover,
.page-slot-games__footer-text a:hover {
  text-decoration: underline;
}

.page-slot-games__strategy-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-slot-games__strategy-list li {
  background-color: #11271B; /* Card BG */
  border-left: 4px solid #57E38D; /* Glow */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-slot-games__strategy-list li strong {
  color: #F2C14E; /* Gold */
}

.page-slot-games__registration-guide .page-slot-games__image-wrapper {
  order: 1;
}

.page-slot-games__registration-guide .page-slot-games__text-block {
  order: 2;
}

.page-slot-games__step-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-slot-games__step-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Text Main */
}

.page-slot-games__step-list li:before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #57E38D; /* Glow */
  color: #08160F; /* Background */
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.page-slot-games__step-list li strong {
  color: #F2C14E; /* Gold */
}

.page-slot-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-slot-games__feature-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-slot-games__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slot-games__feature-title {
  font-size: 1.4rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games__feature-text {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-slot-games__faq-list {
  margin-top: 30px;
}

.page-slot-games__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-slot-games__faq-question:hover {
  background-color: #2E7A4E; /* Border */
}

.page-slot-games__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #57E38D; /* Glow */
  margin-left: 15px;
}

.page-slot-games__faq-item[open] .page-slot-games__faq-toggle {
  content: '−';
}

.page-slot-games__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #2E7A4E; /* Border */
}

.page-slot-games__faq-answer p {
  margin-bottom: 10px;
}

.page-slot-games__faq-answer strong {
  color: #F2C14E; /* Gold */
}

.page-slot-games__cta-final {
  padding-bottom: 80px;
}

.page-slot-games__text-center {
  text-align: center;
}

@media (max-width: 992px) {
  .page-slot-games__grid-2-cols,
  .page-slot-games__grid-2-cols-reverse {
    grid-template-columns: 1fr;
  }

  .page-slot-games__grid-2-cols-reverse .page-slot-games__image-wrapper {
    order: 1;
  }

  .page-slot-games__grid-2-cols-reverse .page-slot-games__text-block {
    order: 2;
  }

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

  .page-slot-games__main-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .page-slot-games__description {
    font-size: 1rem;
  }

  .page-slot-games__section-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .page-slot-games__cta-buttons {
    flex-direction: column;
  }

  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary {
    width: 100%;
    max-width: 300px; /* Limit button width on smaller screens */
    margin: 0 auto;
  }

  .page-slot-games__cta-buttons > * + * {
    margin-top: 15px;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-content {
    position: static;
    transform: none;
    background: none;
    padding: 20px;
    margin-top: -100px; /* Pull content up over image */
  }

  .page-slot-games__hero-image {
    filter: brightness(0.4); /* Darker image for better contrast */
  }

  .page-slot-games__section,
  .page-slot-games__dark-section {
    padding: 40px 15px;
  }

  .page-slot-games__container {
    padding: 0;
  }

  .page-slot-games img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-slot-games__hero-image-wrapper,
  .page-slot-games__image-wrapper,
  .page-slot-games__card-image,
  .page-slot-games__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-slot-games__section,
  .page-slot-games__card,
  .page-slot-games__container,
  .page-slot-games__game-cards-grid,
  .page-slot-games__promotion-cards-grid,
  .page-slot-games__feature-grid,
  .page-slot-games__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-slot-games__hero-section {
    padding-bottom: 20px;
  }
  
  .page-slot-games__btn-primary,
  .page-slot-games__btn-secondary,
  .page-slot-games a[class*="button"],
  .page-slot-games a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-slot-games__cta-buttons,
  .page-slot-games__button-group,
  .page-slot-games__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for buttons */
  }

  .page-slot-games__card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
  }
}

@media (max-width: 480px) {
  .page-slot-games__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-slot-games__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .page-slot-games__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-slot-games__faq-answer {
    padding: 10px 15px 15px;
  }

  .page-slot-games__feature-item {
    padding: 20px;
  }

  .page-slot-games__feature-icon {
    width: 80px;
    height: 80px;
  }
}