/* style/blog-how-to-identify-gu88-safe-link.css */

/* Custom Colors */
:root {
  --gu88-primary-color: #2F6BFF;
  --gu88-secondary-color: #6FA3FF;
  --gu88-button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  --gu88-card-bg: #FFFFFF;
  --gu88-background-light: #F4F7FB;
  --gu88-text-main: #1F2D3D;
  --gu88-text-dark: #000000;
  --gu88-border-color: #D6E2FF;
  --gu88-glow-color: #A5C4FF;
}

.page-blog-how-to-identify-gu88-safe-link {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--gu88-text-main); /* Default text color for light backgrounds */
  background-color: var(--gu88-background-light); /* Default light background */
}

.page-blog-how-to-identify-gu88-safe-link__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  background-color: var(--gu88-background-light);
}

.page-blog-how-to-identify-gu88-safe-link__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-how-to-identify-gu88-safe-link__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-identify-gu88-safe-link__hero-content {
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -80px; /* Overlap slightly with the image for design effect */
  background-color: var(--gu88-card-bg);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.page-blog-how-to-identify-gu88-safe-link__main-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gu88-text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-how-to-identify-gu88-safe-link__description {
  font-size: 1.1rem;
  color: var(--gu88-text-main);
  margin-bottom: 30px;
}

.page-blog-how-to-identify-gu88-safe-link__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-blog-how-to-identify-gu88-safe-link__btn-primary,
.page-blog-how-to-identify-gu88-safe-link__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-how-to-identify-gu88-safe-link__btn-primary {
  background: var(--gu88-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-blog-how-to-identify-gu88-safe-link__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.3);
}

.page-blog-how-to-identify-gu88-safe-link__btn-secondary {
  background: var(--gu88-card-bg);
  color: var(--gu88-primary-color);
  border: 2px solid var(--gu88-primary-color);
}

.page-blog-how-to-identify-gu88-safe-link__btn-secondary:hover {
  background: var(--gu88-primary-color);
  color: var(--gu88-card-bg);
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(47, 107, 255, 0.2);
}

.page-blog-how-to-identify-gu88-safe-link__section {
  padding: 60px 20px;
}

.page-blog-how-to-identify-gu88-safe-link__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-how-to-identify-gu88-safe-link__section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gu88-text-dark);
  text-align: center;
  margin-bottom: 40px;
}

.page-blog-how-to-identify-gu88-safe-link__text-block {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--gu88-text-main);
  text-align: center;
}

.page-blog-how-to-identify-gu88-safe-link__dark-bg {
  background-color: var(--gu88-primary-color);
  color: #ffffff;
}

.page-blog-how-to-identify-gu88-safe-link__dark-bg .page-blog-how-to-identify-gu88-safe-link__section-title,
.page-blog-how-to-identify-gu88-safe-link__dark-bg .page-blog-how-to-identify-gu88-safe-link__text-block {
  color: #ffffff;
}

.page-blog-how-to-identify-gu88-safe-link__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-how-to-identify-gu88-safe-link__card {
  background-color: var(--gu88-card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--gu88-text-main);
  border: 1px solid var(--gu88-border-color);
}

.page-blog-how-to-identify-gu88-safe-link__dark-bg .page-blog-how-to-identify-gu88-safe-link__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-blog-how-to-identify-gu88-safe-link__dark-bg .page-blog-how-to-identify-gu88-safe-link__card-title,
.page-blog-how-to-identify-gu88-safe-link__dark-bg .page-blog-how-to-identify-gu88-safe-link__card-text {
  color: #ffffff;
}

.page-blog-how-to-identify-gu88-safe-link__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-identify-gu88-safe-link__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gu88-text-dark);
  margin-bottom: 15px;
}

.page-blog-how-to-identify-gu88-safe-link__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-how-to-identify-gu88-safe-link__card-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-blog-how-to-identify-gu88-safe-link__code-highlight {
  background-color: #e0f2f7;
  color: var(--gu88-primary-color);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
}

.page-blog-how-to-identify-gu88-safe-link__video-section {
  margin-top: 60px;
  text-align: center;
  padding: 40px 0;
  background-color: var(--gu88-primary-color);
  border-radius: 15px;
  color: #ffffff;
}

.page-blog-how-to-identify-gu88-safe-link__video-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-blog-how-to-identify-gu88-safe-link__video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-identify-gu88-safe-link__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-blog-how-to-identify-gu88-safe-link__video-description {
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-identify-gu88-safe-link__light-bg {
  background-color: var(--gu88-background-light);
  color: var(--gu88-text-main);
}

.page-blog-how-to-identify-gu88-safe-link__faq-list {
  margin-top: 40px;
}

.page-blog-how-to-identify-gu88-safe-link__faq-item {
  background-color: var(--gu88-card-bg);
  border: 1px solid var(--gu88-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-identify-gu88-safe-link__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gu88-text-dark);
  cursor: pointer;
  background-color: var(--gu88-card-bg);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-how-to-identify-gu88-safe-link__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-how-to-identify-gu88-safe-link__faq-question:hover {
  background-color: #f0f8ff;
}

.page-blog-how-to-identify-gu88-safe-link__faq-toggle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gu88-primary-color);
  margin-left: 15px;
}

.page-blog-how-to-identify-gu88-safe-link__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: var(--gu88-text-main);
  line-height: 1.7;
  /* For details tag, content is shown natively. No max-height needed */
}

.page-blog-how-to-identify-gu88-safe-link__cta-bottom .page-blog-how-to-identify-gu88-safe-link__container {
  background-color: var(--gu88-primary-color);
  border-radius: 15px;
  padding: 50px 30px;
  text-align: center;
}

.page-blog-how-to-identify-gu88-safe-link__cta-bottom .page-blog-how-to-identify-gu88-safe-link__section-title,
.page-blog-how-to-identify-gu88-safe-link__cta-bottom .page-blog-how-to-identify-gu88-safe-link__text-block {
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-identify-gu88-safe-link__hero-content {
    margin-top: -60px;
    padding: 30px 20px;
  }

  .page-blog-how-to-identify-gu88-safe-link__main-title {
    font-size: 2.2rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__description {
    font-size: 1rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__section-title {
    font-size: 1.8rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-identify-gu88-safe-link {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-how-to-identify-gu88-safe-link__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-how-to-identify-gu88-safe-link__hero-content {
    margin-top: -40px;
    padding: 25px 15px;
    border-radius: 10px;
  }

  .page-blog-how-to-identify-gu88-safe-link__main-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-blog-how-to-identify-gu88-safe-link__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .page-blog-how-to-identify-gu88-safe-link__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-how-to-identify-gu88-safe-link__btn-primary,
  .page-blog-how-to-identify-gu88-safe-link__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__section {
    padding: 40px 0;
  }

  .page-blog-how-to-identify-gu88-safe-link__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-how-to-identify-gu88-safe-link__section-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .page-blog-how-to-identify-gu88-safe-link__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-how-to-identify-gu88-safe-link__card {
    padding: 25px;
    border-radius: 10px;
  }

  .page-blog-how-to-identify-gu88-safe-link img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-how-to-identify-gu88-safe-link__card-image {
    max-width: 100% !important;
  }

  .page-blog-how-to-identify-gu88-safe-link__video-section {
    padding: 10px 0 !important; /* body already handles --header-offset */
    border-radius: 10px;
  }

  .page-blog-how-to-identify-gu88-safe-link__video-container {
    max-width: 100% !important;
    width: 100% !important;
    padding-bottom: 56.25% !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .page-blog-how-to-identify-gu88-safe-link__video {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
  }

  .page-blog-how-to-identify-gu88-safe-link__faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 0.95rem;
  }

  .page-blog-how-to-identify-gu88-safe-link__cta-bottom .page-blog-how-to-identify-gu88-safe-link__container {
    padding: 40px 20px;
  }
}