.page-index {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-index__section {
  padding: 60px 0;
  text-align: center;
}

.page-index__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index__section-title {
  font-size: 2.5em;
  color: #007bff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-index__section-text {
  font-size: 1.1em;
  color: #555;
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: 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,geometric,light_blue]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-index__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.page-index__hero-title .highlight {
  color: #ffc107;
}

.page-index__hero-title .highlight-secondary {
  color: #fff;
  background-color: #ffc107;
  padding: 5px 15px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-index__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  text-align: center;
}

.page-index__btn--primary {
  background-color: #ffc107;
  color: #000;
  border: 2px solid #ffc107;
}

.page-index__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

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

.page-index__btn--secondary:hover {
  background-color: #ffc107;
  color: #000;
  transform: translateY(-3px);
}

.page-index__hero-image-wrapper {
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

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

/* Advantages Section */
.page-index__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-index__advantage-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index__advantage-item:hover {
  transform: translateY(-10px);
}

.page-index__advantage-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
  margin-left: 0;
}

.page-index__advantage-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index__advantage-description {
  font-size: 1em;
  color: #666;
}

.page-index__cta-bottom {
  margin-top: 50px;
}

/* How to Claim Section */
.page-index__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-index__claim-steps li {
  background-color: #fff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-index__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-index__claim-steps p {
  color: #555;
  font-size: 1em;
}

/* Game Categories Section */
.page-index__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index__game-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index__game-item:hover {
  transform: translateY(-10px);
}

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

.page-index__game-title {
  font-size: 1.4em;
  color: #007bff;
  margin: 20px 0 10px;
}

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

/* Detail Pages Section */
.page-index__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-index__detail-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.page-index__detail-card:hover {
  transform: translateY(-10px);
}

.page-index__detail-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-index__detail-title a {
  color: #007bff;
  text-decoration: none;
}

.page-index__detail-title a:hover {
  text-decoration: underline;
}

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

.page-index__btn--text {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  padding: 0;
  background: none;
  border: none;
  display: inline-block;
  font-size: 1em;
}

.page-index__btn--text:hover {
  text-decoration: underline;
  background: none;
  transform: none;
}

/* Final CTA Section */
.page-index__final-cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
}

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

.page-index__final-cta .page-index__section-title {
  color: #fff;
}

.page-index__final-cta .page-index__section-text {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-index__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__advantages-grid, .page-index__game-grid, .page-index__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-index__section {
    padding: 40px 0;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__section-text {
    font-size: 0.95em;
  }
  .page-index__advantages-grid, .page-index__game-grid, .page-index__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-index__advantage-item, .page-index__game-item, .page-index__detail-card {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__btn {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-index__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-index__section-title {
    font-size: 1.5em;
  }
  .page-index__step-title {
    font-size: 1.2em;
  }
}