/* style/index.css */
.page-index {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #121212; /* Darker background for overall page */
}

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

.page-index-section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold accent for titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

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

.page-index-text-center {
  text-align: center;
}

.page-index-mt-40 {
  margin-top: 40px;
}

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

.page-index-btn-primary {
  background-color: #FFD700; /* Gold */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-index-btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #000;
}

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

.page-index-btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index-btn-tertiary {
  background-color: #1A202C;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-index-btn-tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-index-btn-link {
  color: #FFD700;
  background: none;
  border: none;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-index-btn-link:hover {
  color: #e6c200;
}

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

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

/* Hero Section */
.page-index-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1A202C 0%, #303642 100%);
  padding: 80px 0;
  min-height: 600px;
  color: #F8F8F8;
}

.page-index-hero-content {
  flex: 1;
  padding-right: 40px;
  max-width: 600px;
}

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

.page-index-hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #E0E0E0;
}

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

.page-index-hero-image-wrapper {
  flex: 1;
  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.5);
}

/* About Section */
.page-index-about {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index-about-text {
  flex: 2;
  font-size: 1.1em;
  line-height: 1.7;
  color: #B0B0B0;
}

.page-index-about-text p {
  margin-bottom: 15px;
}

.page-index-about-image {
  flex: 1;
  text-align: center;
}

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

/* Features Section */
.page-index-features {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-index-feature-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-index-feature-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-feature-item p {
  color: #B0B0B0;
  line-height: 1.6;
}

/* Games Section */
.page-index-games {
  padding: 80px 0;
  background-color: #1A202C;
}

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

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

.page-index-game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-game-card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-game-card-description {
  color: #B0B0B0;
  font-size: 0.95em;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* Promotions Section */
.page-index-promotions {
  padding: 80px 0;
  background-color: #121212;
}

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

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

.page-index-promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-index-promo-card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-index-promo-card-description {
  color: #B0B0B0;
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* How-To Section */
.page-index-how-to {
  padding: 80px 0;
  background-color: #1A202C;
}

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

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

.page-index-step-icon {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-step-item p {
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Responsible Gaming Section */
.page-index-responsible-gaming {
  padding: 80px 0;
  background-color: #121212;
}

.page-index-responsible-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #B0B0B0;
  text-align: justify;
}

.page-index-responsible-content p {
  margin-bottom: 20px;
}

/* Testimonials Section */
.page-index-testimonials {
  padding: 80px 0;
  background-color: #1A202C;
}

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

.page-index-testimonial-card {
  background-color: #121212;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-index-testimonial-text {
  font-style: italic;
  color: #E0E0E0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-index-testimonial-author {
  font-weight: bold;
  color: #FFD700;
  text-align: right;
}

/* Detail Pages Section */
.page-index-detail-pages {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-index-detail-card {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

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

.page-index-detail-card-title a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-index-detail-card-description {
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* CTA Section */
.page-index-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%);
  color: #1A202C;
  text-align: center;
}

.page-index-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-cta-title {
  font-size: 2.8em;
  color: #1A202C;
  margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
  }

  .page-index-hero-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

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

  .page-index-about-content {
    flex-direction: column;
  }

  .page-index-about-text, .page-index-about-image {
    flex: none;
    width: 100%;
  }

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

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

@media (max-width: 768px) {
  .page-index-hero {
    min-height: auto;
  }

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

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

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

  .page-index-btn {
    width: 100%;
  }

  .page-index-feature-grid, .page-index-game-grid, .page-index-promo-grid, .page-index-steps-grid, .page-index-testimonial-grid, .page-index-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .page-index-section-subtitle {
    font-size: 1em;
  }

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

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

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

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

  .page-index-btn-large {
    font-size: 1em;
    padding: 12px 25px;
  }
}