.page-newbie-guide-common-game-rules {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f8f8f8; /* Light text on dark background */
  background-color: #121f2f; /* Slightly lighter than main for contrast */
}

.page-newbie-guide-common-game-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-newbie-guide-common-game-rules__hero-section {
  background: linear-gradient(135deg, #1A2C42, #2a415e); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-newbie-guide-common-game-rules__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B147; /* Accent color for title */
  font-weight: bold;
}

.page-newbie-guide-common-game-rules__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-newbie-guide-common-game-rules__cta-button {
  display: inline-block;
  background-color: #E0B147; /* Accent color for CTA */
  color: #1A2C42; /* Dark text on accent background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-newbie-guide-common-game-rules__cta-button:hover {
  background-color: #f5c86e; /* Lighter accent on hover */
  transform: translateY(-2px);
}

.page-newbie-guide-common-game-rules__section-title {
  font-size: 2.5em;
  color: #E0B147; /* Accent color for section titles */
  margin-top: 60px;
  margin-bottom: 30px;
  text-align: center;
}

.page-newbie-guide-common-game-rules__content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #d0d0d0;
  text-align: justify;
}

.page-newbie-guide-common-game-rules__game-card {
  background-color: #1A2C42; /* Main color for card background */
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-newbie-guide-common-game-rules__game-card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-newbie-guide-common-game-rules__game-card-title {
  font-size: 1.8em;
  color: #E0B147; /* Accent color for card titles */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-newbie-guide-common-game-rules__list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 700px;
}

.page-newbie-guide-common-game-rules__list li {
  background-color: #2a415e; /* Slightly lighter dark blue for list items */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-newbie-guide-common-game-rules__list li strong {
  color: #E0B147; /* Accent color for strong text */
}

.page-newbie-guide-common-game-rules__list ul {
  list-style: disc;
  margin-left: 20px;
  margin-top: 10px;
  color: #d0d0d0;
}

.page-newbie-guide-common-game-rules__list ul li {
  background-color: transparent;
  box-shadow: none;
  padding: 5px 0;
  margin-bottom: 5px;
}

.page-newbie-guide-common-game-rules__image-full-width {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin: 40px auto;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-newbie-guide-common-game-rules__cta-banner {
  background-color: #1A2C42; /* Main color for banner */
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-newbie-guide-common-game-rules__cta-banner-title {
  font-size: 2.2em;
  color: #E0B147; /* Accent color for banner title */
  margin-bottom: 20px;
}

.page-newbie-guide-common-game-rules__cta-banner-description {
  font-size: 1.1em;
  color: #d0d0d0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-newbie-guide-common-game-rules__cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-newbie-guide-common-game-rules__cta-group .page-newbie-guide-common-game-rules__cta-button {
  min-width: 180px;
}

.page-newbie-guide-common-game-rules__cta-button--primary {
  background-color: #E0B147;
  color: #1A2C42;
}

.page-newbie-guide-common-game-rules__cta-button--primary:hover {
  background-color: #f5c86e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-newbie-guide-common-game-rules__hero-title {
    font-size: 2.5em;
  }

  .page-newbie-guide-common-game-rules__hero-description {
    font-size: 1em;
  }

  .page-newbie-guide-common-game-rules__section-title {
    font-size: 2em;
  }

  .page-newbie-guide-common-game-rules__game-card {
    padding: 20px;
  }

  .page-newbie-guide-common-game-rules__game-card-title {
    font-size: 1.5em;
  }

  .page-newbie-guide-common-game-rules__list li {
    font-size: 0.95em;
    padding: 12px 15px;
  }

  .page-newbie-guide-common-game-rules__cta-banner-title {
    font-size: 1.8em;
  }

  .page-newbie-guide-common-game-rules__cta-banner-description {
    font-size: 0.95em;
  }

  .page-newbie-guide-common-game-rules__cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-newbie-guide-common-game-rules__cta-group .page-newbie-guide-common-game-rules__cta-button {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-newbie-guide-common-game-rules__hero-title {
    font-size: 2em;
  }

  .page-newbie-guide-common-game-rules__section-title {
    font-size: 1.8em;
  }

  .page-newbie-guide-common-game-rules__game-card-title {
    font-size: 1.3em;
  }

  .page-newbie-guide-common-game-rules__cta-banner-title {
    font-size: 1.5em;
  }

  .page-newbie-guide-common-game-rules__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}