/* Base styles for the page-blog-slot-game-guide */
.page-blog-slot-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-blog-slot-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-slot-game-guide__section {
  padding: 40px 0;
  margin-bottom: 20px;
}

.page-blog-slot-game-guide__dark-section {
  background-color: #017439;
  color: #FFFFFF;
}

.page-blog-slot-game-guide__dark-section .page-blog-slot-game-guide__section-title,
.page-blog-slot-game-guide__dark-section .page-blog-slot-game-guide__text-block,
.page-blog-slot-game-guide__dark-section .page-blog-slot-game-guide__inline-link,
.page-blog-slot-game-guide__dark-section .page-blog-slot-game-guide__faq-qtext {
  color: #FFFFFF;
}

.page-blog-slot-game-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
  color: #017439;
}

.page-blog-slot-game-guide__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Using clamp for responsive H1 */
  font-weight: 800;
  text-align: center;
  color: #017439;
  line-height: 1.2;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-blog-slot-game-guide__hero-description {
  font-size: 1.2em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #333333;
}

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

.page-blog-slot-game-guide__inline-link {
  color: #017439;
  text-decoration: underline;
}

.page-blog-slot-game-guide__inline-link:hover {
  text-decoration: none;
}

/* Hero Section */
.page-blog-slot-game-guide__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  margin-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-blog-slot-game-guide__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-slot-game-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Cover for desktop to fill space */
  display: block;
}

.page-blog-slot-game-guide__hero-content {
  position: relative; /* Ensure content is above image if needed, but not overlaid */
  z-index: 10;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Solid background for text content */
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

/* CTA Buttons */
.page-blog-slot-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-blog-slot-game-guide__cta-buttons--bottom {
  margin-top: 40px;
}

.page-blog-slot-game-guide__btn-primary,
.page-blog-slot-game-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}