/* style/slot-games-high-payout-recommendations.css */
.page-slot-games-high-payout-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: #FFFFFF; /* Custom background for content area */
}

.page-slot-games-high-payout-recommendations__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-slot-games-high-payout-recommendations__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is below header */
  box-sizing: border-box;
}

.page-slot-games-high-payout-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-slot-games-high-payout-recommendations__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.page-slot-games-high-payout-recommendations__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

.page-slot-games-high-payout-recommendations__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFF00; /* Yellow for prominence */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games-high-payout-recommendations__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-slot-games-high-payout-recommendations__hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* General Buttons */
.page-slot-games-high-payout-recommendations__btn-primary,
.page-slot-games-high-payout-recommendations__btn-secondary,
.page-slot-games-high-payout-recommendations__btn-play,
.page-slot-games-high-payout-recommendations__btn-claim {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-slot-games-high-payout-recommendations__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-slot-games-high-payout-recommendations__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-slot-games-high-payout-recommendations__btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-slot-games-high-payout-recommendations__btn-secondary:hover {
  background-color: #FFFFFF;
  color: #017439;
}

.page-slot-games-high-payout-recommendations__btn-play,
.page-slot-games-high-payout-recommendations__btn-claim {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
  padding: 10px 20px;
}

.page-slot-games-high-payout-recommendations__btn-play:hover,
.page-slot-games-high-payout-recommendations__btn-claim:hover {
  background-color: #005a2d;
  border-color: #005a2d;
}

/* Section Titles */
.page-slot-games-high-payout-recommendations__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
  font-weight: bold;
}

.page-slot-games-high-payout-recommendations__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

/* Why nuhu90 Section */
.page-slot-games-high-payout-recommendations__why-nuhu90-section {
  padding: 60px 20px;
}

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

.page-slot-games-high-payout-recommendations__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-slot-games-high-payout-recommendations__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 15px;
}

/* Top Games Section */
.page-slot-games-high-payout-recommendations__top-games-section {
  padding: 60px 20px;
}

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

.page-slot-games-high-payout-recommendations__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-slot-games-high-payout-recommendations__game-title {
  font-size: 1.4em;
  color: #017439;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-slot-games-high-payout-recommendations__game-title a {
  color: #017439;
  text-decoration: none;
}

.page-slot-games-high-payout-recommendations__game-title a:hover {
  text-decoration: underline;
}

.page-slot-games-high-payout-recommendations__game-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-slot-games-high-payout-recommendations__btn-play {
  margin: 0 15px 20px;
  align-self: center;
  width: calc(100% - 30px);
}

.page-slot-games-high-payout-recommendations__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games-high-payout-recommendations__cta-bottom p {
  font-size: 1.2em;
  margin-bottom: 20px;
  color: #555555;
}

/* Tips Section */
.page-slot-games-high-payout-recommendations__tips-section {
  padding: 60px 20px;
  background-color: #f0fdf5;
}

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

.page-slot-games-high-payout-recommendations__tip-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-slot-games-high-payout-recommendations__tip-title {
  font-size: 1.4em;
  color: #017439;
  margin-bottom: 15px;
}

/* Safety Section */
.page-slot-games-high-payout-recommendations__safety-section {
  padding: 60px 20px;
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
}

.page-slot-games-high-payout-recommendations__safety-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__safety-text {
  flex: 1;
}

.page-slot-games-high-payout-recommendations__safety-subtitle {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 10px;
  color: #FFFF00; /* Yellow for prominence */
}

.page-slot-games-high-payout-recommendations__safety-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Promotions Section */
.page-slot-games-high-payout-recommendations__promotions-section {
  padding: 60px 20px;
}

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

.page-slot-games-high-payout-recommendations__promotion-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-slot-games-high-payout-recommendations__promotion-title {
  font-size: 1.4em;
  color: #017439;
  margin: 20px 15px 10px;
  flex-grow: 1;
}

.page-slot-games-high-payout-recommendations__promotion-title a {
  color: #017439;
  text-decoration: none;
}

.page-slot-games-high-payout-recommendations__promotion-title a:hover {
  text-decoration: underline;
}

.page-slot-games-high-payout-recommendations__promotion-description {
  font-size: 0.95em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-slot-games-high-payout-recommendations__btn-claim {
  margin: 0 15px 20px;
  align-self: center;
  width: calc(100% - 30px);
}

/* FAQ Section */
.page-slot-games-high-payout-recommendations__faq-section {
  padding: 60px 20px;
  background-color: #f0fdf5;
}

.page-slot-games-high-payout-recommendations__faq-list {
  margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-slot-games-high-payout-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  background-color: #e6ffe6;
  border-bottom: 1px solid #d4ead4;
}

.page-slot-games-high-payout-recommendations__faq-question:hover {
  background-color: #d4ead4;
}

.page-slot-games-high-payout-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-slot-games-high-payout-recommendations__faq-item.active .page-slot-games-high-payout-recommendations__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-high-payout-recommendations__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-slot-games-high-payout-recommendations__faq-item.active .page-slot-games-high-payout-recommendations__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 20px !important;
}

/* Final CTA Section */
.page-slot-games-high-payout-recommendations__cta-final-section {
  padding: 60px 20px;
  background-color: #017439; /* Brand primary color */
  color: #FFFFFF; /* White text for dark background */
  text-align: center;
}

.page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__section-title {
  color: #FFFF00; /* Yellow for prominence */
}

.page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__section-intro {
  color: #FFFFFF;
}

.page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-high-payout-recommendations__hero-title {
    font-size: 2.8em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-high-payout-recommendations__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-slot-games-high-payout-recommendations__hero-title {
    font-size: 2.2em;
  }

  .page-slot-games-high-payout-recommendations__hero-description {
    font-size: 1em;
  }

  .page-slot-games-high-payout-recommendations__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-high-payout-recommendations__btn-primary,
  .page-slot-games-high-payout-recommendations__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-high-payout-recommendations__section-title {
    font-size: 2em;
  }

  .page-slot-games-high-payout-recommendations__safety-content {
    flex-direction: column;
  }

  .page-slot-games-high-payout-recommendations__safety-image {
    max-width: 100%;
    order: -1; /* Image appears above text on mobile */
  }

  /* Mobile specific image, video, button, and container styles */
  .page-slot-games-high-payout-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-high-payout-recommendations video,
  .page-slot-games-high-payout-recommendations__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-high-payout-recommendations__section,
  .page-slot-games-high-payout-recommendations__card,
  .page-slot-games-high-payout-recommendations__container,
  .page-slot-games-high-payout-recommendations__video-section,
  .page-slot-games-high-payout-recommendations__video-container,
  .page-slot-games-high-payout-recommendations__video-wrapper,
  .page-slot-games-high-payout-recommendations__cta-buttons,
  .page-slot-games-high-payout-recommendations__button-group,
  .page-slot-games-high-payout-recommendations__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  .page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__btn-primary,
  .page-slot-games-high-payout-recommendations__cta-final-section .page-slot-games-high-payout-recommendations__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-slot-games-high-payout-recommendations__faq-question {
    font-size: 1.1em;
  }

  .page-slot-games-high-payout-recommendations__faq-answer p {
    font-size: 0.9em;
  }
}

@media (max-width: 480px) {
  .page-slot-games-high-payout-recommendations__hero-title {
    font-size: 1.8em;
  }

  .page-slot-games-high-payout-recommendations__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-high-payout-recommendations__hero-section {
    height: 400px;
  }
}