/* style/blog-kim66-safe-betting-guide.css */

:root {
  --kim66-primary-color: #26A9E0;
  --kim66-secondary-color: #FFFFFF;
  --kim66-login-color: #EA7C07;
  --kim66-background-color: #FFFFFF;
  --kim66-text-dark: #333333;
  --kim66-text-light: #FFFFFF;
  --kim66-accent-color: #000000; /* For contrast with light backgrounds */
}

.page-blog-kim66-safe-betting-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--kim66-text-dark); /* Default text color for light body background */
  background-color: var(--kim66-background-color);
}

.page-blog-kim66-safe-betting-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-blog-kim66-safe-betting-guide__dark-bg {
  background-color: var(--kim66-primary-color);
  color: var(--kim66-text-light);
}

.page-blog-kim66-safe-betting-guide__light-bg {
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-text-dark);
}

.page-blog-kim66-safe-betting-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-kim66-safe-betting-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-kim66-safe-betting-guide__hero-content {
  position: relative; /* Ensure content is above the image but not overlapping */
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Adjust to pull content up slightly, but not overlap image */
  background: rgba(var(--kim66-primary-color-rgb), 0.9); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: var(--kim66-text-light);
  z-index: 1;
  transform: translateY(calc(-50% + 10px)); /* Pull up content without overlapping image visibly */
  margin-bottom: -100px; /* Adjust for translateY */
}

.page-blog-kim66-safe-betting-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--kim66-text-light);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3rem); /* Responsive font size for H1 */
}

.page-blog-kim66-safe-betting-guide__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-kim66-safe-betting-guide__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-kim66-safe-betting-guide__btn-primary,
.page-blog-kim66-safe-betting-guide__btn-secondary,
.page-blog-kim66-safe-betting-guide__btn-tertiary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-kim66-safe-betting-guide__btn-primary {
  background-color: var(--kim66-login-color);
  color: var(--kim66-text-light);
  border: 2px solid var(--kim66-login-color);
}

.page-blog-kim66-safe-betting-guide__btn-primary:hover {
  background-color: darken(var(--kim66-login-color), 10%);
  border-color: darken(var(--kim66-login-color), 10%);
}

.page-blog-kim66-safe-betting-guide__btn-secondary {
  background-color: transparent;
  color: var(--kim66-text-light);
  border: 2px solid var(--kim66-text-light);
}

.page-blog-kim66-safe-betting-guide__btn-secondary:hover {
  background-color: var(--kim66-text-light);
  color: var(--kim66-primary-color);
}

.page-blog-kim66-safe-betting-guide__btn-tertiary {
  background-color: var(--kim66-primary-color);
  color: var(--kim66-text-light);
  border: 2px solid var(--kim66-primary-color);
}

.page-blog-kim66-safe-betting-guide__btn-tertiary:hover {
  background-color: darken(var(--kim66-primary-color), 10%);
  border-color: darken(var(--kim66-primary-color), 10%);
}

.page-blog-kim66-safe-betting-guide__content-section,
.page-blog-kim66-safe-betting-guide__principles-section,
.page-blog-kim66-safe-betting-guide__limits-section,
.page-blog-kim66-safe-betting-guide__problem-gambling-section,
.page-blog-kim66-safe-betting-guide__resources-section,
.page-blog-kim66-safe-betting-guide__commitment-section,
.page-blog-kim66-safe-betting-guide__faq-section,
.page-blog-kim66-safe-betting-guide__conclusion-section {
  padding: 60px 0;
}

.page-blog-kim66-safe-betting-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-kim66-safe-betting-guide__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit; /* Inherits from section background */
}

.page-blog-kim66-safe-betting-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-kim66-safe-betting-guide__text-block--note {
  font-style: italic;
  color: #555;
}

.page-blog-kim66-safe-betting-guide__dark-bg .page-blog-kim66-safe-betting-guide__text-block--note {
  color: rgba(255, 255, 255, 0.8);
}

.page-blog-kim66-safe-betting-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-kim66-safe-betting-guide__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-blog-kim66-safe-betting-guide__card {
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-text-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-kim66-safe-betting-guide__dark-bg .page-blog-kim66-safe-betting-guide__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--kim66-text-light);
}

.page-blog-kim66-safe-betting-guide__card-image,
.page-blog-kim66-safe-betting-guide__resource-image {
  width: 100%;
  max-width: 400px; /* Ensure content images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  display: block;
}

.page-blog-kim66-safe-betting-guide__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: inherit;
}

.page-blog-kim66-safe-betting-guide__card-text {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
}

.page-blog-kim66-safe-betting-guide__button-group {
  margin-top: 40px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-blog-kim66-safe-betting-guide__info-block {
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-text-dark);
  border-left: 5px solid var(--kim66-primary-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-kim66-safe-betting-guide__info-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--kim66-primary-color);
}

.page-blog-kim66-safe-betting-guide__info-text {
  font-size: 1rem;
  line-height: 1.5;
}

.page-blog-kim66-safe-betting-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.page-blog-kim66-safe-betting-guide__list-item {
  margin-bottom: 10px;
  color: inherit;
}

.page-blog-kim66-safe-betting-guide__resource-card {
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-text-dark);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-kim66-safe-betting-guide__resource-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--kim66-primary-color);
}

.page-blog-kim66-safe-betting-guide__resource-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-kim66-safe-betting-guide__commitment-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-kim66-safe-betting-guide__commitment-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--kim66-text-light);
}

.page-blog-kim66-safe-betting-guide__commitment-item strong {
  color: var(--kim66-text-light);
}

.page-blog-kim66-safe-betting-guide__faq-list {
  margin-top: 30px;
}

.page-blog-kim66-safe-betting-guide__faq-item {
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-text-dark);
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-blog-kim66-safe-betting-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--kim66-secondary-color);
  color: var(--kim66-primary-color);
  border-bottom: 1px solid #eee;
  list-style: none; /* For details summary */
}

.page-blog-kim66-safe-betting-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-kim66-safe-betting-guide__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--kim66-primary-color);
}

.page-blog-kim66-safe-betting-guide__faq-item[open] .page-blog-kim66-safe-betting-guide__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-kim66-safe-betting-guide__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--kim66-text-dark);
}

.page-blog-kim66-safe-betting-guide__faq-answer p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-kim66-safe-betting-guide__grid--two-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-blog-kim66-safe-betting-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-kim66-safe-betting-guide__hero-content {
    margin-top: -50px; /* Adjust for smaller screens */
    margin-bottom: -50px;
    padding: 30px 15px;
    transform: translateY(calc(-50% + 10px));
  }

  .page-blog-kim66-safe-betting-guide__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-kim66-safe-betting-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-kim66-safe-betting-guide__section-title {
    font-size: 2rem;
  }

  .page-blog-kim66-safe-betting-guide__text-block {
    font-size: 1rem;
  }

  .page-blog-kim66-safe-betting-guide__cta-buttons,
  .page-blog-kim66-safe-betting-guide__button-group {
    flex-direction: column;
    gap: 10px;
  }

  .page-blog-kim66-safe-betting-guide__btn-primary,
  .page-blog-kim66-safe-betting-guide__btn-secondary,
  .page-blog-kim66-safe-betting-guide__btn-tertiary {
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-kim66-safe-betting-guide__container,
  .page-blog-kim66-safe-betting-guide__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-kim66-safe-betting-guide img,
  .page-blog-kim66-safe-betting-guide video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-kim66-safe-betting-guide__hero-image-wrapper,
  .page-blog-kim66-safe-betting-guide__card,
  .page-blog-kim66-safe-betting-guide__info-block,
  .page-blog-kim66-safe-betting-guide__resource-card,
  .page-blog-kim66-safe-betting-guide__container,
  .page-blog-kim66-safe-betting-guide__cta-buttons,
  .page-blog-kim66-safe-betting-guide__button-group,
  .page-blog-kim66-safe-betting-guide__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-blog-kim66-safe-betting-guide__hero-section {
    padding: 10px 0 30px 0; /* Adjust padding for mobile */
  }

  .page-blog-kim66-safe-betting-guide__section-title {
    margin-bottom: 20px;
  }

  .page-blog-kim66-safe-betting-guide__grid {
    gap: 20px;
  }

  .page-blog-kim66-safe-betting-guide__card,
  .page-blog-kim66-safe-betting-guide__resource-card {
    padding: 20px;
  }

  .page-blog-kim66-safe-betting-guide__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-kim66-safe-betting-guide__faq-answer {
    padding: 0 20px 15px 20px;
  }
}