/* style/slot-games-popular-recommendations.css */

/* Base styles for the page content */
.page-slot-games-popular-recommendations {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #000000; /* Matching body background from shared.css */
}

/* Section styling */
.page-slot-games-popular-recommendations__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for first section */
  background-color: #000000; /* Ensure dark background for hero */
  color: #ffffff;
}

.page-slot-games-popular-recommendations__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-height: 700px; /* Limit hero image height */
}

.page-slot-games-popular-recommendations__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-slot-games-popular-recommendations__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-slot-games-popular-recommendations__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-slot-games-popular-recommendations__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.page-slot-games-popular-recommendations__btn-primary,
.page-slot-games-popular-recommendations__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  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;
}

.page-slot-games-popular-recommendations__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-slot-games-popular-recommendations__btn-primary:hover {
  background-color: #1a7bb0;
  border-color: #1a7bb0;
}

.page-slot-games-popular-recommendations__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

.page-slot-games-popular-recommendations__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for video section */
  background-color: #000000;
  color: #ffffff;
}

.page-slot-games-popular-recommendations__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-slot-games-popular-recommendations__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin-bottom: 20px;
}

.page-slot-games-popular-recommendations__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  cursor: pointer;
}

.page-slot-games-popular-recommendations__video-caption {
  text-align: center;
  font-style: italic;
  margin-top: 10px;
  color: #f0f0f0;
}

.page-slot-games-popular-recommendations__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #000000; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-slot-games-popular-recommendations__section-title {
  font-size: clamp(1.8em, 3vw, 2.5em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__content-area p,
.page-slot-games-popular-recommendations__content-area li {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-slot-games-popular-recommendations__feature-grid,
.page-slot-games-popular-recommendations__game-list,
.page-slot-games-popular-recommendations__steps-grid,
.page-slot-games-popular-recommendations__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-slot-games-popular-recommendations__feature-card,
.page-slot-games-popular-recommendations__game-card,
.page-slot-games-popular-recommendations__step-card,
.page-slot-games-popular-recommendations__promotion-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter card background */
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-slot-games-popular-recommendations__feature-icon,
.page-slot-games-popular-recommendations__step-icon,
.page-slot-games-popular-recommendations__game-thumbnail,
.page-slot-games-popular-recommendations__promotion-thumbnail {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-slot-games-popular-recommendations__game-thumbnail,
.page-slot-games-popular-recommendations__promotion-thumbnail {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
}

.page-slot-games-popular-recommendations__feature-title,
.page-slot-games-popular-recommendations__game-title,
.page-slot-games-popular-recommendations__step-title,
.page-slot-games-popular-recommendations__promotion-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-slot-games-popular-recommendations__game-title a {
  color: #26A9E0;
  text-decoration: none;
}

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

.page-slot-games-popular-recommendations__btn-small {
  display: inline-block;
  padding: 10px 20px;
  margin-top: 15px;
  background-color: #EA7C07; /* Login color for small buttons */
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-popular-recommendations__btn-small:hover {
  background-color: #c46405;
}

.page-slot-games-popular-recommendations__tips-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 40px;
}

.page-slot-games-popular-recommendations__tips-list li {
  margin-bottom: 10px;
  color: #f0f0f0;
}

.page-slot-games-popular-recommendations__tips-list li strong {
  color: #26A9E0;
}

.page-slot-games-popular-recommendations__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-slot-games-popular-recommendations__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.page-slot-games-popular-recommendations__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  color: #ffffff;
  outline: none;
}

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

.page-slot-games-popular-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-slot-games-popular-recommendations__faq-qtext {
  color: #26A9E0;
}

.page-slot-games-popular-recommendations__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
}

.page-slot-games-popular-recommendations__faq-answer {
  padding: 0 20px 20px;
  color: #f0f0f0;
}

.page-slot-games-popular-recommendations__call-to-action {
  text-align: center;
  padding: 60px 20px;
  background-color: #26A9E0; /* Brand color background */
  color: #ffffff;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-slot-games-popular-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-slot-games-popular-recommendations__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games-popular-recommendations__hero-content {
    padding: 15px;
  }

  .page-slot-games-popular-recommendations__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-slot-games-popular-recommendations__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-slot-games-popular-recommendations__btn-primary,
  .page-slot-games-popular-recommendations__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
  }

  .page-slot-games-popular-recommendations__video-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-slot-games-popular-recommendations__video-container,
  .page-slot-games-popular-recommendations__video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    padding: 0 15px;
  }

  .page-slot-games-popular-recommendations__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-popular-recommendations__content-area {
    padding: 30px 15px;
  }

  .page-slot-games-popular-recommendations__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 20px;
  }

  .page-slot-games-popular-recommendations__feature-grid,
  .page-slot-games-popular-recommendations__game-list,
  .page-slot-games-popular-recommendations__steps-grid,
  .page-slot-games-popular-recommendations__promotion-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .page-slot-games-popular-recommendations__feature-card,
  .page-slot-games-popular-recommendations__game-card,
  .page-slot-games-popular-recommendations__step-card,
  .page-slot-games-popular-recommendations__promotion-card {
    padding: 20px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-slot-games-popular-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-slot-games-popular-recommendations__btn-small {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.9em;
  }

  .page-slot-games-popular-recommendations__faq-item {
    margin-bottom: 10px;
  }

  .page-slot-games-popular-recommendations__faq-item summary {
    padding: 15px;
    font-size: 1em;
  }

  .page-slot-games-popular-recommendations__faq-answer {
    padding: 0 15px 15px;
  }

  .page-slot-games-popular-recommendations__call-to-action {
    padding: 40px 15px;
  }
}