/* 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__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.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: #007BFF;
  color: #fff;
  border: 1px solid #007BFF;
}

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

.page-index__btn--secondary {
  background-color: transparent;
  color: #007BFF;
  border: 1px solid #007BFF;
}

.page-index__btn--secondary:hover {
  background-color: #e0f0ff;
  color: #0056b3;
}

.page-index__btn--outline {
  background-color: transparent;
  color: #007BFF;
  border: 2px solid #007BFF;
  padding: 10px 20px;
}

.page-index__btn--outline:hover {
  background-color: #007BFF;
  color: #fff;
}

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

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

.page-index__link-text {
  color: #007BFF;
  text-decoration: none;
}

.page-index__link-text:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-index__hero-section {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.page-index__hero-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

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

.page-index__hero-actions .page-index__btn {
  margin: 0 10px;
}

.page-index__hero-image-wrapper {
  margin-top: 50px;
}

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

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

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

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

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

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

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

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

/* Game Categories Section */
.page-index__game-categories-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__category-card {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-index__category-card .page-index__category-title {
  font-size: 1.4em;
  color: #007BFF;
  padding: 15px 20px 5px;
  margin: 0;
}

.page-index__category-card .page-index__category-description {
  color: #666;
  padding: 0 20px 15px;
}

.page-index__category-card .page-index__btn {
  margin: 0 20px 20px;
}

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

.page-index__promotions-section .page-index__section-title {
  color: #333;
}

.page-index__promotions-section .page-index__section-subtitle {
  color: #555;
}

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

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

.page-index__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index__promotion-title {
  font-size: 1.6em;
  color: #007BFF;
  margin-bottom: 10px;
  padding: 0 20px;
}

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

/* Responsible Gambling Section */
.page-index__responsible-gambling-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-index__responsible-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

.page-index__detail-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-index__detail-title a {
  color: #007BFF;
  text-decoration: none;
}

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

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

/* CTA Section */
.page-index__cta-section {
  background: linear-gradient(135deg, #0056b3, #007BFF);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

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

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

.page-index__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 2.8em;
  }
  .page-index__hero-description {
    font-size: 1.2em;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__responsible-content {
    flex-direction: column;
    text-align: center;
  }
  .page-index__responsible-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index__hero-section {
    padding: 80px 0;
  }
  .page-index__hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-index__hero-actions .page-index__btn {
    margin: 0;
  }
  .page-index__features-grid,
  .page-index__categories-grid,
  .page-index__promotions-grid,
  .page-index__detail-pages-grid {
    grid-template-columns: 1fr;
  }
  .page-index__cta-title {
    font-size: 2.2em;
  }
  .page-index__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 576px) {
  .page-index__hero-title {
    font-size: 2.2em;
  }
  .page-index__hero-description {
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__section-subtitle {
    font-size: 1em;
  }
  .page-index__feature-title,
  .page-index__category-title,
  .page-index__promotion-title,
  .page-index__detail-title {
    font-size: 1.3em;
  }
}