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

.page-index__hero {
  background: linear-gradient(135deg, #007BFF, #4da3ff);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

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

.page-index__hero h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-index__hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-index__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-index__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index__btn--secondary {
  background-color: #0056b3;
  color: #fff;
  border: 2px solid #fff;
}

.page-index__btn--secondary:hover {
  background-color: #003d7a;
  transform: translateY(-2px);
}

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

.page-index__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #007BFF;
  color: #fff;
}

.page-index__btn--small:hover {
  background-color: #0056b3;
  transform: translateY(-1px);
}

.page-index__hero-image-wrapper {
  max-width: 600px;
  margin-top: 40px;
}

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

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

.page-index__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-index__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-index__about {
  background-color: #f9f9f9;
}

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

.page-index__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-top: 5px solid #007BFF;
}

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

.page-index__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index__feature-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-index__games {
  background-color: #fff;
}

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

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

.page-index__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-index__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.page-index__game-card h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin: 20px 15px 10px;
}

.page-index__game-card p {
  color: #666;
  font-size: 0.95em;
  padding: 0 15px 20px;
}

.page-index__game-card .page-index__btn--small {
  margin-bottom: 20px;
}

.page-index__promotions {
  background-color: #f9f9f9;
}

.page-index__promo-news-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;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

.page-index__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-index__promo-card h3 {
  font-size: 1.4em;
  color: #007BFF;
  margin: 20px 15px 10px;
}

.page-index__promo-card p {
  color: #666;
  font-size: 0.95em;
  padding: 0 15px 20px;
}

.page-index__promo-card .page-index__btn--small {
  margin-bottom: 20px;
  background-color: #FFD700;
  color: #0056b3;
}

.page-index__promo-card .page-index__btn--small:hover {
  background-color: #e6c200;
}

.page-index__transactions {
  background-color: #fff;
}

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

.page-index__transaction-item {
  background-color: #f0f8ff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #007BFF;
}

.page-index__transaction-item:hover {
  transform: translateY(-5px);
}

.page-index__transaction-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.1));
}

.page-index__transaction-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-index__transaction-item p {
  color: #666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-index__responsible-gambling {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.page-index__responsible-gambling p {
  color: #555;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-index__detail-pages {
  background-color: #fff;
}

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

.page-index__detail-page-item {
  background-color: #f0f8ff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-left: 5px solid #FFD700;
}

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

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

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

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

.page-index__detail-page-item p {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-index__detail-link {
  font-weight: bold;
}

.page-index__cta-final {
  background: linear-gradient(45deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.page-index__cta-final h2 {
  color: #FFD700;
  font-size: 2.8em;
  margin-bottom: 20px;
}

.page-index__cta-final p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

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

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

  .page-index__hero h1 {
    font-size: 2.5em;
  }

  .page-index__hero p {
    font-size: 1em;
  }

  .page-index__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-index__btn {
    width: 100%;
    max-width: 280px;
  }

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

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

  .page-index__features, .page-index__game-categories, .page-index__promo-news-grid, .page-index__transaction-grid, .page-index__detail-page-list {
    grid-template-columns: 1fr;
  }

  .page-index__cta-final h2 {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-index__hero h1 {
    font-size: 2em;
  }

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

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

  .page-index__hero-image {
    border-radius: 5px;
  }
}