.page-game-guides-card-game-rules {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-game-guides-card-game-rules__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A202C 0%, #303b4d 100%); /* Dark gradient for hero */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-game-guides-card-game-rules__hero-content {
  z-index: 10;
  max-width: 800px;
}

.page-game-guides-card-game-rules__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-game-guides-card-game-rules__highlight {
  color: #FFD700; /* Accent color for brand name */
}

.page-game-guides-card-game-rules__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

.page-game-guides-card-game-rules__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.page-game-guides-card-game-rules__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-guides-card-game-rules__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-game-guides-card-game-rules__section:last-of-type {
  border-bottom: none;
}

.page-game-guides-card-game-rules__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Accent color for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-game-guides-card-game-rules__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-guides-card-game-rules__grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-guides-card-game-rules__grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
}

.page-game-guides-card-game-rules__card {
  background-color: #2a3447; /* Slightly lighter dark background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-guides-card-game-rules__card:hover {
  transform: translateY(-5px);
}

.page-game-guides-card-game-rules__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-guides-card-game-rules__game-list {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}

.page-game-guides-card-game-rules__game-article {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-card-game-rules__game-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 20px;
  border-bottom: 2px solid #3c4b66;
  padding-bottom: 10px;
}

.page-game-guides-card-game-rules__sub-game-title {
  font-size: 1.4em;
  color: #e5dfd3;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-game-guides-card-game-rules__game-article ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-game-guides-card-game-rules__game-article li {
  margin-bottom: 8px;
}

.page-game-guides-card-game-rules__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-game-guides-card-game-rules__btn--primary {
  background-color: #FFD700;
  color: #1A202C;
}

.page-game-guides-card-game-rules__btn--primary:hover {
  background-color: #e6c200;
}

.page-game-guides-card-game-rules__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-guides-card-game-rules__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-game-guides-card-game-rules__image-row {
  text-align: center;
  margin-bottom: 30px;
}

.page-game-guides-card-game-rules__section-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-card-game-rules__tips-image-wrapper {
  text-align: center;
}

.page-game-guides-card-game-rules__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-guides-card-game-rules__text-center {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
}

.page-game-guides-card-game-rules__feature-item {
  background-color: #2a3447;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.page-game-guides-card-game-rules__feature-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-guides-card-game-rules__cta-wrapper {
  text-align: center;
  padding: 50px 0;
  background-color: #2a3447;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-game-guides-card-game-rules__platform-image {
  max-width: 80%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-guides-card-game-rules__cta-text {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-game-guides-card-game-rules__responsible-gambling {
  text-align: center;
  padding: 50px 0;
  background-color: #1A202C;
  color: #e5dfd3;
}

.page-game-guides-card-game-rules__responsible-gambling p {
  max-width: 800px;
  margin: 0 auto 15px auto;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-guides-card-game-rules__main-title {
    font-size: 2.8em;
  }
  .page-game-guides-card-game-rules__subtitle {
    font-size: 1.2em;
  }
  .page-game-guides-card-game-rules__section-title {
    font-size: 2em;
  }
  .page-game-guides-card-game-rules__grid-2 {
    grid-template-columns: 1fr;
  }
  .page-game-guides-card-game-rules__tips-content {
    order: 2;
  }
  .page-game-guides-card-game-rules__tips-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .page-game-guides-card-game-rules__hero-section {
    padding: 60px 15px;
  }
  .page-game-guides-card-game-rules__main-title {
    font-size: 2.2em;
  }
  .page-game-guides-card-game-rules__subtitle {
    font-size: 1em;
  }
  .page-game-guides-card-game-rules__section {
    padding: 40px 0;
  }
  .page-game-guides-card-game-rules__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-game-guides-card-game-rules__grid-3 {
    grid-template-columns: 1fr;
  }
  .page-game-guides-card-game-rules__card {
    padding: 25px;
  }
  .page-game-guides-card-game-rules__game-article {
    padding: 25px;
  }
  .page-game-guides-card-game-rules__game-title {
    font-size: 1.6em;
  }
  .page-game-guides-card-game-rules__sub-game-title {
    font-size: 1.2em;
  }
  .page-game-guides-card-game-rules__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-guides-card-game-rules__cta-text {
    font-size: 1.4em;
  }
  .page-game-guides-card-game-rules__platform-image {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .page-game-guides-card-game-rules__main-title {
    font-size: 1.8em;
  }
  .page-game-guides-card-game-rules__subtitle {
    font-size: 0.9em;
  }
  .page-game-guides-card-game-rules__section-title {
    font-size: 1.5em;
  }
  .page-game-guides-card-game-rules__card-title {
    font-size: 1.3em;
  }
  .page-game-guides-card-game-rules__game-title {
    font-size: 1.4em;
  }
  .page-game-guides-card-game-rules__cta-text {
    font-size: 1.2em;
  }
}