/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  line-height: 1.6;
}

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

.page-index__section {
  padding: 80px 0;
  background-color: #0A2239;
  color: #E0E0E0;
}

.page-index__section--dark {
  background-color: #051525;
  color: #FFFFFF;
}

.page-index__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-index__section-title--light {
  color: #FFD700;
}

.page-index__section-intro {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #B0B0B0;
}

.page-index__section-intro--light {
  color: #D0D0D0;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #0A2239 0%, #051525 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,gaming,subtle]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 1;
}

.page-index__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-index__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 700;
}

.page-index__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #FFD700;
  color: #0A2239;
}

.page-index__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2239;
  transform: translateY(-2px);
}

.page-index__hero-image-wrapper {
  display: none; /* Hide on desktop for full width hero content */
}

/* About Section */
.page-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index__grid-item {
  background-color: #1A354E;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__grid-item:hover {
  transform: translateY(-5px);
}

.page-index__item-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index__item-title--light {
  color: #FFD700;
}

.page-index__item-description {
  font-size: 1.05em;
  color: #B0B0B0;
}

.page-index__item-description--light {
  color: #D0D0D0;
}

/* Guide Section */
.page-index__guide-section {
  background-color: #051525;
}

.page-index__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  justify-content: center;
}

.page-index__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-index__text-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-index__image-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  text-align: center;
}

.page-index__app-image, .page-index__support-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-index__btn--accent {
  background-color: #FFD700;
  color: #0A2239;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 20px;
  display: inline-block;
}

.page-index__btn--accent:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* Promo Section */
.page-index__promo-card {
  background-color: #1A354E;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index__promo-card:hover {
  transform: translateY(-5px);
  background-color: #2A4560;
}

.page-index__promo-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index__card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
}

.page-index__btn--link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-index__btn--link:hover {
  color: #e6c200;
  border-color: #e6c200;
}

/* Games Section */
.page-index__games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index__game-card {
  background-color: #1A354E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index__game-card:hover {
  transform: translateY(-5px);
}

.page-index__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index__game-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 0;
}

.page-index__game-description {
  font-size: 0.95em;
  color: #B0B0B0;
  padding: 0 20px 15px;
}

.page-index__game-card .page-index__btn--accent {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  text-align: center;
}

/* Support Section */
.page-index__support-section {
  background-color: #0A2239;
}

/* CTA Section */
.page-index__cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #0A2239 0%, #051525 100%);
}

.page-index__cta-content {
  max-width: 800px;
}

.page-index__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-index__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-index__btn--large {
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__section-title {
    font-size: 2.2em;
  }
  .page-index__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section {
    padding: 60px 0;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__content-wrapper {
    flex-direction: column;
    gap: 30px;
  }
  .page-index__content-wrapper--reverse {
    flex-direction: column;
  }
  .page-index__item-title {
    font-size: 1.6em;
  }
  .page-index__cta-title {
    font-size