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

.page-blog-gem789-latest-link-guide {
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  font-size: 1rem;
}

.page-blog-gem789-latest-link-guide h1,
.page-blog-gem789-latest-link-guide h2,
.page-blog-gem789-latest-link-guide h3,
.page-blog-gem789-latest-link-guide h4 {
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 1rem;
  font-weight: bold;
}

.page-blog-gem789-latest-link-guide h1 {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 */
  line-height: 1.2;
}

.page-blog-gem789-latest-link-guide p {
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 1rem;
}

.page-blog-gem789-latest-link-guide ul,
.page-blog-gem789-latest-link-guide ol {
  color: var(--text-secondary); /* #A7D9B8 */
  margin-left: 20px;
  margin-bottom: 1rem;
}

.page-blog-gem789-latest-link-guide li {
  margin-bottom: 0.5rem;
}

.page-blog-gem789-latest-link-guide__hero-section {
  background-color: var(--background); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
  padding: 10px 20px 60px; /* Small top padding, more bottom */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

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

.page-blog-gem789-latest-link-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.page-blog-gem789-latest-link-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow wrapping on mobile */
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.page-blog-gem789-latest-link-guide__btn-primary {
  background: var(--button); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: #ffffff; /* White text for contrast */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  min-width: 150px; /* Ensure buttons have a reasonable minimum width */
}

.page-blog-gem789-latest-link-guide__btn-primary:hover {
  opacity: 0.9;
}

.page-blog-gem789-latest-link-guide__content-section {
  background-color: var(--background); /* #08160F */
  padding: 50px 20px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-gem789-latest-link-guide__content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-blog-gem789-latest-link-guide__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-gem789-latest-link-guide__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-gem789-latest-link-guide__faq-section {
  background-color: var(--card-bg); /* #11271B */
  padding: 50px 20px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-blog-gem789-latest-link-guide__faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-gem789-latest-link-guide__faq-item {
  background-color: var(--background); /* #08160F */
  border: 1px solid var(--divider); /* #1E3A2A */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-gem789-latest-link-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  user-select: none;
}

.page-blog-gem789-latest-link-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-gem789-latest-link-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--glow); /* #57E38D */
  transition: transform 0.3s ease;
}

.page-blog-gem789-latest-link-guide__faq-item[open] .page-blog-gem789-latest-link-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-gem789-latest-link-guide__faq-answer {
  padding: 0 20px 15px;
  color: var(--text-secondary); /* #A7D9B8 */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding-top 0.3s ease-out;
}

.page-blog-gem789-latest-link-guide__faq-item[open] .page-blog-gem789-latest-link-guide__faq-answer {
  max-height: 500px; /* Adjust as needed */
  padding-top: 10px;
}

.page-blog-gem789-latest-link-guide__video-section {
  background-color: var(--background); /* #08160F */
  padding: 10px 20px 50px;
  text-align: center;
}

.page-blog-gem789-latest-link-guide__video-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  width: 100%; /* Important for desktop */
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.page-blog-gem789-latest-link-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  object-fit: cover;
}

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

  .page-blog-gem789-latest-link-guide__hero-section,
  .page-blog-gem789-latest-link-guide__content-section,
  .page-blog-gem789-latest-link-guide__faq-section,
  .page-blog-gem789-latest-link-guide__video-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-blog-gem789-latest-link-guide__hero-section {
    padding-top: 10px !important; /* Small top padding */
  }

  .page-blog-gem789-latest-link-guide h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-gem789-latest-link-guide__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-blog-gem789-latest-link-guide__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Images responsiveness */
  .page-blog-gem789-latest-link-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-gem789-latest-link-guide__image-wrapper,
  .page-blog-gem789-latest-link-guide__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Video responsiveness */
  .page-blog-gem789-latest-link-guide video,
  .page-blog-gem789-latest-link-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-blog-gem789-latest-link-guide__video-section,
  .page-blog-gem789-latest-link-guide__video-container,
  .page-blog-gem789-latest-link-guide__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}