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

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

.page-index__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-index__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-align: center;
  cursor: pointer;
}

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

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

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

.page-index__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-index__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-index__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.page-index__hero-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 600px;
  color: #e0e0e0;
}

.page-index__hero-buttons .page-index__btn {
  margin-right: 15px;
}

.page-index__hero-image-wrapper {
  flex: 1;
  min-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* About Section */
.page-index__about-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-index__about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index__about-text {
  flex: 2;
  min-width: 300px;
}

.page-index__about-text p {
  margin-bottom: 15px;
  color: #444;
}

.page-index__about-text strong {
  color: #003366;
}

.page-index__about-image-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.page-index__features-section {
  padding: 80px 0;
  background-color: #f2f7fc;
}

.page-index__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

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

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

.page-index__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.1));
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index__feature-item p {
  color: #555;
}

/* Games Section */
.page-index__games-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__game-card {
  background-color: #fdfdfd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  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.4em;
  color: #003366;
  margin: 20px 0 10px;
}

.page-index__game-card p {
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index__game-card .page-index__btn {
  margin-bottom: 20px;
  background-color: #003366;
  color: #FFCC00;
  border-color: #003366;
}

.page-index__game-card .page-index__btn:hover {
  background-color: #002244;
  border-color: #002244;
}

/* Promotions Section */
.page-index__promotions-section {
  padding: 80px 0;
  background-color: #f2f7fc;
}

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

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

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

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

.page-index__promo-title {
  font-size: 1.4em;
  color: #003366;
  margin: 20px 0 10px;
}

.page-index__promo-card p {
  color: #666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-index__promo-card .page-index__btn {
  margin-bottom: 20px;
}

/* How-To Section */
.page-index__how-to-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-index__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-index__step-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  position: relative;
  background-color: #fdfdfd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index__step-number {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background-color: #003366;
  color: #FFCC00;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index__step-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-index__step-item p {
  color: #555;
}

.page-index__call-to-action {
  text-align: center;
}

/* Mobile App Section */
.page-index__mobile-app-section {
  background: linear-gradient(to right, #003366, #001a33);
  color: #fff;
  padding: 80px 0;
}

.page-index__mobile-app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-index__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-index__mobile-app-text .page-index__section-title {
  color: #FFCC00;
  text-align: left;
}

.page-index__mobile-app-text .page-index__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-index__mobile-app-text p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-index__app-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-index__app-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFCC00" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.05em;
}

.page-index__mobile-app-image-wrapper {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

/* Detail Pages Section */
.page-index__detail-pages-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-index__detail-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

.page-index__detail-card-title a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-index__detail-card-title a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

.page-index__detail-card p {
  color: #555;
  margin-bottom: 20px;
}

.page-index__detail-card .page-index__btn {
  background-color: #003366;
  color: #FFCC00;
  border-color: #003366;
}

.page-index__detail-card .page-index__btn:hover {
  background-color: #002244;
  border-color: #002244;
}

/* FAQ Section */
.page-index__faq-section {
  padding: 80px 0;
  background-color: #fff;
}

.page-index__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-index__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-index__faq-question {
  font-size: 1.2em;
  color: #003366;
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f7fc;
  margin: 0;
  position: relative;
}

.page-index__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-index__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-index__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-index__faq-answer.active {
  max-height: 500px; /* Adjust as needed */
  padding: 20px;
}

.page-index__faq-answer p {
  color: #555;
  margin-bottom: 10px;
}

/* CTA Bottom Section */
.page-index__cta-bottom-section {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

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

.page-index__cta-title {
  font-size: 2.8em;
  color: #FFCC00;
  margin-bottom: 20px;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__hero-content, .page-index__hero-image-wrapper {
    flex: 1 1 100%;
    text-align: center;
  }
  .page-index__hero-buttons {
    justify-content: center;
    display: flex;
  }
  .page-index__mobile-app-text .page-index__section-title {
    text-align: center;
  }
  .page-index__mobile-app-text .page-index__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-section {
    padding: 60px 0;
  }
  .page-index__about-section, .page-index__features-section, .page-index__games-section, .page-index__promotions-section, .page-index__how-to-section, .page-index__mobile-app-section, .page-index__detail-pages-section, .page-index__faq-section, .page-index__cta-bottom-section {
    padding: 60px 0;
  }
  .page-index__about-content {
    flex-direction: column;
  }
  .page-index__about-image-wrapper, .page-index__about-text {
    min-width: unset;
    width: 100%;
  }
  .page-index__mobile-app-content {
    flex-direction: column-reverse;
  }
  .page-index__mobile-app-image-wrapper, .page-index__mobile-app-text {
    min-width: unset;
    width: 100%;
  }
  .page-index__cta-title {
    font-size: 2em;
  }
  .page-index__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-buttons .page-index__btn {
    margin-right: 0;
    margin-bottom: 15px;
    display: block;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__cta-title {
    font-size: 1.8em;
  }
  .page-index__faq-question {
    font-size: 1.1em;
  }
}