/* style/slot-games-jackpot-tips-and-hot-game-recommendations.css */

/* Base styles for the page */
.page-slot-games-jackpot-tips-and-hot-game-recommendations {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
  padding-top: var(--header-offset, 120px); /* Ensure content is below sticky header */
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button {
  display: inline-block;
  background: #FFD700; /* Gold button */
  color: #8B0000; /* Burgundy text */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  color: #5a0000;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button--secondary {
  background: #8B0000; /* Burgundy button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button--secondary:hover {
  background-color: #5a0000;
  color: #FFD700;
}

/* Hero Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #1a0000; /* Darker background for hero */
  overflow: hidden;
  padding: 40px 20px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  color: #ffffff;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefits-section {
  padding: 80px 20px;
  background-color: #0d0d0d; /* Dark background */
  text-align: center;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefit-item {
  background-color: rgba(139, 0, 0, 0.7); /* Translucent burgundy */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 200px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefit-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefit-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__benefit-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Tips Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__tips-section {
  padding: 80px 20px;
  background-color: #1a0000; /* Darker background */
  text-align: center;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__tips-container {
  max-width: 1000px;
  margin: 0 auto 50px auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__tip-item {
  background-color: rgba(255, 215, 0, 0.1); /* Light gold translucent */
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  color: #ffffff;
  border-left: 5px solid #FFD700;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__tip-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__tip-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-top: 30px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

/* Hot Games Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__hot-games-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
  text-align: center;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-card {
  background-color: rgba(139, 0, 0, 0.7); /* Translucent burgundy */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-title a:hover {
  text-decoration: underline;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-button {
  display: inline-block;
  background: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__game-button:hover {
  background-color: #e6c200;
}

/* Promotion Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__promo-section {
  padding: 80px 20px;
  background-color: #1a0000;
  text-align: center;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-bottom: 40px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

/* FAQ Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-section {
  padding: 80px 20px;
  background-color: #0d0d0d;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-item {
  background-color: rgba(139, 0, 0, 0.7); /* Translucent burgundy */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #8B0000; /* Burgundy background */
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-question:hover {
  background-color: #6a0000;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-heading {
  margin: 0;
  color: #FFD700;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-item.active .page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-toggle {
  transform: rotate(45deg);
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
  background-color: rgba(139, 0, 0, 0.5); /* Lighter translucent burgundy */
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-item.active .page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px;
}

/* CTA Bottom Section */
.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-bottom-section {
  padding: 80px 20px;
  background-color: #1a0000;
  text-align: center;
}

.page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-bottom-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-title {
    font-size: 3em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-description {
    font-size: 1.2em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__section-title {
    font-size: 2em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__benefits-grid,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__games-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-tips-and-hot-game-recommendations {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-section {
    min-height: 450px;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-title {
    font-size: 2.2em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-description {
    font-size: 1em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__section-title {
    font-size: 1.8em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__benefits-grid,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__games-grid {
    grid-template-columns: 1fr;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__benefit-item,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__game-card {
    padding: 20px;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__tip-title {
    font-size: 1.4em;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  /* Image responsive adaptation */
  .page-slot-games-jackpot-tips-and-hot-game-recommendations img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hero-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__benefits-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__tips-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__hot-games-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__promo-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__faq-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Video responsive adaptation (if any, though none explicitly in HTML) */
  .page-slot-games-jackpot-tips-and-hot-game-recommendations video,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__video-section,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__video-container,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }

  /* Button responsive adaptation */
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-button,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__game-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__button-group,
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-slot-games-jackpot-tips-and-hot-game-recommendations__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}