/* style/game-guides-game-rule-deep-dive.css */
.page-game-guides-game-rule-deep-dive {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

.page-game-guides-game-rule-deep-dive__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-guides-game-rule-deep-dive__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3); /* Darker blue for better contrast with text */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-game-rule-deep-dive__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-game-guides-game-rule-deep-dive__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-guides-game-rule-deep-dive__content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-game-guides-game-rule-deep-dive__heading {
  font-size: 2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 3px solid #ffc107;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-game-guides-game-rule-deep-dive__sub-heading {
  font-size: 1.5em;
  color: #0056b3; /* Darker blue for sub-headings */
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-game-guides-game-rule-deep-dive__text {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-game-guides-game-rule-deep-dive__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05em;
}

.page-game-guides-game-rule-deep-dive__list-item {
  margin-bottom: 10px;
}

.page-game-guides-game-rule-deep-dive__image-wrapper {
  text-align: center;
  margin: 40px 0;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-game-guides-game-rule-deep-dive__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  margin: 0 auto 15px auto;
}

.page-game-guides-game-rule-deep-dive__image-caption {
  font-style: italic;
  color: #666;
  font-size: 0.95em;
}

.page-game-guides-game-rule-deep-dive__btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-guides-game-rule-deep-dive__btn--primary {
  background-color: #ffc107;
  color: #333; /* Darker text for contrast on gold */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-game-guides-game-rule-deep-dive__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-game-guides-game-rule-deep-dive__btn--secondary {
  background-color: #007bff;
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
  margin-left: 15px;
}

.page-game-guides-game-rule-deep-dive__btn--secondary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-game-guides-game-rule-deep-dive__cta-section {
  background: linear-gradient(135deg, #0056b3, #007bff); /* Adjusted gradient for CTA */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  margin-top: 60px;
}

.page-game-guides-game-rule-deep-dive__cta-content {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 40px;
  border-radius: 12px;
}

.page-game-guides-game-rule-deep-dive__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffc107; /* Gold for emphasis */
}

.page-game-guides-game-rule-deep-dive__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-game-guides-game-rule-deep-dive__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-guides-game-rule-deep-dive__title {
    font-size: 2.2em;
  }

  .page-game-guides-game-rule-deep-dive__subtitle,
  .page-game-guides-game-rule-deep-dive__cta-text {
    font-size: 1em;
  }

  .page-game-guides-game-rule-deep-dive__heading {
    font-size: 1.8em;
  }

  .page-game-guides-game-rule-deep-dive__sub-heading {
    font-size: 1.3em;
  }

  .page-game-guides-game-rule-deep-dive__btn {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-game-guides-game-rule-deep-dive__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-game-guides-game-rule-deep-dive__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-game-guides-game-rule-deep-dive__title {
    font-size: 1.8em;
  }

  .page-game-guides-game-rule-deep-dive__heading {
    font-size: 1.5em;
  }

  .page-game-guides-game-rule-deep-dive__cta-title {
    font-size: 1.8em;
  }
}