.page-jackpot {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0;
  background-color: #1A1A2E;
  line-height: 1.6;
}

.page-jackpot a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-jackpot a:hover {
  color: #DC143C;
}

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

.page-jackpot__hero-section {
  background: linear-gradient(135deg, #1A1A2E 0%, #301934 50%, #1A1A2E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-jackpot__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-jackpot__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
  line-height: 1.2;
}

.page-jackpot__hero-title a {
  color: inherit;
}

.page-jackpot__hero-subtitle {
  font-size: 1.5em;
  color: #FFFFFF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-jackpot__hero-button, .page-jackpot__cta-button {
  display: inline-block;
  background-color: #DC143C;
  color: #FFFFFF;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
}

.page-jackpot__hero-button:hover, .page-jackpot__cta-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-jackpot__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-jackpot__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(5px);
}

.page-jackpot__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-jackpot__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C;
  border-radius: 2px;
}

.page-jackpot__intro-section, .page-jackpot__how-it-works-section, .page-jackpot__games-section, .page-jackpot__strategy-section, .page-jackpot__security-section, .page-jackpot__detail-pages-section, .page-jackpot__faq-section, .page-jackpot__cta-section {
  padding: 80px 0;
  background-color: #1A1A2E;
}

.page-jackpot__intro-section p, .page-jackpot__how-it-works-section p, .page-jackpot__strategy-section p, .page-jackpot__security-section p, .page-jackpot__faq-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-jackpot__subsection-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-jackpot__how-it-works-section ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-jackpot__how-it-works-section li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-jackpot__image-full-width {
  width: 100%;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-jackpot__game-card {
  background-color: #2A2A3E;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-jackpot__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-jackpot__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-jackpot__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-jackpot__game-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-jackpot__game-button {
  display: inline-block;
  background-color: #DC143C;
  color: #FFFFFF;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-jackpot__game-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-jackpot__strategy-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-jackpot__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-jackpot__strategy-list li {
  background-color: #2A2A3E;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 60px;
  color: #E0E0E0;
  font-size: 1.1em;
}

.page-jackpot__strategy-list li::before {
  content: '✓';
  color: #FFD700;
  font-size: 1.8em;
  font-weight: bold;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.page-jackpot__image-right {
  float: right;
  margin: 0 0 20px 40px;
  width: 40%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #DC143C;
}

.page-jackpot__image-left {
  float: left;
  margin: 0 40px 20px 0;
  width: 40%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  border: 2px solid #FFD700;
}

.page-jackpot__security-section::after, .page-jackpot__strategy-section::after {
  content: '';
  display: table;
  clear: both;
}

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

.page-jackpot__detail-card {
  background-color: #2A2A3E;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-jackpot__detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.page-jackpot__detail-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-jackpot__detail-title a {
  color: inherit;
}

.page-jackpot__detail-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-jackpot__detail-button {
  display: inline-block;
  background-color: #DC143C;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-jackpot__detail-button:hover {
  background-color: #FFD700;
  color: #1A1A2E;
}

.page-jackpot__faq-item {
  background-color: #2A2A3E;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-jackpot__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-jackpot__faq-answer {
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-jackpot__cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #DC143C, #FFD700);
  color: #1A1A2E;
}

.page-jackpot__cta-section .page-jackpot__section-title {
  color: #1A1A2E;
  text-shadow: none;
}

.page-jackpot__cta-section .page-jackpot__section-title::after {
  background-color: #1A1A2E;
}

.page-jackpot__cta-section p {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #1A1A2E;
}

@media (max-width: 1024px) {
  .page-jackpot__hero-title {
    font-size: 3em;
  }
  .page-jackpot__hero-subtitle {
    font-size: 1.3em;
  }
  .page-jackpot__section-title {
    font-size: 2.2em;
  }
  .page-jackpot__image-right, .page-jackpot__image-left {
    width: 50%;
    margin: 0 20px 20px 20px;
  }
}

@media (max-width: 768px) {
  .page-jackpot__hero-section {
    padding: 80px 0;
  }
  .page-jackpot__hero-title {
    font-size: 2.5em;
  }
  .page-jackpot__hero-subtitle {
    font-size: 1.1em;
  }
  .page-jackpot__hero-button, .page-jackpot__cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-jackpot__section-title {
    font-size: 1.8em;
  }
  .page-jackpot__subsection-title {
    font-size: 1.6em;
  }
  .page-jackpot__intro-section, .page-jackpot__how-it-works-section, .page-jackpot__games-section, .page-jackpot__strategy-section, .page-jackpot__security-section, .page-jackpot__detail-pages-section, .page-jackpot__faq-section, .page-jackpot__cta-section {
    padding: 60px 0;
  }
  .page-jackpot__game-grid, .page-jackpot__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-jackpot__image-right, .page-jackpot__image-left {
    float: none;
    margin: 30px auto;
    width: 80%;
  }
  .page-jackpot__strategy-list li {
    padding-left: 45px;
  }
  .page-jackpot__strategy-list li::before {
    left: 15px;
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-jackpot__hero-title {
    font-size: 2em;
  }
  .page-jackpot__hero-subtitle {
    font-size: 1em;
  }
  .page-jackpot__section-title {
    font-size: 1.5em;
  }
  .page-jackpot__intro-section p, .page-jackpot__how-it-works-section p, .page-jackpot__strategy-section p, .page-jackpot__security-section p, .page-jackpot__faq-section p, .page-jackpot__how-it-works-section li, .page-jackpot__game-description, .page-jackpot__detail-description, .page-jackpot__faq-answer {
    font-size: 0.95em;
  }
  .page-jackpot__game-title, .page-jackpot__detail-title, .page-jackpot__faq-question {
    font-size: 1.4em;
  }
  .page-jackpot__hero-button, .page-jackpot__cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
}