/* style/game-rules-slots.css */
.page-game-rules-slots {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

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

.page-game-rules-slots__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-rules-slots__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-game-rules-slots__hero-container {
  position: relative;
  width: 100%;
}

.page-game-rules-slots__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-game-rules-slots__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-rules-slots__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-game-rules-slots__hero-button,
.page-game-rules-slots__cta-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-game-rules-slots__hero-button:hover,
.page-game-rules-slots__cta-button:hover {
  background-color: #e0a33c;
}

.page-game-rules-slots__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-game-rules-slots__text-content {
  font-size: 1.1em;
  margin-bottom: 30px;
  text-align: justify;
}

.page-game-rules-slots__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-rules-slots__ordered-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-game-rules-slots__list-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-left: 5px solid #FCBC45;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-game-rules-slots__list-title {
  font-size: 1.5em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-rules-slots__list-description {
  font-size: 1em;
  color: #555555;
}

.page-game-rules-slots__image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-game-rules-slots__grid-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #FCBC45;
}

.page-game-rules-slots__grid-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-rules-slots__grid-description {
  font-size: 1em;
  color: #666666;
}

.page-game-rules-slots__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-game-rules-slots__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-rules-slots__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-game-rules-slots__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-game-rules-slots__faq-answer a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-rules-slots__hero-title {
    font-size: 2.2em;
  }

  .page-game-rules-slots__hero-description {
    font-size: 1em;
  }

  .page-game-rules-slots__section-title {
    font-size: 2em;
  }

  .page-game-rules-slots__text-content {
    font-size: 1em;
  }

  .page-game-rules-slots__list-title,
  .page-game-rules-slots__grid-title,
  .page-game-rules-slots__faq-question {
    font-size: 1.3em;
  }

  .page-game-rules-slots__image {
    max-width: 100%;
    height: auto;
  }
  
  .page-game-rules-slots__hero-image,
  .page-game-rules-slots__image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-game-rules-slots__hero-title {
    font-size: 1.8em;
  }

  .page-game-rules-slots__hero-description {
    font-size: 0.9em;
  }

  .page-game-rules-slots__hero-button,
  .page-game-rules-slots__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-rules-slots__section-title {
    font-size: 1.8em;
  }
}