/* style/index.css */

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

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

.page-index__section-title {
  font-size: 2.5em;
  color: #8B0000;
  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;
}

.page-index__highlight {
  color: #FFD700;
}

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

.page-index__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

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

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

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000;
}

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

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

.page-index__btn--text {
  color: #8B0000;
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  display: inline-block;
}

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

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #8B0000 0%, #a00000 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.page-index__hero-content {
  max-width: 600px;
  margin: 0 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 {
  margin-top: 40px;
  flex-shrink: 0;
}

.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: #f9f9f9;
}

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

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

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

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

.page-index__about-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* 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;
  margin-bottom: 40px;
}

.page-index__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

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

.page-index__game-card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin: 20px 0 10px;
}

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

.page-index__all-games-cta {
  text-align: center;
}

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

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

.page-index__promo-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

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

.page-index__promo-card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin: 20px 0 10px;
}

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

.page-index__all-promos-cta {
  text-align: center;
}

/* Why Choose Us Section */
.page-index__why-choose-us-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__benefit-item {
  text-align: center;
  padding: 30px;
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index__benefit-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-index__benefit-description {
  color: #666;
}

/* Download App Section */
.page-index__download-app-section {
  padding: 80px 0;
  background-color: #8B0000;
  color: #fff;
}

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

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

.page-index__download-qr-wrapper {
  flex-shrink: 0;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index__download-qr-code {
  width: 150px;
  height: 150px;
}

.page-index__qr-instruction {
  color: #333;
  margin-top: 10px;
  font-size: 0.9em;
}

.page-index__download-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-index__download-image-wrapper {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

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

.page-index__detail-card {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.page-index__detail-card-title a {
  color: #8B0000;
  text-decoration: none;
}

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

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

/* CTA Banner */
.page-index__cta-banner {
  background: linear-gradient(90deg, #FFD700 0%, #e6c200 100%);
  color: #8B0000;
  padding: 60px 0;
  text-align: center;
}

.page-index__cta-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__hero-section {
    flex-direction: column;
  }
  .page-index__about-grid {
    flex-direction: column;
  }
  .page-index__download-app-flex {
    flex-direction: column;
  }
  .page-index__download-text {
    text-align: center;
  }
  .page-index__download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1.1em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__download-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__cta-title {
    font-size: 2.2em;
  }
  .page-index__cta-description {
    font-size: 1em;
  }
}

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