/* style/game-guides-slots-guide.css */
.page-game-guides-slots-guide {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  line-height: 1.6;
  background-color: #0A2239; /* Main background color */
}

.page-game-guides-slots-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-game-guides-slots-guide__hero {
  background: linear-gradient(135deg, #0A2239 0%, #1a3a5a 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-guides-slots-guide__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:slot_hero_pattern,abstract,geometric]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-guides-slots-guide__hero > * {
  position: relative;
  z-index: 1;
}

.page-game-guides-slots-guide__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E0B400; /* Auxiliary color for main title */
  font-weight: bold;
}

.page-game-guides-slots-guide__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #C0C0C0;
}

.page-game-guides-slots-guide__highlight {
  color: #E0B400;
}

.page-game-guides-slots-guide__btn-primary,
.page-game-guides-slots-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  margin: 10px;
  font-size: 1.1em;
}

.page-game-guides-slots-guide__btn-primary {
  background-color: #E0B400; /* Auxiliary color for primary button */
  color: #0A2239;
  border: 2px solid #E0B400;
}

.page-game-guides-slots-guide__btn-primary:hover {
  background-color: #ffc900;
  border-color: #ffc900;
  transform: translateY(-3px);
}

.page-game-guides-slots-guide__btn-secondary {
  background-color: transparent;
  color: #E0B400;
  border: 2px solid #E0B400;
}

.page-game-guides-slots-guide__btn-secondary:hover {
  background-color: #E0B400;
  color: #0A2239;
  transform: translateY(-3px);
}

.page-game-guides-slots-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(224, 180, 0, 0.1);
}

.page-game-guides-slots-guide__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-slots-guide__section-title {
  font-size: 2.5em;
  color: #E0B400;
  text-align: center;
  margin-bottom: 40px;
}

.page-game-guides-slots-guide__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-game-guides-slots-guide__text-content {
  flex: 1;
}

.page-game-guides-slots-guide__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-game-guides-slots-guide__image-wrapper--center {
  flex: none;
  width: 100%;
}

.page-game-guides-slots-guide__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-guides-slots-guide__image--small {
  max-width: 70%;
  margin: 20px auto;
  display: block;
}

.page-game-guides-slots-guide p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-game-guides-slots-guide a {
  color: #E0B400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-guides-slots-guide a:hover {
  color: #ffc900;
  text-decoration: underline;
}

.page-game-guides-slots-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-guides-slots-guide__list li {
  background-color: #1a3a5a;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  display: flex;
  align-items: flex-start;
  font-size: 1.1em;
  color: #F8F8F8;
}

.page-game-guides-slots-guide__list li::before {
  content: '✔';
  color: #E0B400;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.page-game-guides-slots-guide__numbered-list {
  list-style: none;
  padding: 0;
}

.page-game-guides-slots-guide__numbered-list li {
  margin-bottom: 40px;
  background-color: #1a3a5a;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-guides-slots-guide__numbered-list h3 {
  color: #E0B400;
  font-size: 1.8em;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-game-guides-slots-guide__cta-section {
  background-color: #E0B400; /* Auxiliary color for CTA background */
  padding: 80px 0;
  text-align: center;
  color: #0A2239; /* Dark text on light background */
}

.page-game-guides-slots-guide__cta-content {
  max-width: 900px;
}

.page-game-guides-slots-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #0A2239;
}

.page-game-guides-slots-guide__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #2c4a6a;
}

.page-game-guides-slots-guide__cta-section .page-game-guides-slots-guide__btn-primary {
  background-color: #0A2239;
  color: #E0B400;
  border-color: #0A2239;
}

.page-game-slots-guide__cta-section .page-game-guides-slots-guide__btn-primary:hover {
  background-color: #2c4a6a;
  border-color: #2c4a6a;
  color: #ffc900;
}

.page-game-guides-slots-guide__cta-section .page-game-guides-slots-guide__btn-secondary {
  background-color: transparent;
  color: #0A2239;
  border-color: #0A2239;
}

.page-game-guides-slots-guide__cta-section .page-game-guides-slots-guide__btn-secondary:hover {
  background-color: #0A2239;
  color: #E0B400;
}

.page-game-guides-slots-guide__btn-primary--large,
.page-game-guides-slots-guide__btn-secondary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides-slots-guide__title {
    font-size: 2.8em;
  }
  .page-game-guides-slots-guide__subtitle {
    font-size: 1.2em;
  }
  .page-game-guides-slots-guide__section-title {
    font-size: 2em;
  }
  .page-game-guides-slots-guide__content-grid {
    flex-direction: column;
  }
  .page-game-guides-slots-guide__image-wrapper {
    margin-top: 30px;
  }
  .page-game-guides-slots-guide__image--small {
    max-width: 90%;
  }
  .page-game-guides-slots-guide__cta-title {
    font-size: 2.2em;
  }
  .page-game-guides-slots-guide__cta-text {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-game-guides-slots-guide__hero {
    padding: 80px 0;
  }
  .page-game-guides-slots-guide__title {
    font-size: 2.2em;
  }
  .page-game-guides-slots-guide__subtitle {
    font-size: 1em;
  }
  .page-game-guides-slots-guide__btn-primary,
  .page-game-guides-slots-guide__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
    margin: 5px;
  }
  .page-game-guides-slots-guide__section {
    padding: 40px 0;
  }
  .page-game-guides-slots-guide__section-title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-guide p,
  .page-game-guides-slots-guide__list li,
  .page-game-guides-slots-guide__numbered-list li {
    font-size: 0.95em;
  }
  .page-game-guides-slots-guide__numbered-list h3 {
    font-size: 1.5em;
  }
  .page-game-guides-slots-guide__cta-title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-guide__cta-text {
    font-size: 1em;
  }
  .page-game-guides-slots-guide__btn-primary--large,
  .page-game-guides-slots-guide__btn-secondary--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-guides-slots-guide__hero {
    padding: 60px 0;
  }
  .page-game-guides-slots-guide__title {
    font-size: 1.8em;
  }
  .page-game-guides-slots-guide__subtitle {
    font-size: 0.9em;
  }
  .page-game-guides-slots-guide__btn-primary,
  .page-game-guides-slots-guide__btn-secondary {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }
  .page-game-guides-slots-guide__section {
    padding: 30px 0;
  }
  .page-game-guides-slots-guide__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-slots-guide__cta-title {
    font-size: 1.6em;
  }
  .page-game-guides-slots-guide__cta-text {
    font-size: 0.9em;
  }
  .page-game-guides-slots-guide__btn-primary--large,
  .page-game-guides-slots-guide__btn-secondary--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}