/* style/slot-games-high-payout-recommendations.css */
.page-slot-games-high-payout-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-slot-games-high-payout-recommendations__section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-games-high-payout-recommendations__dark-bg {
  background-color: #017439; /* Brand primary color for dark sections */
  color: #ffffff;
}

.page-slot-games-high-payout-recommendations__light-bg {
  background-color: #ffffff; /* Auxiliary color for light sections */
  color: #333333; /* Dark text for light background */
}

.page-slot-games-high-payout-recommendations__dark-text {
  color: #333333;
}

.page-slot-games-high-payout-recommendations__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__section-title {
  color: #017439;
  text-shadow: none;
}

.page-slot-games-high-payout-recommendations__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__text-block {
  color: #333333;
}

.page-slot-games-high-payout-recommendations__text-block a {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}

.page-slot-games-high-payout-recommendations__light-bg .page-slot-games-high-payout-recommendations__text-block a {
  color: #017439; /* Brand color for links on light background */
}

/* Hero Section */
.page-slot-games-high-payout-recommendations__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.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;
  text-align: center;
  padding: 20px;
}

.page-slot-games-high-payout-recommendations__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-slot-games-high-payout-recommendations__hero-description {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

/* Buttons */
.page-slot-games-high-payout-recommendations__btn-primary,
.page-slot-games-high-payout-recommendations__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, transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.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;
  transform: translateY(-2px);
}

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

.page-slot-games-high-payout-recommendations__btn-secondary:hover {
  background-color: #005a2c;
  transform: translateY(-2px);
}

/* Image Wrapper */
.page-slot-games-high-payout-recommendations__image-wrapper {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-high-payout-recommendations__content-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-slot-games-high-payout-recommendations__card {
  background-color: #ffffff; /* White background for cards */
  color: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-slot-games-high-payout-recommendations__card:hover {
  transform: translateY(-5px);
}

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

.page-slot-games-high-payout-recommendations__card-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-slot-games-high-payout-recommendations__card-image {
  margin-top: 20px;
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

/* Top Slots Grid */
.page-slot-games-high-payout-recommendations__slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-high-payout-recommendations__slot-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
}

.page-slot-games-high-payout-recommendations__slot-item:hover {
  transform: translateY(-5px);
}

.page-slot-games-high-payout-recommendations__slot-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-slot-games-high-payout-recommendations__slot-title {
  font-size: 1.3em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

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

.page-slot-games-high-payout-recommendations__slot-description {
  font-size: 0.95em;
  color: #f0f0f0;
  flex-grow: 1; /* Pushes content to bottom */
}

.page-slot-games-high-payout-recommendations__cta-wrapper {
  margin-top: 40px;
}

/* Tips List */
.page-slot-games-high-payout-recommendations__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-high-payout-recommendations__tips-list li {
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-high-payout-recommendations__tips-list li strong {
  color: #FFFF00;
}

/* Video Section */
.page-slot-games-high-payout-recommendations__video-section {
  position: relative;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.page-slot-games-high-payout-recommendations__video-link-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-slot-games-high-payout-recommendations__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-slot-games-high-payout-recommendations__video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.page-slot-games-high-payout-recommendations__video-link-wrapper:hover .page-slot-games-high-payout-recommendations__video-play-overlay {
  opacity: 0;
}

.page-slot-games-high-payout-recommendations__video-play-icon {
  font-size: 4em;
  color: #FFFFFF;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

/* Download Steps */
.page-slot-games-high-payout-recommendations__download-steps {
  list-style: none;
  counter-reset: download-step;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-games-high-payout-recommendations__download-steps li {
  margin-bottom: 20px;
  position: relative;
  padding-left: 40px;
  font-size: 1.1em;
  color: #333333;
}

.page-slot-games-high-payout-recommendations__download-steps li::before {
  counter-increment: download-step;
  content: "Bước " counter(download-step) ":";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: #017439;
  font-size: 1.2em;
}

.page-slot-games-high-payout-recommendations__download-steps li ul {
  list-style: disc;
  margin-top: 10px;
  padding-left: 20px;
  font-size: 0.95em;
  color: #333333;
}

.page-slot-games-high-payout-recommendations__download-steps li ul li {
  padding-left: 0;
  margin-bottom: 5px;
}

.page-slot-games-high-payout-recommendations__download-steps li ul li::before {
  content: none;
}

.page-slot-games-high-payout-recommendations__image-wrapper--mobile-app {
  max-width: 400px;
  margin-top: 50px;
}

/* FAQ Section */
.page-slot-games-high-payout-recommendations__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

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

.page-slot-games-high-payout-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #017439; /* Brand primary color for FAQ questions */
  color: #FFFFFF;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.page-slot-games-high-payout-recommendations__faq-question::-webkit-details-marker {
  display: none;
}

.page-slot-games-high-payout-recommendations__faq-item summary {
  list-style: none;
}

.page-slot-games-high-payout-recommendations__faq-item summary::-webkit-details-marker {
  display: none;
}

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

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

.page-slot-games-high-payout-recommendations__faq-answer {
  padding: 20px 25px;
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for answer */
  color: #f0f0f0;
  font-size: 1em;
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-slot-games-high-payout-recommendations__faq-answer a {
  color: #FFFF00; /* Yellow for links on dark background */
  text-decoration: underline;
}

/* Final CTA Section */
.page-slot-games-high-payout-recommendations__cta-final {
  padding: 80px 0;
}

.page-slot-games-high-payout-recommendations__cta-final .page-slot-games-high-payout-recommendations__cta-buttons {
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-slot-games-high-payout-recommendations__hero-section {
    height: auto;
    min-height: 600px;
  }
  .page-slot-games-high-payout-recommendations__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-slot-games-high-payout-recommendations__hero-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-slot-games-high-payout-recommendations__hero-cta-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: 300px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-slot-games-high-payout-recommendations__section {
    padding: 40px 0;
  }
  .page-slot-games-high-payout-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-high-payout-recommendations__text-block {
    font-size: 0.95em;
  }

  /* Mobile image responsiveness */
  .page-slot-games-high-payout-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile video responsiveness */
  .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;
  }

  /* Mobile container responsiveness */
  .page-slot-games-high-payout-recommendations__container,
  .page-slot-games-high-payout-recommendations__image-wrapper,
  .page-slot-games-high-payout-recommendations__video-section,
  .page-slot-games-high-payout-recommendations__video-link-wrapper,
  .page-slot-games-high-payout-recommendations__hero-cta-buttons,
  .page-slot-games-high-payout-recommendations__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-slot-games-high-payout-recommendations__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Adjust for mobile header offset */
  }

  .page-slot-games-high-payout-recommendations__advantages-grid,
  .page-slot-games-high-payout-recommendations__slots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-slot-games-high-payout-recommendations__card,
  .page-slot-games-high-payout-recommendations__slot-item {
    padding: 20px;
  }

  .page-slot-games-high-payout-recommendations__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slot-games-high-payout-recommendations__faq-answer {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  .page-slot-games-high-payout-recommendations__tips-list li {
    font-size: 1em;
  }
  .page-slot-games-high-payout-recommendations__download-steps li {
    font-size: 1em;
  }
}

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