/* style/game-rules.css */
/* Base styles */
.page-game-rules {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Main text color for dark background */
  background-color: #0A0A0A; /* Page background color */
}

/* Container for content */
.page-game-rules__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section styling */
.page-game-rules__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Primary color for titles */
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-game-rules__sub-title {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color for sub-titles */
  margin-top: 40px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-game-rules__text-block {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-game-rules p {
  margin-bottom: 15px;
}

.page-game-rules ul,
.page-game-rules ol {
  list-style-position: inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-game-rules li {
  margin-bottom: 8px;
}

/* Links */
.page-game-rules a {
  color: #FFD36B; /* Link color */
  text-decoration: none;
}

.page-game-rules a:hover {
  text-decoration: underline;
  color: #F2C14E; /* Hover color */
}

/* Hero Section */
.page-game-rules__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  background-color: #0A0A0A; /* Background for the section */
}

.page-game-rules__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%; /* Ensure image is responsive */
}

.page-game-rules__hero-content {
  max-width: 900px;
  margin-top: 40px; /* Space between image and text */
  text-align: center;
  padding: 0 20px;
}