:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #ffffff;
  --bg-dark: #222222; /* For sections with dark background */
  --border-color: #e0e0e0;
}

/* Base styles for the page content */
.page-resources-awin68-game-guide {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light body background */
  line-height: 1.6;
  background-color: #f4f4f4; /* Inherited from body, but explicitly set for clarity */
}

.page-resources-awin68-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-awin68-game-guide__section {
  padding: 60px 0;
  background-color: var(--bg-light);
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-awin68-game-guide__section:last-of-type {
  margin-bottom: 0;
}

.page-resources-awin68-game-guide__section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-awin68-game-guide__section p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}