/* style/index.css */
/* Base styles for the page content */
.page-index {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background */
  background-color: #f8f8f8; /* A light background, ensuring contrast */
  overflow-x: hidden; /* Prevent horizontal scroll on wider elements */
}

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

.page-index__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #26A9E0; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
}

.page-index__section-title--white {
  color: #FFFFFF;
}

.page-index__section-description {
  font-size: 18px;
  text-align: center;
  color: #555555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__section-description--white {
  color: #f0f0f0;
}

/* Reusable button styles */
.page-index__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-index__btn-primary {
  background: #26A9E0; /* Primary color */
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-index__btn-primary:hover {
  background: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0; /* Primary color */
  border: 2px solid #26A9E0;
}

.page-index__btn-secondary:hover {
  background: #e0f2f7;
  color: #1e87b7;
  border-color: #1e87b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index__btn-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 15px;
}

.page-index__btn-link:hover {
  text-decoration: underline;
}

/* Image base styles */
.page-index img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.page-index__quick-access-section,
.page-index__promotions-section,
.page-index__blog-section {
  padding: 80px 0;
}