/* style/index-gioi-thieu-bet188.css */

:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg-color: #10233F;
  --text-main-color: #F3F8FF;
  --text-secondary-color: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy-color: #08162B;
}

.page-index-gioi-thieu-bet188 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Light text on dark body background */
  background-color: var(--deep-navy-color); /* Body background from shared.css */
}

.page-index-gioi-thieu-bet188__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-index-gioi-thieu-bet188__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
}

.page-index-gioi-thieu-bet188__description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

/* Hero Section */
.page-index-gioi-thieu-bet188__hero-section {
  padding-top: 10px; /* Small top padding, assuming body handles header offset */
  padding-bottom: 60px;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.page-index-gioi-thieu-bet188__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.page-index-gioi-thieu-bet188__hero-content {
  flex: 1 1 500px; /* Allows content to shrink but prefers 500px */
  max-width: 600px;
  text-align: left;
}

.page-index-gioi-thieu-bet188__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

.page-index-gioi-thieu-bet188__hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-index-gioi-gioi-thieu-bet188__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-gioi-thieu-bet188__hero-image {
  flex: 1 1 450px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-gioi-thieu-bet188__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.page-index-gioi-thieu-bet188__btn-primary,
.page-index-gioi-thieu-bet188__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-index-gioi-thieu-bet188__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-gioi-thieu-bet188__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-index-gioi-thieu-bet188__btn-secondary {
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-index-gioi-thieu-bet188__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

/* About Section */
.page-index-gioi-thieu-bet188__about-section {
  padding: 80px 0;
}

.page-index-gioi-thieu-bet188__dark-section {
  background-color: var(--deep-navy-color);
  color: var(--text-main-color);
}

.page-index-gioi-thieu-bet188__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-index-gioi-thieu-bet188__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-index-gioi-thieu-bet188__text-block {
  flex: 1 1 500px;
  max-width: 600px;
}

.page-index-gioi-thieu-bet188__text-block p {
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
}

.page-index-gioi-thieu-bet188__image-block {
  flex: 1 1 450px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-index-gioi-thieu-bet188__image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Section */
.page-index-gioi-thieu-bet188__why-choose-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.page-index-gioi-thieu-bet188__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-index-gioi-thieu-bet188__feature-card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  color: var(--text-main-color);
}

.page-index-gioi-thieu-bet188__feature-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-gioi-thieu-bet188__feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-index-gioi-thieu-bet188__feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

/* Commitment Section */
.page-index-gioi-thieu-bet188__commitment-section {
  padding: 80px 0;
}

/* FAQ Section */
.page-index-gioi-thieu-bet188__faq-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.page-index-gioi-thieu-bet188__faq-list {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-gioi-thieu-bet188__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color);
}

.page-index-gioi-thieu-bet188__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--gold-color);
  list-style: none;
  outline: none;
}

.page-index-gioi-thieu-bet188__faq-question::-webkit-details-marker {
  display: none;
}

.page-index-gioi-thieu-bet188__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-gioi-thieu-bet188__faq-item[open] .page-index-gioi-thieu-bet188__faq-toggle {
  transform: rotate(45deg);
}

.page-index-gioi-thieu-bet188__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color);
}

/* CTA Bottom Section */
.page-index-gioi-thieu-bet188__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

.page-index-gioi-thieu-bet188__cta-bottom-section .page-index-gioi-thieu-bet188__section-title {
  color: var(--text-main-color);
}

.page-index-gioi-thieu-bet188__cta-bottom-section .page-index-gioi-thieu-bet188__description {
  margin-bottom: 40px;
}

.page-index-gioi-thieu-bet188__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* General image styling for content areas */
.page-index-gioi-thieu-bet188 img {
  max-width: 100%;
  height: auto;
  display: block; /* Prevents extra space below images */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-index-gioi-thieu-bet188__hero-container,
  .page-index-gioi-thieu-bet188__content-wrapper {
    gap: 30px;
    padding: 40px 16px;
  }

  .page-index-gioi-thieu-bet188__section-title {
    font-size: 2rem;
  }

  .page-index-gioi-thieu-bet188__hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-index-gioi-thieu-bet188__hero-content,
  .page-index-gioi-thieu-bet188__text-block {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Fixed header spacing for hero section */
  .page-index-gioi-thieu-bet188__hero-section {
    padding-top: 10px !important; /* Small top padding, assuming body handles header offset */
    padding-bottom: 40px;
  }

  .page-index-gioi-thieu-bet188__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px;
  }

  .page-index-gioi-thieu-bet188__hero-content {
    text-align: center;
    order: 2; /* Content below image on mobile */
  }

  .page-index-gioi-thieu-bet188__hero-image {
    order: 1; /* Image above content on mobile */
    margin-bottom: 30px;
  }

  .page-index-gioi-thieu-bet188__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Buttons responsive adaptation */
  .page-index-gioi-thieu-bet188__btn-primary,
  .page-index-gioi-thieu-bet188__btn-secondary,
  .page-index-gioi-thieu-bet188 a[class*="button"],
  .page-index-gioi-thieu-bet188 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-gioi-thieu-bet188__hero-cta-buttons,
  .page-index-gioi-thieu-bet188__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column;
    gap: 15px;
  }

  /* General image responsive adaptation */
  .page-index-gioi-thieu-bet188 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-index-gioi-thieu-bet188__section,
  .page-index-gioi-thieu-bet188__card,
  .page-index-gioi-thieu-bet188__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-index-gioi-thieu-bet188__section-title {
    font-size: 1.8rem;
  }

  .page-index-gioi-thieu-bet188__description {
    font-size: 1rem;
  }

  .page-index-gioi-thieu-bet188__content-wrapper {
    flex-direction: column;
    margin-top: 30px;
  }

  .page-index-gioi-thieu-bet188__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-index-gioi-thieu-bet188__about-section,
  .page-index-gioi-thieu-bet188__why-choose-section,
  .page-index-gioi-thieu-bet188__commitment-section,
  .page-index-gioi-thieu-bet188__faq-section,
  .page-index-gioi-thieu-bet188__cta-bottom-section {
    padding: 50px 0;
  }

  .page-index-gioi-thieu-bet188__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-index-gioi-thieu-bet188__feature-card {
    padding: 25px;
  }

  .page-index-gioi-thieu-bet188__faq-question {
    font-size: 1rem;
    padding: 15px;
  }

  .page-index-gioi-thieu-bet188__faq-answer {
    padding: 0 15px 15px;
  }

  /* Placeholder for icon-box-media (if it were present on this non-homepage) */
  .page-index-gioi-thieu-bet188__icon-box-media {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto 16px;
  }

  /* Placeholder for game-tabs (if it were present on this non-homepage) */
  .page-index-gioi-thieu-bet188__game-tabs {
    flex-direction: column;
  }
  .page-index-gioi-thieu-bet188__tab-nav {
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
  }
  .page-index-gioi-thieu-bet188__tab-nav button {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-index-gioi-thieu-bet188__game-panel {
    padding: 15px;
  }
}

/* General content image CSS for current page type (blog for non-homepage) */
.page-index-gioi-thieu-bet188__about-section .page-index-gioi-thieu-bet188__image-block img,
.page-index-gioi-thieu-bet188__why-choose-section .page-index-gioi-thieu-bet188__feature-card img,
.page-index-gioi-thieu-bet188__commitment-section .page-index-gioi-thieu-bet188__image-block img {
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}