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

.page-index-68win-app-intro__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-68win-app-intro__hero {
  background: linear-gradient(135deg, #0A2342 0%, #1A3F70 100%); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-68win-app-intro__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  font-weight: bold;
}

.page-index-68win-app-intro__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0; /* Lighter text for contrast */
}

.page-index-68win-app-intro__hero-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-index-68win-app-intro__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue text */
}

.page-index-68win-app-intro__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-index-68win-app-intro__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-68win-app-intro__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-index-68win-app-intro__hero-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* General Sections */
.page-index-68win-app-intro__section {
  padding: 60px 0;
}

.page-index-68win-app-intro__section--alt-bg {
  background-color: #eef2f6;
}

.page-index-68win-app-intro__section-title {
  font-size: 2.5em;
  color: #0A2342; /* Dark blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-index-68win-app-intro__sub-title {
  font-size: 1.8em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-index-68win-app-intro__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Features Grid */
.page-index-68win-app-intro__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-68win-app-intro__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;
}

.page-index-68win-app-intro__feature-item:hover {
  transform: translateY(-5px);
}

.page-index-68win-app-intro__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.page-index-68win-app-intro__feature-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-index-68win-app-intro__feature-item p {
  color: #555;
}

/* Download Grid */
.page-index-68win-app-intro__download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-index-68win-app-intro__download-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-index-68win-app-intro__download-image {
  max-width: 180px;
  height: auto;
  margin-bottom: 25px;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.15));
}

.page-index-68win-app-intro__download-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-bottom: 20px;
}

.page-index-68win-app-intro__list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 30px;
}

.page-index-68win-app-intro__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #444;
}

.page-index-68win-app-intro__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD700; /* Gold checkmark */
  font-weight: bold;
}

.page-index-68win-app-intro__list--numbered {
  list-style: decimal;
  padding-left: 20px;
}

.page-index-68win-app-intro__list--numbered li::before {
  content: none;
}

.page-index-68win-app-intro__list--numbered li {
  padding-left: 0;
}

/* Game List */
.page-index-68win-app-intro__game-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-index-68win-app-intro__game-list li {
  background-color: #0A2342;
  color: #FFD700;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}

.page-index-68win-app-intro__game-list li:hover {
  background-color: #1A3F70;
}

.page-index-68win-app-intro__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-index-68win-app-intro__faq {
  margin-top: 40px;
}

.page-index-68win-app-intro__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-index-68win-app-intro__faq-question {
  padding: 20px;
  margin: 0;
  font-size: 1.3em;
  color: #0A2342;
  cursor: pointer;
  background-color: #f5f5f5;
  position: relative;
}

.page-index-68win-app-intro__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-68win-app-intro__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-68win-app-intro__faq-answer {
  padding: 0 20px 20px;
  margin: 0;
  color: #555;
  display: none; /* Hidden by default */
}

.page-index-68win-app-intro__faq-answer.active {
  display: block;
}

/* CTA Section */
.page-index-68win-app-intro__section--cta {
  background: linear-gradient(90deg, #0A2342, #1A3F70);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-index-68win-app-intro__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-index-68win-app-intro__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

.page-index-68win-app-intro__btn--large {
  padding: 18px 40px;
  font-size: 1.25em;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-index-68win-app-intro__hero-title {
    font-size: 2.5em;
  }

  .page-index-68win-app-intro__hero-description {
    font-size: 1em;
  }

  .page-index-68win-app-intro__section-title {
    font-size: 2em;
  }

  .page-index-68win-app-intro__sub-title {
    font-size: 1.5em;
  }

  .page-index-68win-app-intro__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-68win-app-intro__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-index-68win-app-intro__features-grid,
  .page-index-68win-app-intro__download-grid,
  .page-index-68win-app-intro__game-list {
    grid-template-columns: 1fr;
  }

  .page-index-68win-app-intro__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-index-68win-app-intro__hero {
    padding: 60px 0;
  }

  .page-index-68win-app-intro__hero-title {
    font-size: 2em;
  }

  .page-index-68win-app-intro__section-title {
    font-size: 1.8em;
  }

  .page-index-68win-app-intro__cta-title {
    font-size: 2em;
  }

  .page-index-68win-app-intro__cta-description {
    font-size: 1em;
  }
}