.page-slots {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Main text color for dark background */
  background-color: #08160F; /* Body background color */
  line-height: 1.6;
}

.page-slots__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-slots__hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px;
  background: linear-gradient(0deg, #08160F 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%);
  color: #F2FFF6;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slots__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-slots__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Secondary text color */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

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

.page-slots__btn-primary,
.page-slots__btn-secondary,
.page-slots__btn-play {
  display: inline-block;
  padding: 12px 30px;
  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;
  text-align: center;
}

.page-slots__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-slots__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-slots__btn-secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-slots__btn-secondary:hover {
  background-color: #2AD16F;
  color: #08160F;
  transform: translateY(-2px);
}

.page-slots__btn-play {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
  padding: 8px 20px;
  font-size: 0.9em;
  width: 100%;
  max-width: 150px;
  margin-top: 15px;
}

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

.page-slots__section-spacing {
  padding: 80px 20px;
  box-sizing: border-box;
}

.page-slots__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slots__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slots__intro-section p {
  font-size: 1.05em;
  color: #A7D9B8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slots__dark-section {
  background-color: #11271B; /* Card BG color for dark sections */
  color: #F2FFF6;
}

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

.page-slots__feature-card,
.page-slots__game-card,
.page-slots__promo-card {
  background-color: #0A4B2C; /* Deep Green for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-slots__feature-card:hover,
.page-slots__game-card:hover,
.page-slots__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-slots__feature-icon,
.page-slots__game-image,
.page-slots__promo-image {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-slots__game-image,
.page-slots__promo-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slots__feature-title,
.page-slots__game-title,
.page-slots__promo-title {
  font-size: 1.5em;
  color: #F2C14E;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slots__feature-card p,
.page-slots__game-card p,
.page-slots__promo-card p {
  font-size: 0.95em;
  color: #A7D9B8;
  text-align: justify;
  flex-grow: 1;
}

.page-slots__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-slots__how-to-play-section {
  background-color: #08160F; /* Light BG for contrast */
  color: #F2FFF6;
}

.page-slots__how-to-play-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-slots__how-to-play-steps ol {
  list-style: none;
  padding: 0;
}

.page-slots__how-to-play-steps li {
  margin-bottom: 30px;
  position: relative;
  padding-left: 40px;
}

.page-slots__how-to-play-steps li h3 {
  color: #F2C14E;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-slots__how-to-play-steps li p {
  color: #A7D9B8;
  font-size: 1em;
  text-align: justify;
}

.page-slots__how-to-play-steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #2AD16F;
  color: #08160F;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-slots__how-to-play-image-wrapper {
  text-align: center;
}

.page-slots__how-to-play-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slots__tips-strategy-section {
  background-color: #11271B;
  color: #F2FFF6;
}

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

.page-slots__tips-list li {
  background-color: #0A4B2C;
  border-left: 5px solid #2AD16F;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots__tips-list li h3 {
  color: #F2C14E;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-slots__tips-list li p {
  color: #A7D9B8;
  font-size: 1em;
  text-align: justify;
}

.page-slots__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-slots__faq-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-slots__faq-list {
  margin-top: 40px;
}

.page-slots__faq-item {
  background-color: #0A4B2C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6;
  cursor: pointer;
  background-color: #11271B;
  border-bottom: 1px solid #1E3A2A;
  user-select: none;
}

.page-slots__faq-item[open] .page-slots__faq-question {
  border-bottom: 1px solid #2E7A4E;
}

.page-slots__faq-qtext {
  flex-grow: 1;
  color: #F2C14E;
}

.page-slots__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F;
}

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

.page-slots__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #A7D9B8;
  text-align: justify;
}

.page-slots__faq-answer p {
  margin-top: 15px;
}

.page-slots__conclusion-cta-section {
  text-align: center;
  padding-bottom: 80px;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-slots__conclusion-cta-section p {
  font-size: 1.1em;
  color: #A7D9B8;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-slots__conclusion-cta-section p a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-slots__conclusion-cta-section p a:hover {
  color: #F2C14E;
}

/* General image styling to prevent small icons */
.page-slots img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Responsive adjustments */
@media (min-width: 769px) {
  .page-slots__hero-content {
    position: relative;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-slots__hero-section {
    flex-direction: row;
    padding: 0;
    text-align: left;
    height: 600px; /* Fixed height for desktop hero */
  }
  .page-slots__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .page-slots__hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 40px;
    height: 100%;
  }
  .page-slots__main-title {
    text-align: left;
  }
  .page-slots__description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }
  .page-slots__cta-buttons {
    justify-content: flex-start;
  }
  .page-slots__how-to-play-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-slots__how-to-play-steps li::before {
    left: -40px;
  }
  .page-slots__how-to-play-steps ol {
    counter-reset: step-counter;
    padding-left: 40px;
  }
  .page-slots__how-to-play-steps li {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .page-slots__hero-content {
    padding: 20px;
    background: linear-gradient(0deg, #08160F 0%, rgba(8, 22, 15, 0.9) 50%, rgba(8, 22, 15, 0.6) 100%);
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .page-slots__main-title {
    font-size: 2.2em;
  }
  .page-slots__section-title {
    font-size: 2em;
  }
  .page-slots__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots__btn-primary,
  .page-slots__btn-secondary,
  .page-slots__btn-play {
    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-slots__hero-image {
    max-height: 300px;
  }
  .page-slots__container,
  .page-slots__section-spacing {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-slots img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-slots__feature-icon,
  .page-slots__game-image,
  .page-slots__promo-image {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
  .page-slots__features-grid,
  .page-slots__game-cards-grid,
  .page-slots__promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-slots__how-to-play-grid {
    grid-template-columns: 1fr;
  }
  .page-slots__how-to-play-steps li::before {
    position: relative;
    left: auto;
    top: auto;
    margin-right: 10px;
  }
  .page-slots__how-to-play-steps li {
    padding-left: 0;
    display: flex;
    align-items: flex-start;
  }
  .page-slots__how-to-play-steps li h3 {
    margin-top: 0;
  }
  .page-slots__how-to-play-steps ol {
    padding-left: 0;
  }
  .page-slots__faq-question {
    padding: 15px 20px;
  }
  .page-slots__faq-answer {
    padding: 0 20px 15px 20px;
  }
}