.page-slot-games {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #1a1a1a; /* Inherited from body, but good to be explicit for main content */
}

.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;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-slot-games__section-subtitle {
  font-size: 1.2em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
}

/* Hero Section */
.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  color: #ffffff;
}

.page-slot-games__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-slot-games__hero-section .page-slot-games__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFFFFF; /* Ensure high contrast */
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* Buttons */
.page-slot-games__btn-primary,
.page-slot-games__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 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-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-primary:hover {
  background-color: #1f8ac7;
  border-color: #1f8ac7;
}

.page-slot-games__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-slot-games__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-slot-games__inline-link {
  color: #26A9E0;
  text-decoration: underline;
  font-weight: bold;
}

.page-slot-games__inline-link:hover {
  color: #1f8ac7;
}

/* Sections */
.page-slot-games__introduction-section,
.page-slot-games__download-guide-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section {
  padding: 60px 0;
}

.page-slot-games__game-types-section,
.page-slot-games__strategy-section,
.page-slot-games__features-section,
.page-slot-games__cta-section {
  padding: 60px 0;
  background-color: #1a1a1a; /* Ensure dark background for these sections */
}

.page-slot-games__light-bg {
  background-color: #2e2e2e; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

.page-slot-games__dark-bg {
  background-color: #1a1a1a;
  color: #ffffff;
}

.page-slot-games__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-slot-games__text-block {
  flex: 1;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-slot-games__text-block p {
  margin-bottom: 15px;
}

.page-slot-games__image-block {
  flex: 1;
  text-align: center;
}

.page-slot-games__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Game Grid */
.page-slot-games__game-grid,
.page-slot-games__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__game-card,
.page-slot-games__promotion-card {
  background-color: #2e2e2e; /* Light dark background for cards */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games__game-card:hover,
.page-slot-games__promotion-card:hover {
  transform: translateY(-10px);
}

.page-slot-games__game-card img,
.page-slot-games__promotion-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

.page-slot-games__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__card-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Steps Grid */
.page-slot-games__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__step-card {
  background-color: #1a1a1a; /* Dark background for steps */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games__step-card .page-slot-games__card-title {
  color: #FFFFFF; /* White title for dark background */
  font-size: 1.3em;
}

.page-slot-games__step-card .page-slot-games__card-description {
  color: #e0e0e0;
}

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

/* Strategy Section */
.page-slot-games__strategy-list {
  list-style: none;
  padding: 30px;
  margin-top: 40px;
  background-color: #2e2e2e; /* Light dark background for list */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games__strategy-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  padding-left: 25px;
  position: relative;
}

.page-slot-games__strategy-list li::before {
  content: '✓';
  color: #26A9E0;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.page-slot-games__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px; /* Enforce min size */
  object-fit: cover;
}

/* Features Section */
.page-slot-games__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games__feature-item {
  background-color: #2e2e2e; /* Light dark background for features */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.page-slot-games__feature-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-slot-games__feature-description {
  font-size: 1em;
  color: #e0e0e0;
}

/* Video Section */
.page-slot-games__video-section {
  padding: 60px 0;
  text-align: center;
  background-color: #1a1a1a; /* Dark background */
}

.page-slot-games__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Max width for video container */
  margin: 40px auto 20px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-slot-games__video {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
}

.page-slot-games__video-caption {
  color: #e0e0e0;
  font-size: 1em;
  margin-top: 15px;
}

/* FAQ Section */
.page-slot-games__faq-list {
  margin-top: 40px;
}

.page-slot-games__faq-item {
  background-color: #2e2e2e; /* Light dark background for FAQ items */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-slot-games__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0; /* Brand color for questions */
  cursor: pointer;
  background-color: #1a1a1a; /* Darker background for question */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games__faq-question:hover {
  background-color: #262626;
}

.page-slot-games__faq-qtext {
  flex-grow: 1;
}

.page-slot-games__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff; /* White toggle for contrast */
}

.page-slot-games__faq-item[open] .page-slot-games__faq-question {
  border-bottom: 1px solid #26A9E0;
}