:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --register-button-bg: #C30808;
  --login-button-bg: #C30808;
  --register-login-text: #FFFF00;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --background-light: #f9f9f9;
}

/* Base styles for the page content */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Default background color from shared */
}

/* Section padding */
.page-index__intro-section,
.page-index__games-section,
.page-index__security-support-section,
.page-index__blog-section {
  padding: 80px 0;
}

.page-index__quick-access-section,
.page-index__promotions-section,
.page-index__faq-section {
  padding: 80px 0;
  background-color: var(--primary-color); /* Dark background for these sections */
  color: var(--text-light);
}

.page-index__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}