/* style/slot-jackpots.css */
.page-slot-jackpots {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
}

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

.page-slot-jackpots section {
  padding: 60px 0;
  text-align: center;
}

.page-slot-jackpots section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.page-slot-jackpots h1,
.page-slot-jackpots h2 {
  color: #0A2342; /* Deep Blue */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-slot-jackpots h1 {
  font-size: 3em;
}

.page-slot-jackpots h2 {
  font-size: 2.5em;
}

.page-slot-jackpots h3 {
  color: #FFD700; /* Gold */
  font-size: 1.8em;
  margin-top: 20px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-slot-jackpots p {
  margin-bottom: 20px;
  color: #555555;
}

.page-slot-jackpots .cta-button,
.page-slot-jackpots .btn-secondary,
.page-slot-jackpots .btn-play {
  display: inline-block;
  padding: 15px 35px;
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Deep Blue */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.page-slot-jackpots .cta-button:hover,
.page-slot-jackpots .btn-secondary:hover,
.page-slot-jackpots .btn-play:hover {
  background-color: #e6c200; /* Darker Gold */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.page-slot-jackpots .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2342 0%, #3a5d8f 100%); /* Dark blue gradient */
  color: #ffffff;
}

.page-slot-jackpots .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-slot-jackpots .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-slot-jackpots .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-slot-jackpots .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-slot-jackpots .hero-content h1 {
  color: #FFD700; /* Gold */
  font-size: 3.8em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}

.page-slot-jackpots .hero-content p {
  color: #e0e0e0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Section Intro */
.page-slot-jackpots .section-intro {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-slot-jackpots .section-intro h2 {
  color: #0A2342;
}

.page-slot-jackpots .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}

.page-slot-jackpots .btn-secondary {
  background-color: #0A2342;
  color: #FFD700;
}

.page-slot-jackpots .btn-secondary:hover {
  background-color: #1a3a60;
  color: #FFD700;
}

/* Section Why Choose */
.page-slot-jackpots .section-why-choose {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-slot-jackpots .feature-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-slot-jackpots .feature-item img {
  width: 100%; /* Ensure images are large and fill space */
  max-width: 400px; /* Example max width */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-slot-jackpots .feature-item h3 {
  color: #0A2342;
  font-size: 1.6em;
}

.page-slot-jackpots .feature-item p {
  color: #666666;
  font-size: 1em;
}

/* Section Popular Games */
.page-slot-jackpots .section-popular-games {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-slot-jackpots .game-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.page-slot-jackpots .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-slot-jackpots .game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-slot-jackpots .game-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-slot-jackpots .game-card h3 a {
  color: #0A2342;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-slot-jackpots .game-card h3 a:hover {
  color: #FFD700;
}

.page-slot-jackpots .game-card p {
  font-size: 0.95em;
  color: #777777;
  margin-bottom: 15px;
}

/* Section How To Play */
.page-slot-jackpots .section-how-to-play {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-slot-jackpots .step-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-slot-jackpots .step-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-slot-jackpots .step-item h3 {
  color: #0A2342;
  font-size: 1.6em;
}

.page-slot-jackpots .step-item p {
  color: #666666;
  font-size: 1em;
}

/* Section Tips */
.page-slot-jackpots .section-tips {
  background-color: #f0f4f8;
  padding: 80px 0;
}

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

.page-slot-jackpots .tip-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
}

.page-slot-jackpots .tip-item img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px; /* Minimum size requirement */
  object-fit: cover;
}

.page-slot-jackpots .tip-item h3 {
  color: #0A2342;
  font-size: 1.6em;
}

.page-slot-jackpots .tip-item p {
  color: #666666;
  font-size: 1em;
}

/* Section Promotions */
.page-slot-jackpots .section-promotions {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-slot-jackpots .promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

.page-slot-jackpots .promo-list li {
  background-color: #f0f4f8;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-slot-jackpots .promo-list li strong {
  color: #0A2342;
}

/* Section FAQ */
.page-slot-jackpots .section-faq {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-slot-jackpots .faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-slot-jackpots .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slot-jackpots .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #0A2342; /* Deep Blue */
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-slot-jackpots .faq-question:hover {
  background: #1a3a60;
}

.page-slot-jackpots .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #ffffff;
}

.page-slot-jackpots .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
}

.page-slot-jackpots .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700;
}

.page-slot-jackpots .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #ffffff;
  color: #555555;
}

.page-slot-jackpots .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 25px;
  border-top: 1px solid #e0e0e0;
}

.page-slot-jackpots .faq-answer p {
  margin: 0;
}

/* Section Conclusion */
.page-slot-jackpots .section-conclusion {
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 0;
}

.page-slot-jackpots .section-conclusion h2 {
  color: #FFD700;
}

.page-slot-jackpots .section-conclusion p {
  color: #e0e0e0;
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-slot-jackpots .section-conclusion .cta-button {
  background-color: #FFD700;
  color: #0A2342;
}

.page-slot-jackpots .section-conclusion .cta-button:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-slot-jackpots h1 {
    font-size: 3em;
  }
  .page-slot-jackpots h2 {
    font-size: 2em;
  }
  .page-slot-jackpots h3 {
    font-size: 1.5em;
  }
  .page-slot-jackpots .hero-content h1 {
    font-size: 3em;
  }
}

@media (max-width: 768px) {
  .page-slot-jackpots section {
    padding: 40px 0;
  }
  .page-slot-jackpots h1 {
    font-size: 2.5em;
  }
  .page-slot-jackpots h2 {
    font-size: 1.8em;
  }
  .page-slot-jackpots h3 {
    font-size: 1.3em;
  }
  .page-slot-jackpots .hero-content h1 {
    font-size: 2.5em;
  }
  .page-slot-jackpots .hero-content p {
    font-size: 1em;
  }
  .page-slot-jackpots .cta-button,
  .page-slot-jackpots .btn-secondary,
  .page-slot-jackpots .btn-play {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slot-jackpots .features-grid,
  .page-slot-jackpots .game-cards-grid,
  .page-slot-jackpots .steps-grid,
  .page-slot-jackpots .tips-list {
    grid-template-columns: 1fr;
  }
  .page-slot-jackpots .feature-item,
  .page-slot-jackpots .game-card,
  .page-slot-jackpots .step-item,
  .page-slot-jackpots .tip-item {
    padding: 20px;
  }
  .page-slot-jackpots .game-card img {
    height: 180px;
  }
  .page-slot-jackpots .faq-question {
    padding: 15px 20px;
  }
  .page-slot-jackpots .faq-question h3 {
    font-size: 1.1em;
  }
  .page-slot-jackpots .faq-toggle {
    font-size: 20px;
  }
  .page-slot-jackpots .faq-answer {
    padding: 0 20px;
  }
  .page-slot-jackpots .faq-item.active .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-slot-jackpots h1 {
    font-size: 2em;
  }
  .page-slot-jackpots h2 {
    font-size: 1.5em;
  }
  .page-slot-jackpots .hero-content h1 {
    font-size: 2em;
  }
  .page-slot-jackpots .promo-list li {
    font-size: 1em;
    padding: 15px;
  }
}