/* style/blog-how-to-get-exclusive-offers-via-hello88-login.css */

:root {
  --hello88-primary-color: #11A84E;
  --hello88-secondary-color: #22C768;
  --hello88-bg-color: #08160F;
  --hello88-card-bg: #11271B;
  --hello88-text-main: #F2FFF6;
  --hello88-text-secondary: #A7D9B8;
  --hello88-border-color: #2E7A4E;
  --hello88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login {
  font-family: 'Arial', sans-serif;
  color: var(--hello88-text-main); /* Default text color for dark background */
  background-color: var(--hello88-bg-color); /* Body background color from shared.css is dark */
  line-height: 1.6;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
  position: relative; /* Ensure content is above the image visually, but below in DOM */
  z-index: 2;
  background-color: transparent; /* No overlay on image */
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--hello88-text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__description {
  font-size: 1.15rem;
  color: var(--hello88-text-secondary);
  margin-bottom: 30px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-primary,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-primary {
  background: var(--hello88-button-gradient);
  color: var(--hello88-text-main);
  border: none;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-secondary {
  background-color: transparent;
  color: var(--hello88-secondary-color);
  border: 2px solid var(--hello88-secondary-color);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-secondary:hover {
  background-color: var(--hello88-secondary-color);
  color: var(--hello88-bg-color);
  transform: translateY(-2px);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__content-area,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__offers-section,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__games-section,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__mobile-app-section,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__security-section,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-section,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__dark-bg {
  background-color: var(--hello88-bg-color);
  color: var(--hello88-text-main);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__light-bg {
  background-color: var(--hello88-card-bg); /* Using card bg for lighter section */
  color: var(--hello88-text-main);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--hello88-text-main);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: var(--hello88-text-main);
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__paragraph {
  font-size: 1.1rem;
  color: var(--hello88-text-secondary);
  text-align: justify;
  margin-bottom: 20px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__paragraph .highlight {
  color: var(--hello88-secondary-color);
  font-weight: 600;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__text-link {
  color: var(--hello88-secondary-color);
  text-decoration: underline;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__step-card {
  background-color: var(--hello88-card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--hello88-text-main);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__step-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--hello88-secondary-color);
  margin-bottom: 15px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__step-description {
  font-size: 1rem;
  color: var(--hello88-text-secondary);
  text-align: center;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--hello88-text-secondary);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--hello88-secondary-color);
  font-weight: bold;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__offers-grid,
.page-blog-how-to-get-exclusive-offers-via-hello88-how-to-get-exclusive-offers-via-hello88-login__games-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-card,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__game-card {
  background-color: var(--hello88-card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--hello88-text-main);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-image,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__game-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-title,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--hello88-secondary-color);
  margin-bottom: 10px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-description,
.page-blog-how-to-get-exclusive-offers-via-hello88-login__game-description {
  font-size: 1rem;
  color: var(--hello88-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__mobile-app-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__app-text {
  flex: 1;
  min-width: 300px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-full-width {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
  display: block;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-item {
  background-color: var(--hello88-card-bg);
  border: 1px solid var(--hello88-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--hello88-text-main);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--hello88-text-main);
  background-color: var(--hello88-card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
  user-select: none;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-question:hover {
  background-color: rgba(var(--hello88-secondary-color-rgb), 0.1);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--hello88-secondary-color);
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-item[open] .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-toggle {
  content: '−';
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1rem;
  color: var(--hello88-text-secondary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-item[open] .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-bottom {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--hello88-primary-color);
  border-radius: 12px;
  margin-bottom: 60px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-bottom .page-blog-how-to-get-exclusive-offers-via-hello88-login__section-title {
  color: var(--hello88-text-main);
  margin-bottom: 20px;
}

.page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-bottom .page-blog-how-to-get-exclusive-offers-via-hello88-login__paragraph {
  color: var(--hello88-text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__app-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-content,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__content-area,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__offers-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__games-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__mobile-app-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__security-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-bottom {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__main-title {
    font-size: 2rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__description {
    font-size: 1rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-primary,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__step-card,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-card,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__game-card {
    padding: 20px;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login video,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__video-section,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__video-container,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__paragraph,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__list-item,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__step-description,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-description,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__game-description,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-question,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-answer p {
    font-size: 0.95rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__faq-question {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__main-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__section-title {
    font-size: 1.6rem;
  }

  .page-blog-how-to-get-exclusive-offers-via-hello88-login__step-title,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__offer-title,
  .page-blog-how-to-get-exclusive-offers-via-hello88-login__game-title {
    font-size: 1.1rem;
  }
}