/* style/blog-how-to-get-hello88-exclusive-codes.css */

/* Base styles for the page content */
.page-blog-how-to-get-hello88-exclusive-codes {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #F2FFF6); /* Default light text for dark body background */
  background-color: var(--bg-color, #08160F); /* Ensure dark background */
}

/* Color palette variables */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg-color: #11271B;
  --bg-color-custom: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* --- Hero Section --- */
.page-blog-how-to-get-hello88-exclusive-codes__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: var(--bg-color-custom);
}

.page-blog-how-to-get-hello88-exclusive-codes__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px;
  object-fit: cover;
  display: block;
  margin-bottom: 40px; /* Space between image and content */
}

.page-blog-how-to-get-hello88-exclusive-codes__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
  color: var(--text-main-color);
  z-index: 1;
}

.page-blog-how-to-get-hello88-exclusive-codes__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gold-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--text-secondary-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- General Buttons --- */
.page-blog-how-to-get-hello88-exclusive-codes__btn-primary,
.page-blog-how-to-get-hello88-exclusive-codes__btn-secondary,
.page-blog-how-to-get-hello88-exclusive-codes__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  text-align: center;
  box-sizing: border-box;
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-primary {
  background: var(--button-gradient);
  color: #ffffff; /* White text for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-secondary {
  background-color: transparent;
  color: var(--glow-color); /* Light green for contrast */
  border: 2px solid var(--glow-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-secondary:hover {
  background-color: var(--glow-color);
  color: var(--card-bg-color); /* Dark text on hover */
  transform: translateY(-2px);
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-text {
  background-color: transparent;
  color: var(--glow-color);
  border: none;
  padding: 0;
  text-decoration: underline;
}

.page-blog-how-to-get-hello88-exclusive-codes__btn-text:hover {
  color: var(--gold-color);
}

/* --- Content Area --- */
.page-blog-how-to-get-hello88-exclusive-codes__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--bg-color-custom); /* Dark background */
  color: var(--text-main-color); /* Light text */
}

.page-blog-how-to-get-hello88-exclusive-codes__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.5em);
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--gold-color);
  padding-top: 20px;
}

.page-blog-how-to-get-hello88-exclusive-codes__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--text-secondary-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__text-block strong {
  color: var(--text-main-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-get-hello88-exclusive-codes__step-item {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__step-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-how-to-get-hello88-exclusive-codes__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__step-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-how-to-get-hello88-exclusive-codes__ordered-list,
.page-blog-how-to-get-hello88-exclusive-codes__unordered-list {
  margin-bottom: 30px;
  padding-left: 25px;
  color: var(--text-secondary-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__ordered-list li,
.page-blog-how-to-get-hello88-exclusive-codes__unordered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: var(--text-secondary-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__ordered-list li strong,
.page-blog-how-to-get-hello88-exclusive-codes__unordered-list li strong {
  color: var(--text-main-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-get-hello88-exclusive-codes__card {
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  color: var(--text-main-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--gold-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__card-description {
  font-size: 0.95em;
  color: var(--text-secondary-color);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-how-to-get-hello88-exclusive-codes__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

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

.page-blog-how-to-get-hello88-exclusive-codes__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--deep-green-color);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-get-hello88-exclusive-codes__faq-question:hover {
  background-color: var(--border-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__faq-qtext {
  flex-grow: 1;
}

.page-blog-how-to-get-hello88-exclusive-codes__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow-color);
}

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

.page-blog-how-to-get-hello88-exclusive-codes__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: var(--text-secondary-color);
  background-color: var(--card-bg-color);
}

.page-blog-how-to-get-hello88-exclusive-codes__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary-color);
}

/* Remove default marker for details/summary */
.page-blog-how-to-get-hello88-exclusive-codes__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-blog-how-to-get-hello88-exclusive-codes__faq-item summary {
  list-style: none;
}

.page-blog-how-to-get-hello88-exclusive-codes__cta-buttons--bottom {
  margin-top: 50px;
  margin-bottom: 20px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-blog-how-to-get-hello88-exclusive-codes__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-blog-how-to-get-hello88-exclusive-codes__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.2em);
  }
  .page-blog-how-to-get-hello88-exclusive-codes__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  /* Global adjustments for mobile */
  .page-blog-how-to-get-hello88-exclusive-codes {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-blog-how-to-get-hello88-exclusive-codes__hero-section {
    padding: 10px 15px 40px 15px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__hero-image {
    max-height: 300px;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }
  .page-blog-how-to-get-hello88-exclusive-codes__description {
    font-size: 1em;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__btn-primary,
  .page-blog-how-to-get-hello88-exclusive-codes__btn-secondary,
  .page-blog-how-to-get-hello88-exclusive-codes a[class*="button"],
  .page-blog-how-to-get-hello88-exclusive-codes 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-blog-how-to-get-hello88-exclusive-codes__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Content Area */
  .page-blog-how-to-get-hello88-exclusive-codes__content-area {
    padding: 40px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
    margin-bottom: 25px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__text-block,
  .page-blog-how-to-get-hello88-exclusive-codes__ordered-list li,
  .page-blog-how-to-get-hello88-exclusive-codes__unordered-list li,
  .page-blog-how-to-get-hello88-exclusive-codes__card-description,
  .page-blog-how-to-get-hello88-exclusive-codes__step-description,
  .page-blog-how-to-get-hello88-exclusive-codes__faq-answer p {
    font-size: 0.95em;
  }

  /* Images in content */
  .page-blog-how-to-get-hello88-exclusive-codes img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-how-how-to-get-hello88-exclusive-codes__section,
  .page-blog-how-to-get-hello88-exclusive-codes__card,
  .page-blog-how-to-get-hello88-exclusive-codes__container,
  .page-blog-how-to-get-hello88-exclusive-codes__step-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__step-item {
    padding: 20px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__step-image {
    max-width: 100%;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__promo-cards {
    gap: 20px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-get-hello88-exclusive-codes__hero-section {
    padding-bottom: 30px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__main-title {
    font-size: clamp(1.6em, 8vw, 2.2em);
  }
  .page-blog-how-to-get-hello88-exclusive-codes__cta-buttons {
    gap: 10px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__section-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }
  .page-blog-how-to-get-hello88-exclusive-codes__step-item {
    padding: 15px;
  }
  .page-blog-how-to-get-hello88-exclusive-codes__promo-cards {
    gap: 15px;
  }
}