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

.page-index-highlight {
  color: #1E90FF;
}

.page-index-section-title {
  font-size: 2.5em;
  color: #333;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-index-section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

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

.page-index-btn-primary {
  background-color: #FFD700;
  color: #333;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-index-btn-primary:hover {
  background-color: #e6c200;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-index-btn-secondary {
  background-color: #1E90FF;
  color: #fff;
  box-shadow: 0 4px 15px rgba(30, 144, 255, 0.4);
}

.page-index-btn-secondary:hover {
  background-color: #1a7ae0;
  box-shadow: 0 6px 20px rgba(30, 144, 255, 0.6);
}

.page-index-btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
}

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

/* Hero Section */
.page-index-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #1E90FF 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  gap: 40px;
}

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

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

.page-index-hero-title .page-index-highlight {
  color: #f0f0f0;
}

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

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

.page-index-hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 40px;
}

.page-index-hero-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* About Section */
.page-index-about {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-top: -60px;
  position: relative;
  z-index: 1;
}

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

.page-index-about-item {
  padding: 30px;
  border-radius: 10px;
  background-color: #fefefe;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-index-about-item-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 10px;
}

.page-index-about-item-description {
  color: #666;
}

/* Games Section */
.page-index-games {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-index-game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-index-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-game-title {
  font-size: 1.6em;
  color: #333;
  margin: 20px 15px 10px;
}

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

.page-index-game-card .page-index-btn {
  margin-bottom: 20px;
}

/* Promotions Section */
.page-index-promotions {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f0f8ff;
  border-radius: 10px;
}

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

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

.page-index-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-index-promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-index-promo-title {
  font-size: 1.7em;
  color: #1E90FF;
  margin: 20px 15px 10px;
}

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

.page-index-promo-card .page-index-btn {
  margin-bottom: 20px;
}

/* App Download Section */
.page-index-app-download {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1E90FF;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  gap: 40px;
}

.page-index-app-content {
  max-width: 700px;
}

.page-index-app-download .page-index-section-title {
  color: #fff;
  margin-bottom: 20px;
}

.page-index-app-download .page-index-highlight {
  color: #FFD700;
}

.page-index-app-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #eee;
}

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

.page-index-app-image-wrapper {
  width: 100%;
  max-width: 500px;
  margin-top: 40px;
}

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

/* Detail Pages Section */
.page-index-detail-pages {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.page-index-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-index-detail-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-index-detail-title a {
  color: #1E90FF;
  text-decoration: none;
}

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

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

/* Responsible Gambling Section */
.page-index-responsible-gambling {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fef8e7;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-index-responsible-gambling .page-index-section-title {
  color: #b39700;
}

.page-index-responsible-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 30px;
}

/* CTA Section */
.page-index-cta {
  padding: 80px 20px;
  background-color: #333;
  color: #fff;
  text-align: center;
}

.page-index-cta .page-index-section-title {
  color: #fff;
  font-size: 3em;
}

.page-index-cta .page-index-highlight {
  color: #FFD700;
}

.page-index-cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #eee;
}

/* Copyright */
.page-index-copyright {
  text-align: center;
  padding: 20px;
  background-color: #222;
  color: #aaa;
  font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-index-hero-title {
    font-size: 2.5em;
  }

  .page-index-hero-description {
    font-size: 1em;
  }

  .page-index-hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-about {
    padding: 40px 15px;
    margin-top: -40px;
  }

  .page-index-about-item {
    padding: 20px;
  }

  .page-index-section-title {
    font-size: 2em;
    padding-top: 30px;
  }

  .page-index-games, .page-index-promotions, .page-index-app-download, .page-index-detail-pages, .page-index-responsible-gambling, .page-index-cta {
    padding: 60px 15px;
  }

  .page-index-app-download {
    flex-direction: column;
  }

  .page-index-app-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-cta .page-index-section-title {
    font-size: 2.2em;
  }

  .page-index-cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-hero-title {
    font-size: 2em;
  }

  .page-index-section-title {
    font-size: 1.8em;
  }

  .page-index-game-title, .page-index-promo-title, .page-index-detail-title {
    font-size: 1.4em;
  }

  .page-index-btn {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}