/* style/blog-latest-pg88-login-link.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-color-default: #FFFFFF;
}

.page-blog-latest-pg88-login-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-default);
}

.page-blog-latest-pg88-login-link__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as body handles header offset */
  background-color: var(--primary-color);
  color: var(--text-color-light);
  text-align: center;
}

.page-blog-latest-pg88-login-link__hero-image {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

.page-blog-latest-pg88-login-link__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-latest-pg88-login-link__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.page-blog-latest-pg88-login-link__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-latest-pg88-login-link__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-latest-pg88-login-link__cta-buttons--center {
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-latest-pg88-login-link__btn-primary,
.page-blog-latest-pg88-login-link__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-latest-pg88-login-link__btn-primary {
  background-color: var(--login-button-color);
  color: var(--text-color-light);
  border: 2px solid var(--login-button-color);
}

.page-blog-latest-pg88-login-link__btn-primary:hover {
  background-color: #d16b06; /* Direct darker color */
  border-color: #d16b06;
}

.page-blog-latest-pg88-login-link__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-latest-pg88-login-link__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-latest-pg88-login-link__content-section {
  padding: 40px 20px;
  background-color: var(--background-color-default);
  color: var(--text-color-dark);
}

.page-blog-latest-pg88-login-link__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-blog-latest-pg88-login-link__section-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-latest-pg88-login-link p {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-blog-latest-pg88-login-link__keyword {
  font-weight: bold;
  color: var(--primary-color);
}

.page-blog-latest-pg88-login-link__content-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-blog-latest-pg88-login-link__list,
.page-blog-latest-pg88-login-link__numbered-list,
.page-blog-latest-pg88-login-link__game-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-blog-latest-pg88-login-link__numbered-list {
  list-style: decimal;
}

.page-blog-latest-pg88-login-link__list li,
.page-blog-latest-pg88-login-link__numbered-list li,
.page-blog-latest-pg88-login-link__game-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

/* FAQ Styles */
.page-blog-latest-pg88-login-link__faq-list {
  margin-top: 30px;
}

.page-blog-latest-pg88-login-link__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-blog-latest-pg88-login-link__faq-item details > summary {
  list-style: none;
}

.page-blog-latest-pg88-login-link__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-latest-pg88-login-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--primary-color);
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-blog-latest-pg88-login-link__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-latest-pg88-login-link__faq-qtext {
  flex-grow: 1;
}

.page-blog-latest-pg88-login-link__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
}

.page-blog-latest-pg88-login-link__faq-answer {
  padding: 15px 20px;
  font-size: 0.95em;
  color: var(--text-color-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-latest-pg88-login-link__main-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-blog-latest-pg88-login-link__main-title {
    font-size: 2em;
  }
  .page-blog-latest-pg88-login-link__hero-description {
    font-size: 1em;
  }
  .page-blog-latest-pg88-login-link__section-title {
    font-size: 1.8em;
  }
  .page-blog-latest-pg88-login-link p,
  .page-blog-latest-pg88-login-link__list li,
  .page-blog-latest-pg88-login-link__numbered-list li,
  .page-blog-latest-pg88-login-link__game-list li {
    font-size: 0.95em;
  }
  
  /* Mobile responsive images */
  .page-blog-latest-pg88-login-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Mobile responsive containers for images/content */
  .page-blog-latest-pg88-login-link__hero-section,
  .page-blog-latest-pg88-login-link__content-section,
  .page-blog-latest-pg88-login-link__content-area,
  .page-blog-latest-pg88-login-link__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
  }
  
  /* Buttons specific mobile adaptation */
  .page-blog-latest-pg88-login-link__btn-primary,
  .page-blog-latest-pg88-login-link__btn-secondary {
    width: 100% !important; /* Ensure buttons take full width */
    padding: 12px 15px !important;
    text-align: center;
  }
  
  .page-blog-latest-pg88-login-link__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-latest-pg88-login-link__hero-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-latest-pg88-login-link__faq-question {
    padding: 12px 15px;
  }

  .page-blog-latest-pg88-login-link__faq-answer {
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-latest-pg88-login-link__main-title {
    font-size: 1.8em;
  }
  .page-blog-latest-pg88-login-link__section-title {
    font-size: 1.5em;
  }
}