/* 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: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-index__brand-name {
  color: #ffc107;
}

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

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

.page-index__btn--primary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #007bff;
}

.page-index__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-index__btn--secondary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-index__btn--outline {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.page-index__btn--outline:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-index__btn--text {
  background: none;
  border: none;
  color: #007bff;
  padding: 0;
  font-size: 1em;
  text-decoration: underline;
}

.page-index__btn--text:hover {
  color: #0056b3;
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  min-height: 600px;
}

.page-index__hero-content {
  max-width: 600px;
  text-align: left;
  padding: 20px;
}

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

.page-index__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
  text-align: left;
  max-width: none;
}

.page-index__hero-cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-index__hero-image-wrapper {
  flex-shrink: 0;
}

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

/* About Section */
.page-index__about {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.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, box-shadow 0.3s ease;
}

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

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

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

.page-index__feature-description {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* Featured Platforms Section */
.page-index__featured-platforms {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__platform-card {
  background-color: #f8f9fa;
  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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-index__platform-name {
  font-size: 1.6em;
  color: #007bff;
  margin: 20px 15px 10px 15px;
}

.page-index__platform-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

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

.page-index__section-cta {
  text-align: center;
  margin-top: 50px;
}

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

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

.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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.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: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-index__promo-title {
  font-size: 1.6em;
  color: #ffc107;
  margin: 20px 15px 10px 15px;
}

.page-index__promo-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

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

/* How It Works Section */
.page-index__how-it-works {
  padding: 80px 0;
  background-color: #fff;
}

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

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

.page-index__step-number {
  font-size: 3em;
  color: #ffc107;
  font-weight: bold;
  margin-bottom: 15px;
}

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

.page-index__step-description {
  font-size: 1em;
  color: #666;
}

/* News & Guides Section */
.page-index__news-guides {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-index__article-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;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-index__article-title {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
}

.page-index__article-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-index__article-title a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-index__article-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-index__article-card .page-index__btn--text {
  margin: 0 15px 20px 15px;
  align-self: flex-start;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling {
  padding: 80px 0;
  background-color: #007bff;
  color: #fff;
  text-align: center;
}

.page-index__responsible-gambling .page-index__section-title {
  color: #ffc107;
}

.page-index__responsible-gambling .page-index__paragraph {
  color: #e0e0e0;
}

.page-index__responsible-gambling .page-index__btn--outline {
  color: #fff;
  border-color: #fff;
}

.page-index__responsible-gambling .page-index__btn--outline:hover {
  background-color: #fff;
  color: #007bff;
}

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

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

.page-index__detail-card {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-index__detail-title a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.page-index__detail-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index__detail-card .page-index__btn--text {
  align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index__hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 60px 0;
  }

  .page-index__hero-content {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }

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

  .page-index__hero-description {
    font-size: 1.1em;
    text-align: center;
  }

  .page-index__hero-cta-group {
    justify-content: center;
  }

  .page-index__hero-image {
    max-width: 80%;
    margin-top: 40px;
  }

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

  .page-index__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 40px 0;
  }

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

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

  .page-index__hero-image {
    max-width: 90%;
  }

  .page-index__features-grid,
  .page-index__platform-grid,
  .page-index__promo-grid,
  .page-index__steps-grid,
  .page-index__article-grid,
  .page-index__detail-grid {
    grid-template-columns: 1fr;
  }

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

  .page-index__feature-title,
  .page-index__platform-name,
  .page-index__promo-title,
  .page-index__step-title,
  .page-index__article-title,
  .page-index__detail-title {
    font-size: 1.3em;
  }

  .page-index__btn {
    width: 100%;
    box-sizing: border-box;
  }

  .page-index__hero-cta-group {
    flex-direction: column;
  }
}