/* style/slot-games-jackpots.css */
.page-slot-games-jackpots {
  font-family: 'Arial', sans-serif;
  color: #E5E5E5; /* Light grey for text on dark background */
  background-color: #1A1A1A; /* Main dark background */
  line-height: 1.6;
}

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

.page-slot-games-jackpots__section {
  padding: 80px 0;
  text-align: center;
}

.page-slot-games-jackpots__section:nth-child(even) {
  background-color: #2A2A2A; /* Slightly lighter dark for contrast */
}

.page-slot-games-jackpots__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-slot-games-jackpots__section-description {
  font-size: 1.1em;
  color: #BFBFBF;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-slot-games-jackpots__hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slot-games-jackpots__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:jackpot,slot_machine,lights,blurred]') no-repeat center center/cover;
  opacity: 0.15;
  z-index: 0;
}

.page-slot-games-jackpots__hero > div {
  position: relative;
  z-index: 1;
}

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

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

.page-slot-games-jackpots__hero-actions .page-slot-games-jackpots__btn {
  margin: 0 15px;
}

/* Buttons */
.page-slot-games-jackpots__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-slot-games-jackpots__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-slot-games-jackpots__btn--primary:hover {
  background-color: #E0B800;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games-jackpots__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-jackpots__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(255, 215, 0, 0.4);
}

.page-slot-games-jackpots__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Content Grid */
.page-slot-games-jackpots__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-slot-games-jackpots__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-slot-games-jackpots__text-content {
  flex: 1;
}

.page-slot-games-jackpots__text-content h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slot-games-jackpots__text-content p {
  margin-bottom: 15px;
  color: #BFBFBF;
}

.page-slot-games-jackpots__text-content ul,
.page-slot-games-jackpots__text-content ol {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #BFBFBF;
}

.page-slot-games-jackpots__text-content ol {
  list-style-type: decimal;
}

.page-slot-games-jackpots__text-content li {
  margin-bottom: 10px;
}

.page-slot-games-jackpots__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-slot-games-jackpots__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Features Grid */
.page-slot-games-jackpots__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games-jackpots__feature-item {
  background-color: #2A2A2A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpots__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-slot-games-jackpots__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.page-slot-games-jackpots__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-slot-games-jackpots__feature-item p {
  color: #BFBFBF;
}

.page-slot-games-jackpots__cta-center {
  margin-top: 60px;
}

/* Game List */
.page-slot-games-jackpots__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-slot-games-jackpots__game-card {
  background-color: #2A2A2A;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slot-games-jackpots__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-slot-games-jackpots__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-slot-games-jackpots__game-card h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin: 20px 0 10px;
}

.page-slot-games-jackpots__game-card p {
  color: #BFBFBF;
  padding: 0 20px 25px;
  font-size: 0.95em;
}

/* Call to Action Section */
.page-slot-games-jackpots__call-to-action {
  background: linear-gradient(45deg, #FFD700, #E0B800);
  color: #1A1A1A;
  padding: 100px 0;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__section-title {
  color: #1A1A1A;
  text-shadow: none;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__section-description {
  color: #333333;
}

.page-slot-games-jackpots__action-buttons .page-slot-games-jackpots__btn {
  margin: 0 15px;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__btn--primary {
  background-color: #1A1A1A;
  color: #FFD700;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__btn--primary:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__btn--secondary {
  border-color: #1A1A1A;
  color: #1A1A1A;
}

.page-slot-games-jackpots__call-to-action .page-slot-games-jackpots__btn--secondary:hover {
  background-color: #1A1A1A;
  color: #FFD700;
}

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

  .page-slot-games-jackpots__section-title {
    font-size: 2.2em;
  }

  .page-slot-games-jackpots__content-grid {
    flex-direction: column;
  }

  .page-slot-games-jackpots__content-grid--reverse {
    flex-direction: column;
  }

  .page-slot-games-jackpots__text-content,
  .page-slot-games-jackpots__image-wrapper {
    flex: none;
    width: 100%;
  }

  .page-slot-games-jackpots__image {
    max-width: 80%;
    margin: 0 auto;
  }

  .page-slot-games-jackpots__features-grid,
  .page-slot-games-jackpots__game-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-slot-games-jackpots__hero {
    padding: 80px 0;
  }

  .page-slot-games-jackpots__hero-title {
    font-size: 2.5em;
  }

  .page-slot-games-jackpots__hero-subtitle {
    font-size: 1.2em;
  }

  .page-slot-games-jackpots__section {
    padding: 60px 0;
  }

  .page-slot-games-jackpots__section-title {
    font-size: 1.8em;
  }

  .page-slot-games-jackpots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-slot-games-jackpots__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-slot-games-jackpots__hero-actions .page-slot-games-jackpots__btn {
    margin: 10px 5px;
    display: block;
  }

  .page-slot-games-jackpots__features-grid,
  .page-slot-games-jackpots__game-list {
    grid-template-columns: 1fr;
  }

  .page-slot-games-jackpots__image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-slot-games-jackpots__hero-title {
    font-size: 2em;
  }

  .page-slot-games-jackpots__hero-subtitle {
    font-size: 1em;
  }

  .page-slot-games-jackpots__section-title {
    font-size: 1.5em;
  }

  .page-slot-games-jackpots__btn {
    width: 100%;
    margin: 10px 0;
  }

  .page-slot-games-jackpots__action-buttons .page-slot-games-jackpots__btn {
    margin: 10px 0;
  }
}