.page-slot-games {
  color: #333333; /* Dark text for light body background */
}

.page-slot-games__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #0047AB; /* Main brand color for hero background */
}

.page-slot-games__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
}

.page-slot-games__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-slot-games__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff; /* White text for dark blue background */
  max-width: 800px;
}

.page-slot-games__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-slot-games__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

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

.page-slot-games__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.page-slot-games__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #0047AB; /* Dark blue text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games__button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-slot-games__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.page-slot-games__button--secondary:hover {
  background-color: #FFD700;
  color: #0047AB;
  transform: translateY(-2px);
}

.page-slot-games__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-slot-games__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

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

.page-slot-games__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #0047AB; /* Main brand color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-slot-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slot-games__section-paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-slot-games__about-section,
.page-slot-games__popular-games-section,
.page-slot-games__strategy-section,
.page-slot-games__promotions-section,
.page-slot-games__faq-section,
.page-slot-games__cta-section {
  padding: 60px 0;
}

.page-slot-games__about-section {
  background-color: #f8f8f8;
}

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

.page-slot-games__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__feature-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-slot-games__feature-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #0047AB;
  margin-bottom: 15px;
}

.page-slot-games__feature-description {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

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

.page-slot-games__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-slot-games__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-slot-games__game-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #0047AB;
  margin: 20px 15px 10px;
}

.page-slot-games__game-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-slot-games__game-card .page-slot-games__button {
  margin: 0 15px 20px;
  align-self: center;
}

.page-slot-games__strategy-section {
  background-color: #f0f4f8;
}

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

.page-slot-games__tip-item {
  background-color: #ffffff;
  border-left: 5px solid #0047AB; /* Accent border */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 25px;
  transition: transform 0.3s ease;
}

.page-slot-games__tip-item:hover {
  transform: translateY(-5px);
}

.page-slot-games__tip-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #0047AB;
  margin-bottom: 10px;
}

.page-slot-games__tip-description {
  font-size: 0.95em;
  line-height: 1.7;
  color: #555555;
}

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

.page-slot-games__cta-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #333333;
  font-weight: 500;
}

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

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

.page-slot-games__promo-card {
  background-color: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-slot-games__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-slot-games__promo-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #0047AB;
  margin: 20px 15px 10px;
}

.page-slot-games__promo-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-slot-games__promo-card .page-slot-games__button {
  margin: 0 15px 20px;
  align-self: center;
}

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

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

.page-slot-games__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
}

.page-slot-games__faq-question {
  font-size: 1.3em;
  font-weight: 600;
  color: #0047AB;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slot-games__faq-question::after {
  content: '+';
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slot-games__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-slot-games__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-slot-games__faq-answer a {
  color: #0047AB;
  text-decoration: underline;
}

.page-slot-games__cta-section {
  background-color: #0047AB;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-slot-games__cta-section .page-slot-games__section-title {
  color: #FFD700;
}

.page-slot-games__cta-section .page-slot-games__section-title::after {
  background-color: #FFD700;
}

.page-slot-games__cta-section .page-slot-games__section-paragraph {
  color: #f0f0f0;
  margin-bottom: 50px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slot-games__hero-title {
    font-size: 2.8em;
  }
  .page-slot-games__hero-description {
    font-size: 1.1em;
  }
  .page-slot-games__section-title {
    font-size: 2em;
  }
  .page-slot-games__section-paragraph {
    font-size: 1em;
  }
  .page-slot-games__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slot-games__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games__hero-section {
    padding-top: var(--header-offset, 200px); /* Mobile header offset */
  }
  .page-slot-games__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games__hero-description {
    font-size: 0.95em;
  }
  .page-slot-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__button {
    width: 100%;
    max-width: 280px;
  }
  .page-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-slot-games__section-paragraph {
    font-size: 0.9em;
  }
  .page-slot-games__features-grid,
  .page-slot-games__game-grid,
  .page-slot-games__tips-grid,
  .page-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games__game-image,
  .page-slot-games__promo-image {
    height: 180px;
  }
  .page-slot-games__faq-question {
    font-size: 1.1em;
  }
  .page-slot-games__faq-answer {
    font-size: 0.9em;
  }
  .page-slot-games__cta-section {
    padding: 60px 20px;
  }
  .page-slot-games__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slot-games__cta-actions .page-slot-games__button {
    max-width: 300px;
  }
}