/* style/blog-k9club-homepage-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --login-button-color: #EA7C07;
  --background-white: #FFFFFF;
  --black: #000000;
}

.page-blog-k9club-homepage-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

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

.page-blog-k9club-homepage-guide__section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-blog-k9club-homepage-guide__section-description,
.page-blog-k9club-homepage-guide__text-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-k9club-homepage-guide__btn-primary,
.page-blog-k9club-homepage-guide__btn-secondary {
  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;
  text-align: center;
  box-sizing: border-box;
  cursor: pointer;
}

.page-blog-k9club-homepage-guide__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--primary-color);
}

.page-blog-k9club-homepage-guide__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-k9club-homepage-guide__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-blog-k9club-homepage-guide__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
}

/* Image styles */
.page-blog-k9club-homepage-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

/* Hero Section */
.page-blog-k9club-homepage-guide__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  overflow: hidden;
}

.page-blog-k9club-homepage-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-blog-k9club-homepage-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
  margin: 0;
}

.page-blog-k9club-homepage-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-blog-k9club-homepage-guide__hero-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__hero-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-k9club-homepage-guide__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-k9club-homepage-guide__hero-cta-buttons .page-blog-k9club-homepage-guide__btn-primary,
.page-blog-k9club-homepage-guide__hero-cta-buttons .page-blog-k9club-homepage-guide__btn-secondary {
  min-width: 180px;
}

/* Intro Section */
.page-blog-k9club-homepage-guide__intro-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
}

/* Games Section */
.page-blog-k9club-homepage-guide__games-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__games-section .page-blog-k9club-homepage-guide__section-title {
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__games-section .page-blog-k9club-homepage-guide__section-description {
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-k9club-homepage-guide__game-category {
  margin-bottom: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.page-blog-k9club-homepage-guide__game-category:last-child {
  margin-bottom: 0;
}

.page-blog-k9club-homepage-guide__game-title {
  font-size: clamp(1.5rem, 2vw, 2rem);
  color: var(--text-light);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-k9club-homepage-guide__game-category p {
  color: var(--text-light);
  text-align: justify;
}

/* Guide Section */
.page-blog-k9club-homepage-guide__guide-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-blog-k9club-homepage-guide__sub-title {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-blog-k9club-homepage-guide__guide-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
}

.page-blog-k9club-homepage-guide__guide-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-blog-k9club-homepage-guide__cta-button {
  margin-top: 20px;
}

/* Promo Section */
.page-blog-k9club-homepage-guide__promo-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__promo-section .page-blog-k9club-homepage-guide__section-title {
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__promo-section .page-blog-k9club-homepage-guide__section-description {
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-k9club-homepage-guide__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-blog-k9club-homepage-guide__promo-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: justify;
}

/* App Section */
.page-blog-k9club-homepage-guide__app-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-blog-k9club-homepage-guide__app-features {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-blog-k9club-homepage-guide__app-features li {
  margin-bottom: 10px;
}

/* Safety Section */
.page-blog-k9club-homepage-guide__safety-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__safety-section .page-blog-k9club-homepage-guide__section-title {
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__safety-section .page-blog-k9club-homepage-guide__section-description {
  color: var(--text-light);
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-k9club-homepage-guide__safety-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-blog-k9club-homepage-guide__safety-features li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: justify;
}

/* Support Section */
.page-blog-k9club-homepage-guide__support-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-blog-k9club-homepage-guide__support-channels {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.page-blog-k9club-homepage-guide__support-channels li {
  margin-bottom: 10px;
}

.page-blog-k9club-homepage-guide__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* FAQ Section */
.page-blog-k9club-homepage-guide__faq-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__faq-section .page-blog-k9club-homepage-guide__section-title {
  color: var(--text-light);
}

.page-blog-k9club-homepage-guide__faq-list {
  max-width: 900px;
  margin: 30px auto 0;
}

.page-blog-k9club-homepage-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-blog-k9club-homepage-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
  list-style: none; /* For details/summary */
}

.page-blog-k9club-homepage-guide__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-k9club-homepage-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-k9club-homepage-guide__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  line-height: 1;
}

.page-blog-k9club-homepage-guide__faq-answer {
  padding: 15px 25px 20px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Conclusion Section */
.page-blog-k9club-homepage-guide__conclusion-section {
  padding: 60px 0;
  background-color: var(--background-white);
  color: var(--text-dark);
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-k9club-homepage-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-k9club-homepage-guide__container,
  .page-blog-k9club-homepage-guide__hero-content,
  .page-blog-k9club-homepage-guide__game-category,
  .page-blog-k9club-homepage-guide__promo-list li,
  .page-blog-k9club-homepage-guide__safety-features li,
  .page-blog-k9club-homepage-guide__faq-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-k9club-homepage-guide__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-blog-k9club-homepage-guide__hero-title {
    font-size: 2rem;
  }

  .page-blog-k9club-homepage-guide__hero-description {
    font-size: 1rem;
  }

  .page-blog-k9club-homepage-guide__hero-cta-buttons,
  .page-blog-k9club-homepage-guide__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-k9club-homepage-guide__btn-primary,
  .page-blog-k9club-homepage-guide__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  .page-blog-k9club-homepage-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-blog-k9club-homepage-guide__hero-image-wrapper,
  .page-blog-k9club-homepage-guide__video-container,
  .page-blog-k9club-homepage-guide__video-wrapper,
  .page-blog-k9club-homepage-guide__section,
  .page-blog-k9club-homepage-guide__card,
  .page-blog-k9club-homepage-guide__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-k9club-homepage-guide__section-title {
    font-size: 1.8rem;
  }

  .page-blog-k9club-homepage-guide__game-title,
  .page-blog-k9club-homepage-guide__sub-title {
    font-size: 1.5rem;
  }

  .page-blog-k9club-homepage-guide__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-blog-k9club-homepage-guide__faq-answer {
    font-size: 0.95rem;
    padding: 10px 20px 15px;
  }
}