.page-slot-games-jackpot-slots-explained {
  font-family: Arial, sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

.page-slot-games-jackpot-slots-explained__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-slot-games-jackpot-slots-explained__bg-dark {
  background-color: #1a2a44;
}

.page-slot-games-jackpot-slots-explained__hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A192F 0%, #1a2a44 100%);
}

.page-slot-games-jackpot-slots-explained__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-slot-games-jackpot-slots-explained__hero-content {
  position: relative;
  z-index: 1;
  color: #FFD700;
  padding: 20px;
  max-width: 800px;
}

.page-slot-games-jackpot-slots-explained__hero-title {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slot-games-jackpot-slots-explained__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-slot-games-jackpot-slots-explained__button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A192F;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slot-games-jackpot-slots-explained__button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-slot-games-jackpot-slots-explained__button--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-slot-games-jackpot-slots-explained__button--primary:hover {
  background-color: #e6c200;
}

.page-slot-games-jackpot-slots-explained__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-slot-games-jackpot-slots-explained__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-slot-games-jackpot-slots-explained__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-slot-games-jackpot-slots-explained__introduction-section,
.page-slot-games-jackpot-slots-explained__types-section,
.page-slot-games-jackpot-slots-explained__winning-section,
.page-slot-games-jackpot-slots-explained__advantages-section,
.page-slot-games-jackpot-slots-explained__why-choose-section,
.page-slot-games-jackpot-slots-explained__faq-section {
  padding: 60px 0;
}

.page-slot-games-jackpot-slots-explained__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-slot-games-jackpot-slots-explained__text--center {
  text-align: center;
}

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

.page-slot-games-jackpot-slots-explained__feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-slot-games-jackpot-slots-explained__feature-item:hover {
  transform: translateY(-10px);
}

.page-slot-games-jackpot-slots-explained__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-slot-games-jackpot-slots-explained__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slot-games-jackpot-slots-explained__feature-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-slot-games-jackpot-slots-explained__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-slot-games-jackpot-slots-explained__list li {
  background-color: #1a2a44;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-slots-explained__list-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-slots-explained__list-description {
  font-size: 1em;
  color: #B0B0B0;
}

.page-slot-games-jackpot-slots-explained__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.page-slot-games-jackpot-slots-explained__numbered-list li {
  counter-increment: item;
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
}

.page-slot-games-jackpot-slots-explained__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #0A192F;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-slot-games-jackpot-slots-explained__pros-cons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-jackpot-slots-explained__column-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-slot-games-jackpot-slots-explained__check-list,
.page-slot-games-jackpot-slots-explained__x-list {
  list-style: none;
  padding: 0;
}

.page-slot-games-jackpot-slots-explained__check-list li,
.page-slot-games-jackpot-slots-explained__x-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-slot-games-jackpot-slots-explained__check-list li::before {
  content: '✔';
  color: #4CAF50;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-slot-games-jackpot-slots-explained__x-list li::before {
  content: '✖';
  color: #F44336;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-slot-games-jackpot-slots-explained__button-group {
  text-align: center;
  margin-top: 50px;
}

.page-slot-games-jackpot-slots-explained__faq-item {
  background-color: #1a2a44;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-jackpot-slots-explained__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-jackpot-slots-explained__faq-answer {
  font-size: 1em;
  color: #B0B0B0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slot-games-jackpot-slots-explained__hero-title {
    font-size: 2.8em;
  }

  .page-slot-games-jackpot-slots-explained__hero-subtitle {
    font-size: 1.3em;
  }

  .page-slot-games-jackpot-slots-explained__section-title {
    font-size: 2em;
  }

  .page-slot-games-jackpot-slots-explained__pros-cons-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpot-slots-explained__hero-section {
    height: 400px;
  }

  .page-slot-games-jackpot-slots-explained__hero-title {
    font-size: 2.2em;
  }

  .page-slot-games-jackpot-slots-explained__hero-subtitle {
    font-size: 1.1em;
  }

  .page-slot-games-jackpot-slots-explained__button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-slot-games-jackpot-slots-explained__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-jackpot-slots-explained__features-grid {
    grid-template-columns: 1fr;
  }

  .page-slot-games-jackpot-slots-explained__list li,
  .page-slot-games-jackpot-slots-explained__numbered-list li,
  .page-slot-games-jackpot-slots-explained__check-list li,
  .page-slot-games-jackpot-slots-explained__x-list li {
    font-size: 0.95em;
  }

  .page-slot-games-jackpot-slots-explained__button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-slot-games-jackpot-slots-explained__button-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpot-slots-explained__hero-section {
    height: 350px;
  }

  .page-slot-games-jackpot-slots-explained__hero-title {
    font-size: 1.8em;
  }

  .page-slot-games-jackpot-slots-explained__hero-subtitle {
    font-size: 1em;
  }

  .page-slot-games-jackpot-slots-explained__button {
    padding: 10px 20px;
    font-size: 0.85em;
  }

  .page-slot-games-jackpot-slots-explained__section-title {
    font-size: 1.5em;
  }

  .page-slot-games-jackpot-slots-explained__feature-title,
  .page-slot-games-jackpot-slots-explained__list-title,
  .page-slot-games-jackpot-slots-explained__column-title,
  .page-slot-games-jackpot-slots-explained__faq-question {
    font-size: 1.3em;
  }

  .page-slot-games-jackpot-slots-explained__text,
  .page-slot-games-jackpot-slots-explained__feature-description,
  .page-slot-games-jackpot-slots-explained__list-description,
  .page-slot-games-jackpot-slots-explained__faq-answer {
    font-size: 0.9em;
  }
}