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

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

.page-index__highlight {
  color: #FFCC00;
}

.page-index__keyword {
  font-weight: bold;
  color: #003366;
}

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

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

.page-index__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

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

.page-index__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
}

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

.page-index__btn--text {
  background: none;
  border: none;
  color: #003366;
  padding: 0;
  text-decoration: underline;
}

.page-index__btn--text:hover {
  color: #FFCC00;
}

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

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

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

.page-index__hero-content {
  max-width: 600px;
  padding: 20px;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

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

.page-index__hero-image-wrapper {
  max-width: 500px;
  padding: 20px;
}

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

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

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

.page-index__about-text,
.page-index__about-image {
  flex: 1;
  min-width: 300px;
}

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

.page-index__image--responsive {
  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: 60px 0;
  background-color: #fff;
}

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

.page-index__feature-item {
  background-color: #f0f5fa;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.page-index__promo-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-index__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-index__promo-image,
.page-index__promo-content {
  flex: 1;
  min-width: 350px;
  padding: 40px;
}

.page-index__promo-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.page-index__promo-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 15px;
}

.page-index__promo-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
}

/* Game Reviews Section */
.page-index__game-reviews-section {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-index__review-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__review-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.page-index__review-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index__review-title {
  font-size: 1.5em;
  color: #003366;
  padding: 20px 20px 10px;
}

.page-index__review-item p {
  color: #666;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-index__review-item .page-index__btn--text {
  display: block;
  margin: 0 20px 20px;
  text-align: right;
}

.page-index__center-btn {
  text-align: center;
  margin-top: 40px;
}

/* Quick Guide Section */
.page-index__quick-guide-section {
  padding: 60px 0;
  background-color: #f0f7ff;
}

.page-index__guide-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-index__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  flex: 1;
  min-width: 280px;
  max-width: 350px;
}

.page-index__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.2));
}

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

.page-index__step-item p {
  color: #666;
  margin-bottom: 20px;
}

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

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

.page-index__detail-card {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

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

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

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

.page-index__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
}

.page-index__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsible Gaming Section */
.page-index__responsible-gaming {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-index__responsible-gaming p {
  color: #555;
  margin-bottom: 15px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__hero-section {
    flex-direction: column;
    text-align: center;
  }
  .page-index__about-content {
    flex-direction: column;
  }
  .page-index__promo-card {
    flex-direction: column;
  }
  .page-index__promo-card--reverse {
    flex-direction: column;
  }
  .page-index__promo-image, .page-index__promo-content {
    padding: 30px;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
  }
  .page-index__btn {
    width: 100%;
  }
  .page-index__features-grid,
  .page-index__reviews-grid,
  .page-index__guide-steps,
  .page-index__detail-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-index__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__hero-title {
    font-size: 1.8em;
  }
  .page-index__hero-description {
    font-size: 0.9em;
  }
  .page-index__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-index__promo-title {
    font-size: 1.5em;
  }
  .page-index__review-title {
    font-size: 1.3em;
  }
  .page-index__step-title {
    font-size: 1.4em;
  }
  .page-index__detail-title {
    font-size: 1.2em;
  }
  .page-index__cta-title {
    font-size: 2em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
}