/* style/blog-secure-hello88-download.css */

:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-secure-hello88-download {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 0; /* body already handles padding-top */
}

.page-blog-secure-hello88-download a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-blog-secure-hello88-download a:hover {
  text-decoration: underline;
}

.page-blog-secure-hello88-download__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px; /* Small top padding, larger bottom padding */
  box-sizing: border-box;
}

.page-blog-secure-hello88-download__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.page-blog-secure-hello88-download__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-secure-hello88-download__hero-content {
  max-width: 900px;
  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  margin-top: 20px;
}

.page-blog-secure-hello88-download__main-title {
  color: var(--gold-color);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  max-width: 100%;
}

.page-blog-secure-hello88-download__hero-description {
  color: var(--text-secondary-color);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-secure-hello88-download__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  width: 100%;
}

.page-blog-secure-hello88-download__cta-buttons--center {
  margin-top: 40px;
}

.page-blog-secure-hello88-download__btn-primary,
.page-blog-secure-hello88-download__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-secure-hello88-download__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main-color);
  border: 2px solid transparent;
}

.page-blog-secure-hello88-download__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-secure-hello88-download__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-secure-hello88-download__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-secure-hello88-download__btn-inline {
  margin-top: 20px;
  margin-right: 15px;
}

.page-blog-secure-hello88-download__content-section {
  padding: 60px 0;
  border-bottom: 1px solid var(--divider-color);
}

.page-blog-secure-hello88-download__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-secure-hello88-download__dark-bg {
  background-color: var(--card-bg-color);
}

.page-blog-secure-hello88-download__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-secure-hello88-download__section-title {
  color: var(--gold-color);
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.3;
}

.page-blog-secure-hello88-download__section-subtitle {
  color: var(--text-main-color);
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.page-blog-secure-hello88-download p {
  margin-bottom: 1em;
  color: var(--text-main-color);
}

.page-blog-secure-hello88-download__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-secure-hello88-download__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: var(--text-main-color);
}

.page-blog-secure-hello88-download__card:hover {
  transform: translateY(-5px);
}

.page-blog-secure-hello88-download__card-title {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-secure-hello88-download__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-secure-hello88-download__image-center {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-secure-hello88-download__checklist,
.page-blog-secure-hello88-download__benefit-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-blog-secure-hello88-download__list-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-blog-secure-hello88-download__list-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2em;
}

.page-blog-secure-hello88-download__faq-list {
  margin-top: 40px;
}

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

.page-blog-secure-hello88-download__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main-color);
  list-style: none;
}

.page-blog-secure-hello88-download__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-secure-hello88-download__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-secure-hello88-download__faq-qtext {
  color: var(--gold-color);
  font-size: 1.15em;
}

.page-blog-secure-hello88-download__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--gold-color);
}

.page-blog-secure-hello88-download__faq-item[open] .page-blog-secure-hello88-download__faq-toggle {
  content: '−';
}

.page-blog-secure-hello88-download__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-secure-hello88-download__hero-content {
    max-width: 768px;
  }
  .page-blog-secure-hello88-download__section-title {
    font-size: 2em;
  }
  .page-blog-secure-hello88-download__container {
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .page-blog-secure-hello88-download__hero-section {
    padding: 10px 0 30px;
  }
  .page-blog-secure-hello88-download__main-title {
    font-size: 2.2em;
  }
  .page-blog-secure-hello88-download__hero-description {
    font-size: 1em;
  }
  .page-blog-secure-hello88-download__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }
  .page-blog-secure-hello88-download__btn-primary,
  .page-blog-secure-hello88-download__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-blog-secure-hello88-download__content-section {
    padding: 40px 0;
  }
  .page-blog-secure-hello88-download__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-secure-hello88-download__section-subtitle {
    font-size: 1.5em;
  }
  .page-blog-secure-hello88-download__card-title {
    font-size: 1.2em;
  }
  .page-blog-secure-hello88-download img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-secure-hello88-download__image-full-width,
  .page-blog-secure-hello88-download__image-center {
    margin: 30px auto;
  }
  .page-blog-secure-hello88-download__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-blog-secure-hello88-download__faq-item summary,
  .page-blog-secure-hello88-download__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-secure-hello88-download__faq-qtext {
    font-size: 1em;
  }
  .page-blog-secure-hello88-download__btn-inline {
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .page-blog-secure-hello88-download__main-title {
    font-size: 1.8em;
  }
  .page-blog-secure-hello88-download__section-title {
    font-size: 1.5em;
  }
  .page-blog-secure-hello88-download p,
  .page-blog-secure-hello88-download__list-item {
    font-size: 0.95em;
  }
}