/* style/resources-hello88-latest-promotions-analysis.css */

/* Base Styles */
.page-resources-hello88-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so light text */
  background-color: #000000; /* Assuming body background from shared.css is black */
}

.page-resources-hello88-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-hello88-latest-promotions-analysis__dark-bg {
  background-color: #0A1931;
  color: #ffffff;
}

.page-resources-hello88-latest-promotions-analysis__light-bg {
  background-color: #ffffff;
  color: #333333;
}

/* Hero Section */
.page-resources-hello88-latest-promotions-analysis__hero-section {
  position: relative;
  padding: 100px 0 60px; /* Adjust padding-top for header offset */
  padding-top: var(--header-offset, 120px);
  text-align: center;
  overflow: hidden;
}

.page-resources-hello88-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-hello88-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
}

.page-resources-hello88-latest-promotions-analysis__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-hello88-latest-promotions-analysis__intro-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

.page-resources-hello88-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-resources-hello88-latest-promotions-analysis__btn-primary,
.page-resources-hello88-latest-promotions-analysis__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hello88-latest-promotions-analysis__btn-primary {
  background-color: #FFD700;
  color: #0A1931;
  border: 2px solid #FFD700;
}

.page-resources-hello88-latest-promotions-analysis__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-resources-hello88-latest-promotions-analysis__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-resources-hello88-latest-promotions-analysis__btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* Content Area */
.page-resources-hello88-latest-promotions-analysis__content-area {
  padding: 60px 0;
}

.page-resources-hello88-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #0A1931;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-hello88-latest-promotions-analysis__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
}

.page-resources-hello88-latest-promotions-analysis__subtitle {
  font-size: 1.8em;
  color: #0A1931;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-hello88-latest-promotions-analysis p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-resources-hello88-latest-promotions-analysis__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-hello88-latest-promotions-analysis__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* Promotion Grid */
.page-resources-hello88-latest-promotions-analysis__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hello88-latest-promotions-analysis__card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  color: #333333;
}

.page-resources-hello88-latest-promotions-analysis__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-hello88-latest-promotions-analysis__card-title {
  font-size: 1.6em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-resources-hello88-latest-promotions-analysis__card p {
  flex-grow: 1;
  color: #555555;
}

.page-resources-hello88-latest-promotions-analysis__card-button {
  display: inline-block;
  background-color: #0A1931;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-hello88-latest-promotions-analysis__card-button:hover {
  background-color: #FFD700;
  color: #0A1931;
}

/* How-to Guide */
.page-resources-hello88-latest-promotions-analysis__how-to-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-hello88-latest-promotions-analysis__step-item {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-resources-hello88-latest-promotions-analysis__step-title {
  font-size: 1.8em;
  color: #0A1931;
  margin-bottom: 15px;
}

.page-resources-hello88-latest-promotions-analysis__step-item p {
  color: #555555;
  flex-grow: 1;
}

/* Video Section */
.page-resources-hello88-latest-promotions-analysis__video-section {
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.page-resources-hello88-latest-promotions-analysis__video-section .page-resources-hello88-latest-promotions-analysis__section-title {
  color: #ffffff;
}

.page-resources-hello88-latest-promotions-analysis__video-section p {
  color: #f0f0f0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-resources-hello88-latest-promotions-analysis__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 30px;
}

.page-resources-hello88-latest-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-hello88-latest-promotions-analysis__video-cta {
  margin-top: 20px;
}

/* FAQ Section */
.page-resources-hello88-latest-promotions-analysis__faq-list {
  margin-top: 40px;
}

.page-resources-hello88-latest-promotions-analysis__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-resources-hello88-latest-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

.page-resources-hello88-latest-promotions-analysis__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-hello88-latest-promotions-analysis__faq-title {
  font-size: 1.2em;
  color: #0A1931;
  margin: 0;
}

.page-resources-hello88-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-resources-hello88-latest-promotions-analysis__faq-item.active .page-resources-hello88-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-hello88-latest-promotions-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #555555;
}

.page-resources-hello88-latest-promotions-analysis__faq-item.active .page-resources-hello88-latest-promotions-analysis__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-resources-hello88-latest-promotions-analysis__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-hello88-latest-promotions-analysis__main-title {
    font-size: 3em;
  }
  .page-resources-hello88-latest-promotions-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-hello88-latest-promotions-analysis {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-resources-hello88-latest-promotions-analysis__hero-section {
    padding: 80px 0 40px;
    padding-top: var(--header-offset, 120px) !important;
  }

  .page-resources-hello88-latest-promotions-analysis__main-title {
    font-size: 2.2em;
  }

  .page-resources-hello88-latest-promotions-analysis__intro-text {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-resources-hello88-latest-promotions-analysis__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-hello88-latest-promotions-analysis__btn-primary,
  .page-resources-hello88-latest-promotions-analysis__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-resources-hello88-latest-promotions-analysis__content-area {
    padding: 40px 0;
  }

  .page-resources-hello88-latest-promotions-analysis__container {
    padding: 0 15px;
  }

  .page-resources-hello88-latest-promotions-analysis__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-resources-hello88-latest-promotions-analysis__subtitle {
    font-size: 1.5em;
  }

  .page-resources-hello88-latest-promotions-analysis__promotion-grid,
  .page-resources-hello88-latest-promotions-analysis__how-to-guide {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-resources-hello88-latest-promotions-analysis__card {
    padding: 20px;
  }

  .page-resources-hello88-latest-promotions-analysis__card-image {
    height: 180px;
  }

  .page-resources-hello88-latest-promotions-analysis__card-title {
    font-size: 1.4em;
  }

  .page-resources-hello88-latest-promotions-analysis__card-button {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .page-resources-hello88-latest-promotions-analysis__video-section {
    padding: 40px 15px;
  }

  .page-resources-hello88-latest-promotions-analysis__video-wrapper {
    padding-bottom: 60%; /* Slightly adjust for smaller screens */
  }

  .page-resources-hello88-latest-promotions-analysis__video,
  .page-resources-hello88-latest-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-resources-hello88-latest-promotions-analysis__video-section,
  .page-resources-hello88-latest-promotions-analysis__video-container,
  .page-resources-hello88-latest-promotions-analysis__video-wrapper,
  .page-resources-hello88-latest-promotions-analysis__section,
  .page-resources-hello88-latest-promotions-analysis__card,
  .page-resources-hello88-latest-promotions-analysis__container,
  .page-resources-hello88-latest-promotions-analysis__how-to-guide {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-resources-hello88-latest-promotions-analysis__faq-question {
    padding: 15px 20px;
  }

  .page-resources-hello88-latest-promotions-analysis__faq-title {
    font-size: 1.1em;
  }

  .page-resources-hello88-latest-promotions-analysis__faq-answer {
    padding: 10px 20px;
  }

  .page-resources-hello88-latest-promotions-analysis__cta-bottom {
    flex-direction: column;
    gap: 15px;
  }
}

/* Ensure image color filters are not used */
.page-resources-hello88-latest-promotions-analysis img {
  filter: none; /* Prohibit any CSS filters */
}