/* style/n-h-jackpot-secrets.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #DC143C; /* Crimson */
  --dark-background: #1a1a1a; /* Dark background for contrast */
  --light-text: #ffffff; /* White text for dark backgrounds */
  --dark-text: #333333; /* Dark text for light backgrounds */
  --medium-gray: #f0f0f0;
  --border-color: #e0e0e0;
}

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

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

.page-n-h-jackpot-secrets .section-title {
  font-size: 36px;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
  padding-top: 20px;
}

.page-n-h-jackpot-secrets .section-intro p,
.page-n-h-jackpot-secrets .section-jackpot-types p,
.page-n-h-jackpot-secrets .section-strategies p,
.page-n-h-jackpot-secrets .section-game-tips p,
.page-n-h-jackpot-secrets .section-promotions p,
.page-n-h-jackpot-secrets .section-safety-support p,
.page-n-h-jackpot-secrets .section-cta-final p {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--dark-text);
}

.page-n-h-jackpot-secrets .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-n-h-jackpot-secrets .cta-button:hover {
  background: #a80f30;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-n-h-jackpot-secrets .secondary-button:hover {
  background: #ccb000;
  color: var(--dark-text);
}

.page-n-h-jackpot-secrets .large-button {
  padding: 20px 50px;
  font-size: 22px;
}

/* Hero Section */
.page-n-h-jackpot-secrets .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--dark-background) 0%, #3a3a3a 100%); /* Dark gradient background */
}

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

.page-n-h-jackpot-secrets .hero-image {
  width: 100%;
  margin-bottom: 30px;
  order: 1; /* Image first on mobile */
}

.page-n-h-jackpot-secrets .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-n-h-jackpot-secrets .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  order: 2; /* Content second on mobile */
}

.page-n-h-jackpot-secrets .hero-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h-jackpot-secrets .hero-description {
  font-size: 22px;
  color: var(--light-text);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

/* General Section Styling */
.page-n-h-jackpot-secrets section {
  padding: 80px 0;
}

.page-n-h-jackpot-secrets section:nth-of-type(odd) {
  background-color: var(--medium-gray);
}

.page-n-h-jackpot-secrets section:nth-of-type(even) {
  background-color: var(--light-text);
}

/* Section Intro */
.page-n-h-jackpot-secrets .section-intro .image-right {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.page-n-h-jackpot-secrets .section-intro .image-right img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Jackpot Types Section */
.page-n-h-jackpot-secrets .list-items {
  list-style: none;
  padding: 0;
}

.page-n-h-jackpot-secrets .list-items li {
  background: var(--light-text);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot-secrets .list-items li:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-n-h-jackpot-secrets .list-items h3 {
  color: var(--secondary-color);
  font-size: 24px;
  margin-bottom: 10px;
}

.page-n-h-jackpot-secrets .list-items p {
  font-size: 17px;
  color: var(--dark-text);
}

/* Strategies Section */
.page-n-h-jackpot-secrets .strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-n-h-jackpot-secrets .strategy-item {
  background: var(--light-text);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot-secrets .strategy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h-jackpot-secrets .strategy-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%; /* Make images circular */
  border: 3px solid var(--primary-color);
  padding: 10px;
}

.page-n-h-jackpot-secrets .strategy-item h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-n-h-jackpot-secrets .strategy-item p {
  font-size: 16px;
  color: var(--dark-text);
}

/* Game Tips Section */
.page-n-h-jackpot-secrets .game-tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-n-h-jackpot-secrets .game-tip-card {
  background: var(--light-text);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h-jackpot-secrets .game-tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-n-h-jackpot-secrets .game-tip-card img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
  border: 2px solid var(--secondary-color);
}

.page-n-h-jackpot-secrets .game-tip-card h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.page-n-h-jackpot-secrets .game-tip-card p {
  font-size: 16px;
  color: var(--dark-text);
}

/* Promotions Section */
.page-n-h-jackpot-secrets .list-promotions {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-n-h-jackpot-secrets .list-promotions li {
  background: var(--light-text);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}

.page-n-h-jackpot-secrets .list-promotions h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-n-h-jackpot-secrets .list-promotions p {
  font-size: 17px;
  color: var(--dark-text);
}

/* Safety & Support Section */
.page-n-h-jackpot-secrets .safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-n-h-jackpot-secrets .safety-item {
  background: var(--light-text);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-n-h-jackpot-secrets .safety-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  padding: 10px;
}

.page-n-h-jackpot-secrets .safety-item h3 {
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-n-h-jackpot-secrets .safety-item p {
  font-size: 16px;
  color: var(--dark-text);
}

/* FAQ Section */
.page-n-h-jackpot-secrets .faq-list {
  margin-top: 40px;
}

.page-n-h-jackpot-secrets .faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-n-h-jackpot-secrets .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: var(--light-text);
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  color: var(--dark-text);
}

.page-n-h-jackpot-secrets .faq-question:hover {
  background: var(--medium-gray);
}

.page-n-h-jackpot-secrets .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--dark-text);
}

.page-n-h-jackpot-secrets .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--secondary-color);
}

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

.page-n-h-jackpot-secrets .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-n-h-jackpot-secrets .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.page-n-h-jackpot-secrets .faq-answer p {
  font-size: 16px;
  color: var(--dark-text);
  margin: 0;
}

/* Final CTA Section */
.page-n-h-jackpot-secrets .section-cta-final {
  text-align: center;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff4d6a 100%);
  color: var(--light-text);
}

.page-n-h-jackpot-secrets .section-cta-final .section-title {
  color: var(--primary-color);
}

.page-n-h-jackpot-secrets .section-cta-final p {
  color: var(--light-text);
  font-size: 18px;
}

.page-n-h-jackpot-secrets .disclaimer {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 30px;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-n-h-jackpot-secrets .hero-container {
    flex-direction: row; /* Horizontal layout on desktop */
    gap: 50px;
    text-align: left;
  }
  
  .page-n-h-jackpot-secrets .hero-image {
    flex: 1;
    order: 2; /* Image second on desktop */
    margin-bottom: 0;
  }
  
  .page-n-h-jackpot-secrets .hero-content {
    flex: 1;
    order: 1; /* Content first on desktop */
    text-align: left;
  }

  .page-n-h-jackpot-secrets .hero-title {
    font-size: 56px;
  }

  .page-n-h-jackpot-secrets .hero-description {
    font-size: 24px;
    margin-left: 0;
    margin-right: 0;
  }

  .page-n-h-jackpot-secrets .section-intro p {
    max-width: 70%;
  }

  .page-n-h-jackpot-secrets .section-intro .image-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .page-n-h-jackpot-secrets .hero-section {
    padding: 40px 15px;
  }
  
  .page-n-h-jackpot-secrets .hero-title {
    font-size: 38px;
  }
  
  .page-n-h-jackpot-secrets .hero-description {
    font-size: 18px;
  }
  
  .page-n-h-jackpot-secrets .section-title {
    font-size: 28px;
  }
  
  .page-n-h-jackpot-secrets .section-intro .image-right {
    justify-content: center;
  }

  .page-n-h-jackpot-secrets .list-items h3,
  .page-n-h-jackpot-secrets .strategy-item h3,
  .page-n-h-jackpot-secrets .game-tip-card h3,
  .page-n-h-jackpot-secrets .list-promotions h3,
  .page-n-h-jackpot-secrets .safety-item h3 {
    font-size: 20px;
  }

  .page-n-h-jackpot-secrets .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  
  .page-n-h-jackpot-secrets .large-button {
    padding: 15px 40px;
    font-size: 18px;
  }

  .page-n-h-jackpot-secrets .faq-question h3 {
    font-size: 16px;
  }

  .page-n-h-jackpot-secrets .faq-toggle {
    font-size: 20px;
  }
}