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

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

.page-index__section-title {
  font-size: 2.5em;
  color: #8B0000; /* Dark Red */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

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

/* Hero Section */
.page-index__hero {
  background: linear-gradient(135deg, #8B0000 0%, #a02c2c 100%); /* Dark Red to slightly lighter Red */
  color: #FFD700; /* Gold text for contrast */
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index__hero-content {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-index__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #FFD700; /* Gold */
}

.page-index__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  font-weight: 300;
  color: #ffe066; /* Lighter gold for subtitle */
}

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

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

.page-index__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.page-index__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700; /* Gold border */
}

.page-index__btn--secondary:hover {
  background-color: #FFD700;
  color: #8B0000; /* Dark Red */
  transform: translateY(-2px);
}

.page-index__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.3;
  z-index: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.page-index__hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(20%);
}

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

/* Why Choose Section */
.page-index__why-choose {
  padding: 80px 0;
  background-color: #f0f0f0;
}

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

.page-index__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-index__feature-title {
  font-size: 1.5em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 15px;
}

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

.page-index__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  background-color: #FFD700;
  color: #8B0000;
}

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

/* Get Started Section */
.page-index__get-started {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index__step-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-index__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3);
}

.page-index__step-title {
  font-size: 1.4em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 10px;
}

.page-index__step-text {
  font-size: 0.95em;
  color: #777;
  margin-bottom: 20px;
}

/* Tips & Strategies Section */
.page-index__tips-strategies {
  padding: 80px 0;
  background-color: #f0f0f0;
  text-align: left;
}

.page-index__tips-strategies .page-index__section-title {
  text-align: center;
}

.page-index__article-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index__article-intro,
.page-index__article-text,
.page-index__article-conclusion {
  font-size: 1.1em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.8;
}

.page-index__article-subtitle {
  font-size: 1.6em;
  color: #8B0000; /* Dark Red */
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700; /* Gold */
  padding-left: 15px;
}

.page-index__article-conclusion {
  font-style: italic;
  text-align: center;
  margin-top: 40px;
  font-weight: bold;
  color: #666;
}

/* 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(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.page-index__detail-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid #FFD700; /* Gold accent */
}

.page-index__detail-title {
  font-size: 1.4em;
  color: #8B0000; /* Dark Red */
  margin-bottom: 15px;
}

.page-index__detail-title a {
  color: #8B0000;
  text-decoration: none;
}

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

.page-index__detail-description {
  font-size: 0.95em;
  color: #777;
  margin-bottom: 20px;
}

/* Responsible Gambling Section */
.page-index__responsible-gambling {
  padding: 60px 0;
  background-color: #8B0000; /* Dark Red background */
  color: #FFD700; /* Gold text */
  text-align: center;
}

.page-index__responsible-gambling .page-index__section-title {
  color: #FFD700; /* Gold */
}

.page-index__responsible-gambling .page-index__section-title::after {
  background-color: #FFD700; /* Gold */
}

.page-index__responsible-gambling .page-index__section-description {
  color: #ffe066; /* Lighter gold */
  margin-bottom: 0;
}

/* CTA App Section */
.page-index__cta-app {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.page-index__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.page-index__btn--large:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-index__app-download-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-index__hero-title {
    font-size: 3em;
  }
  .page-index__hero-subtitle {
    font-size: 1.3em;
  }
  .page-index__hero-image-wrapper {
    width: 60%;
  }
}

@media (max-width: 768px) {
  .page-index__hero {
    padding: 60px 0;
  }
  .page-index__hero-title {
    font-size: 2.5em;
  }
  .page-index__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-index__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-index__section-title {
    font-size: 2em;
  }
  .page-index__section-description {
    font-size: 1em;
  }
  .page-index__hero-image-wrapper {
    width: 70%;
    transform: translateX(10%);
  }
  .page-index__article-subtitle {
    font-size: 1.4em;
  }
  .page-index__article-intro, .page-index__article-text, .page-index__article-conclusion {
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-index__hero {
    padding: 40px 0;
  }
  .page-index__hero-title {
    font-size: 2em;
  }
  .page-index__hero-subtitle {
    font-size: 1em;
  }
  .page-index__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index__section-title {
    font-size: 1.8em;
  }
  .page-index__hero-image-wrapper {
    width: 80%;
    transform: translateX(5%);
  }
  .page-index__feature-item, .page-index__step-item, .page-index__detail-item {
    padding: 20px;
  }
  .page-index__feature-title, .page-index__step-title, .page-index__detail-title {
    font-size: 1.3em;
  }
  .page-index__app-download-image {
    max-width: 300px;
  }
}