/* style/blog-h88-latest-link-guide.css */

/* Base styles for the page content */
.page-blog-h88-latest-link-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  padding-bottom: 40px;
}

.page-blog-h88-latest-link-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #ffffff;
  overflow: hidden;
}

.page-blog-h88-latest-link-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}

.page-blog-h88-latest-link-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-blog-h88-latest-link-guide__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.page-blog-h88-latest-link-guide__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.page-blog-h88-latest-link-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f8ff;
}

.page-blog-h88-latest-link-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-top: -60px; /* Overlap with hero for visual effect */
  position: relative;
  z-index: 1;
}

.page-blog-h88-latest-link-guide__article {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-h88-latest-link-guide__section-title {
  font-size: 2.2em;
  color: #2F6BFF; /* Primary color */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-h88-latest-link-guide__sub-section-title {
  font-size: 1.8em;
  color: #1F2D3D; /* Text Main */
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-blog-h88-latest-link-guide__paragraph {
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-blog-h88-latest-link-guide__paragraph--highlight {
  font-weight: bold;
  color: #2F6BFF;
  background-color: #D6E2FF;
  padding: 15px;
  border-left: 5px solid #2F6BFF;
  border-radius: 4px;
}

.page-blog-h88-latest-link-guide__list,
.page-blog-h88-latest-link-guide__ordered-list {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #1F2D3D;
}

.page-blog-h88-latest-link-guide__list-item {
  margin-bottom: 10px;
}

.page-blog-h88-latest-link-guide__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-h88-latest-link-guide__cta-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.page-blog-h88-latest-link-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-h88-latest-link-guide__cta-button--primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-h88-latest-link-guide__cta-button--primary:hover {
  box-shadow: 0 0 15px #A5C4FF; /* Glow */
  transform: translateY(-2px);
}

.page-blog-h88-latest-link-guide__cta-button--secondary {
  background: #FFFFFF; /* Card BG */
  color: #2F6BFF; /* Primary color */
  border: 2px solid #2F6BFF; /* Primary color */
}

.page-blog-h88-latest-link-guide__cta-button--secondary:hover {
  background: #D6E2FF; /* Border color */
  color: #2F6BFF;
}

.page-blog-h88-latest-link-guide__cta-button--large {
    padding: 18px 40px;
    font-size: 1.1em;
}

.page-blog-h88-latest-link-guide__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-h88-latest-link-guide__game-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-h88-latest-link-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-blog-h88-latest-link-guide__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-blog-h88-latest-link-guide__game-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-h88-latest-link-guide__game-title a {
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
}

.page-blog-h88-latest-link-guide__game-title a:hover {
  text-decoration: underline;
}

.page-blog-h88-latest-link-guide__game-description {
  font-size: 0.95em;
  color: #1F2D3D;
  padding: 0 15px;
}

.page-blog-h88-latest-link-guide__faq-list {
  margin-top: 30px;
}

.page-blog-h88-latest-link-guide__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-h88-latest-link-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background-color: #F4F7FB; /* Background */
  transition: background-color 0.3s ease;
}

.page-blog-h88-latest-link-guide__faq-question:hover {
  background-color: #E6EEF8;
}

.page-blog-h88-latest-link-guide__faq-qtext {
  flex-grow: 1;
  color: #1F2D3D;
}

.page-blog-h88-latest-link-guide__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF; /* Primary color */
}

.page-blog-h88-latest-link-guide__faq-item[open] .page-blog-h88-latest-link-guide__faq-toggle {
  content: '−';
}

.page-blog-h88-latest-link-guide__faq-item details > summary {
  list-style: none;
}

.page-blog-h88-latest-link-guide__faq-item details > summary::-webkit-details-marker {
  display: none;
}

.page-blog-h88-latest-link-guide__faq-answer {
  padding: 20px 25px;
  font-size: 1em;
  color: #1F2D3D;
  border-top: 1px solid #D6E2FF; /* Border */
  background-color: #FFFFFF;
}

.page-blog-h88-latest-link-guide__conclusion-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-h88-latest-link-guide__main-title {
    font-size: clamp(2em, 4vw, 3em);
  }

  .page-blog-h88-latest-link-guide__section-title {
    font-size: 2em;
  }

  .page-blog-h88-latest-link-guide__game-categories {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-blog-h88-latest-link-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-h88-latest-link-guide__hero-section {
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset, this is small decorative */
  }

  .page-blog-h88-latest-link-guide__hero-content {
    padding: 0 15px;
  }

  .page-blog-h88-latest-link-guide__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-h88-latest-link-guide__hero-description {
    font-size: 1em;
  }

  .page-blog-h88-latest-link-guide__content-area,
  .page-blog-h88-latest-link-guide__conclusion-section {
    padding: 30px 15px;
    margin-top: -40px;
    border-radius: 0;
    box-shadow: none;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-h88-latest-link-guide__article {
    max-width: 100%;
  }

  .page-blog-h88-latest-link-guide__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-h88-latest-link-guide__sub-section-title {
    font-size: 1.5em;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  /* Mobile responsive for images */
  .page-blog-h88-latest-link-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Mobile responsive for image containers */
  .page-blog-h88-latest-link-guide__hero-image-wrapper,
  .page-blog-h88-latest-link-guide__game-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }

  /* Mobile responsive for buttons */
  .page-blog-h88-latest-link-guide__cta-buttons-container {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .page-blog-h88-latest-link-guide__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 15px 20px;
  }

  .page-blog-h88-latest-link-guide__game-categories {
    grid-template-columns: 1fr;
  }

  .page-blog-h88-latest-link-guide__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-h88-latest-link-guide__faq-answer {
    padding: 15px 20px;
  }
}