/* style/n-h-jackpot-games.css */

:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #1a1a2e;
  --card-background: #ffffff;
  --border-color: #e0e0e0;
}

.page-n-h-jackpot-games {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-light);
}

.page-n-h-jackpot-games .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-n-h-jackpot-games .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  font-weight: bold;
}

.page-n-h-jackpot-games .cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-n-h-jackpot-games .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-n-h-jackpot-games .secondary-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-n-h-jackpot-games .secondary-button:hover {
  background-color: #000066; /* Slightly darker dark blue */
}

.page-n-h-jackpot-games .text-center {
  text-align: center;
}

.page-n-h-jackpot-games .internal-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-n-h-jackpot-games .internal-link:hover {
  text-decoration: underline;
}

/* Banner Section */
.page-n-h-jackpot-games .banner-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.page-n-h-jackpot-games .banner-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
}

.page-n-h-jackpot-games .banner-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-n-h-jackpot-games .banner-content {
  position: relative;
  z-index: 1;
  color: var(--text-color-light);
  max-width: 800px;
}

.page-n-h-jackpot-games .banner-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: var(--primary-color); 
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h-jackpot-games .banner-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-color-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-n-h-jackpot-games .banner-content .cta-button {
  padding: 18px 40px;
  font-size: 1.3em;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-n-h-jackpot-games .banner-content .cta-button:hover {
  background-color: #e6c200;
}

/* Introduction Section */
.page-n-h-jackpot-games .introduction-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-n-h-jackpot-games .introduction-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

/* Why W888 Section */
.page-n-h-jackpot-games .why-w888-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-n-h-jackpot-games .why-w888-section .section-title {
  color: var(--primary-color);
}

.page-n-h-jackpot-games .why-w888-section p {
  text-align: justify;
}

.page-n-h-jackpot-games .why-w888-section .internal-link {
  color: var(--primary-color);
}

.page-n-h-jackpot-games .grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-n-h-jackpot-games .feature-card {
  background-color: #2a2a4a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-n-h-jackpot-games .feature-card:hover {
  transform: translateY(-5px);
  background-color: #3a3a5a;
}

.page-n-h-jackpot-games .feature-card .card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Subtle glow for icons */
}

.page-n-h-jackpot-games .feature-card .card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-n-h-jackpot-games .feature-card p {
  font-size: 1em;
  color: #cccccc;
}

/* Games Showcase Section */
.page-n-h-jackpot-games .games-showcase-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-n-h-jackpot-games .games-showcase-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: center;
}

.page-n-h-jackpot-games .game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h-jackpot-games .game-card {
  background-color: var(--card-background);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot-games .game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot-games .game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-n-h-jackpot-games .game-card .game-title {
  font-size: 1.4em;
  color: var(--secondary-color);
  margin: 15px 10px 10px;
  font-weight: bold;
}

.page-n-h-jackpot-games .game-card .card-link {
  color: var(--secondary-color);
  text-decoration: none;
}

.page-n-h-jackpot-games .game-card .card-link:hover {
  text-decoration: underline;
}

.page-n-h-jackpot-games .game-card .game-description {
  font-size: 0.95em;
  color: var(--text-color-dark);
  padding: 0 15px 15px;
  min-height: 90px; /* Ensure consistent card height */
}

.page-n-h-jackpot-games .play-now-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-n-h-jackpot-games .play-now-button:hover {
  background-color: #e6c200;
}

.page-n-h-jackpot-games .more-games-text {
  margin-top: 40px;
  font-size: 1.1em;
}

/* How It Works Section */
.page-n-h-jackpot-games .how-it-works-section {
  padding: 60px 0;
  background-color: #e8e8e8;
}

.page-n-h-jackpot-games .how-it-works-section p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

/* Tips & Strategies Section */
.page-n-h-jackpot-games .tips-strategies-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-n-h-jackpot-games .tips-strategies-section .section-title {
  color: var(--primary-color);
}

.page-n-h-jackpot-games .tips-strategies-section .grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h-jackpot-games .tip-item {
  background-color: #2a2a4a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-n-h-jackpot-games .tip-item .tip-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-n-h-jackpot-games .tip-item h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-n-h-jackpot-games .tip-item p {
  font-size: 1em;
  color: #cccccc;
  text-align: justify;
}

.page-n-h-jackpot-games .disclaimer-text {
  margin-top: 40px;
  font-size: 0.95em;
  text-align: center;
  color: #ccc;
}

/* Promotions Section */
.page-n-h-jackpot-games .promotions-section {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-n-h-jackpot-games .promotions-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-n-h-jackpot-games .promotion-list {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 0;
  font-size: 1.1em;
  color: var(--text-color-dark);
}

.page-n-h-jackpot-games .promotion-list li {
  margin-bottom: 10px;
}

.page-n-h-jackpot-games .promotion-list li strong {
  color: var(--secondary-color);
}

/* Mobile Experience Section */
.page-n-h-jackpot-games .mobile-experience-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-n-h-jackpot-games .mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-n-h-jackpot-games .mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-n-h-jackpot-games .mobile-text p {
  font-size: 1.1em;
  margin-bottom: 15px;
  text-align: justify;
}

.page-n-h-jackpot-games .mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-n-h-jackpot-games .mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-n-h-jackpot-games .faq-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-color-light);
}

.page-n-h-jackpot-games .faq-section .section-title {
  color: var(--primary-color);
}

.page-n-h-jackpot-games .faq-list {
  margin-top: 40px;
}

.page-n-h-jackpot-games .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #2a2a4a;
}

.page-n-h-jackpot-games .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.page-n-h-jackpot-games .faq-question:hover {
  background: #000066;
}

.page-n-h-jackpot-games .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-n-h-jackpot-games .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--primary-color);
}

.page-n-h-jackpot-games .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-n-h-jackpot-games .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #2a2a4a;
  color: #cccccc;
  font-size: 1em;
}

.page-n-h-jackpot-games .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height */
  padding: 15px 25px;
}

.page-n-h-jackpot-games .faq-answer p {
  margin: 0;
  text-align: justify;
}

/* Contact CTA Section */
.page-n-h-jackpot-games .contact-cta-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  text-align: center;
}

.page-n-h-jackpot-games .contact-cta-section .section-title {
  color: var(--secondary-color);
}

.page-n-h-jackpot-games .contact-cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.page-n-h-jackpot-games .contact-cta-section .cta-button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 20px 50px;
  font-size: 1.4em;
}

.page-n-h-jackpot-games .contact-cta-section .cta-button:hover {
  background-color: #000066;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h-jackpot-games .banner-title {
    font-size: 2.8em;
  }
  .page-n-h-jackpot-games .banner-description {
    font-size: 1.1em;
  }
  .page-n-h-jackpot-games .section-title {
    font-size: 2em;
  }
  .page-n-h-jackpot-games .grid-3-col, .page-n-h-jackpot-games .game-cards-grid, .page-n-h-jackpot-games .grid-2-col {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-n-h-jackpot-games .mobile-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-n-h-jackpot-games .banner-title {
    font-size: 2.2em;
  }
  .page-n-h-jackpot-games .banner-description {
    font-size: 1em;
  }
  .page-n-h-jackpot-games .banner-content .cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-n-h-jackpot-games .section-title {
    font-size: 1.8em;
  }
  .page-n-h-jackpot-games .container {
    padding: 15px;
  }
  .page-n-h-jackpot-games .feature-card, .page-n-h-jackpot-games .game-card, .page-n-h-jackpot-games .tip-item {
    padding: 20px;
  }
  .page-n-h-jackpot-games .faq-question h3 {
    font-size: 1.1em;
  }
  .page-n-h-jackpot-games .faq-question, .page-n-h-jackpot-games .faq-answer {
    padding-left: 15px; 
    padding-right: 15px;
  }
  .page-n-h-jackpot-games .faq-item.active .faq-answer {
    padding: 10px 15px;
  }
  .page-n-h-jackpot-games .contact-cta-section .cta-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-n-h-jackpot-games .banner-title {
    font-size: 1.8em;
  }
  .page-n-h-jackpot-games .banner-description {
    font-size: 0.9em;
  }
  .page-n-h-jackpot-games .section-title {
    font-size: 1.5em;
  }
  .page-n-h-jackpot-games .grid-3-col, .page-n-h-jackpot-games .game-cards-grid, .page-n-h-jackpot-games .grid-2-col {
    grid-template-columns: 1fr;
  }
}