/* 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: #1A237E;
  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: #FFC107;
  border-radius: 2px;
}

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

.page-index-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
}

.page-index-btn-primary {
  background-color: #FFC107;
  color: #1A237E;
  border: 2px solid #FFC107;
}

.page-index-btn-primary:hover {
  background-color: #e5ac00;
  border-color: #e5ac00;
  transform: translateY(-2px);
}

.page-index-btn-secondary {
  background-color: transparent;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-index-btn-secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-2px);
}

.page-index-btn-small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-index-btn-large {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-index-btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #1A237E;
  color: #FFC107;
  border: 2px solid #1A237E;
  padding: 12px 25px;
  border-radius: 8px;
}

.page-index-btn-download img {
  width: 24px;
  height: 24px;
}

.page-index-btn-download:hover {
  background-color: #0d124f;
  border-color: #0d124f;
  transform: translateY(-2px);
}

.page-index-responsive-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.page-index-hero-section {
  background: linear-gradient(135deg, #1A237E, #3f479a);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-index-hero-section .page-index-container {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-index-hero-content {
  flex: 1;
}

.page-index-hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFC107;
}

.page-index-hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 600px;
  color: #e0e0e0;
}

.page-index-hero-buttons {
  display: flex;
  gap: 20px;
}

.page-index-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-hero-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 450px;
  object-fit: contain;
}

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

.page-index-grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-index-content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-index-image-block img {
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Why Choose Section */
.page-index-why-choose-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

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

.page-index-feature-card {
  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-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.page-index-feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #FFC107;
}

.page-index-feature-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-index-feature-card p {
  color: #666;
}

/* Games Section */
.page-index-games-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index-game-card {
  background-color: #fdfdfd;
  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;
}

.page-index-game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-game-card h3 {
  font-size: 1.4em;
  color: #1A237E;
  margin: 20px 0 10px;
}

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

.page-index-game-card .page-index-btn {
  margin-bottom: 20px;
}

/* Promo Section */
.page-index-promo-section {
  padding: 80px 0;
  background-color: #1A237E;
  color: #fff;
}

.page-index-promo-section .page-index-section-title,
.page-index-promo-section .page-index-section-subtitle {
  color: #FFC107;
}

.page-index-promo-section .page-index-section-title::after {
  background-color: #fff;
}

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

.page-index-promo-card {
  background-color: #2a348e;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-index-promo-card:hover {
  transform: translateY(-10px);
}

.page-index-promo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-index-promo-title {
  font-size: 1.5em;
  margin: 20px 0 10px;
  color: #FFC107;
}

.page-index-promo-card p {
  color: #e0e0e0;
  padding: 0 20px 20px;
}

.page-index-promo-card .page-index-btn {
  margin-bottom: 20px;
  background-color: #FFC107;
  color: #1A237E;
  border: none;
}

.page-index-promo-card .page-index-btn:hover {
  background-color: #e5ac00;
}

/* Guide Section */
.page-index-guide-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-index-guide-step {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.page-index-step-icon {
  width: 60px;
  height: 60px;
  background-color: #FFC107;
  color: #1A237E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
  border: 3px solid #1A237E;
}

.page-index-step-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-index-guide-step p {
  color: #666;
  margin-bottom: 20px;
}

.page-index-link-text {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-index-link-text:hover {
  text-decoration: underline;
  color: #FFC107;
}

/* Download Section */
.page-index-download-section {
  padding: 80px 0;
  background: linear-gradient(90deg, #1A237E 0%, #3f479a 100%);
  color: #fff;
}

.page-index-download-section .page-index-container {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
}

.page-index-download-content {
  flex: 1;
}

.page-index-download-section .page-index-section-title {
  color: #FFC107;
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.page-index-download-section .page-index-section-title::after {
  display: none;
}

.page-index-download-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-index-download-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.page-index-download-note {
  font-style: italic;
  color: #ccc;
  margin-bottom: 20px;
}

.page-index-qr-code {
  width: 150px;
  height: 150px;
  background-color: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-index-download-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-download-image img {
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-index-responsible-gambling-section h3 {
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.5em;
}

.page-index-responsible-gambling-section ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444;
}

.page-index-responsible-gambling-section ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-index-responsible-gambling-section ul li strong {
  color: #1A237E;
}

/* FAQ Section */
.page-index-faq-section {
  padding: 80px 0;
  background-color: #f0f2f5;
}

.page-index-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-index-accordion-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-index-accordion-header {
  width: 100%;
  background-color: #1A237E;
  color: #fff;
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-index-accordion-header:hover {
  background-color: #2a348e;
}

.page-index-accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-index-accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background-color: #f9f9f9;
  color: #444;
}

.page-index-accordion-content.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-index-accordion-content p {
  margin-bottom: 10px;
}

.page-index-accordion-content a {
  color: #1A237E;
  font-weight: bold;
  text-decoration: none;
}

.page-index-accordion-content a:hover {
  text-decoration: underline;
  color: #FFC107;
}

/* Sub-pages Section */
.page-index-sub-pages-section {
  padding: 80px 0;
  background-color: #fff;
}

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

.page-index-sub-page-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-sub-page-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-index-sub-page-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-index-sub-page-title a {
  color: #1A237E;
  text-decoration: none;
  font-weight: bold;
}

.page-index-sub-page-title a:hover {
  color: #FFC107;
  text-decoration: underline;
}

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

/* CTA Section */
.page-index-cta-section {
  background-color: #FFC107;
  padding: 80px 0;
  text-align: center;
  color: #1A237E;
}

.page-index-cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A237E;
}

.page-index-cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #333;
}

.page-index-cta-section .page-index-btn-primary {
  background-color: #1A237E;
  color: #FFC107;
  border-color: #1A237E;
}

.page-index-cta-section .page-index-btn-primary:hover {
  background-color: #0d124f;
  border-color: #0d124f;
}

/* Floating Promo */
.page-index-floating-promo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #FFC107;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.3s ease;
}

.page-index-floating-promo:hover {
  transform: translateY(-5px);
}

.page-index-floating-promo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1A237E;
  font-weight: bold;
}

.page-index-floating-icon {
  width: 30px;
  height: 30px;
}

.page-index-floating-text {
  font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-hero-section .page-index-container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-hero-content,
  .page-index-hero-image {
    flex: none;
    width: 100%;
  }

  .page-index-hero-buttons {
    justify-content: center;
  }

  .page-index-hero-title {
    font-size: 3em;
  }

  .page-index-hero-description {
    font-size: 1.1em;
  }

  .page-index-grid-2-cols {
    grid-template-columns: 1fr;
  }

  .page-index-download-section .page-index-container {
    flex-direction: column;
    text-align: center;
  }

  .page-index-download-section .page-index-section-title {
    text-align: center;
  }

  .page-index-download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-index-section-title {
    font-size: 2em;
  }

  .page-index-hero-title {
    font-size: 2.5em;
  }

  .page-index-hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-grid-3-cols {
    grid-template-columns: 1fr;
  }

  .page-index-game-cards-grid,
  .page-index-promo-grid,
  .page-index-sub-page-grid {
    grid-template-columns: 1fr;
  }

  .page-index-download-buttons {
    flex-direction: column;
  }

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

  .page-index-cta-description {
    font-size: 1.2em;
  }

  .page-index-floating-promo {
    bottom: 20px;
    right: 20px;
    padding: 8px 15px;
  }

  .page-index-floating-icon {
    width: 25px;
    height: 25px;
  }

  .page-index-floating-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-index-container {
    padding: 0 15px;
  }

  .page-index-hero-section {
    padding: 60px 0;
  }

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

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

  .page-index-btn-primary, .page-index-btn-secondary, .page-index-btn-download {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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

  .page-index-section-subtitle {
    font-size: 1em;
  }

  .page-index-feature-title,
  .page-index-game-title,
  .page-index-promo-title,
  .page-index-step-title,
  .page-index-sub-page-title {
    font-size: 1.2em;
  }

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

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