/* style/blog-ke9f-game-guides-tips.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --accent-color-login: #EA7C07;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #0d0d0d; /* Assuming --black-color from shared.css is dark */
}

.page-blog-ke9f-game-guides-tips {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for page content, assuming body is dark */
  background-color: var(--bg-dark); /* Ensure consistency if shared.css body is dark */
}

.page-blog-ke9f-game-guides-tips__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Adjust as needed */
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-ke9f-game-guides-tips__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.page-blog-ke9f-game-guides-tips__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--text-light);
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
  margin-top: 100px; /* Push content down from the top */
}

.page-blog-ke9f-game-guides-tips__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-ke9f-game-guides-tips__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-blog-ke9f-game-guides-tips__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-ke9f-game-guides-tips__btn-primary,
.page-blog-ke9f-game-guides-tips__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-ke9f-game-guides-tips__btn-primary {
  background-color: var(--accent-color-login);
  color: var(--text-light);
  border: 2px solid var(--accent-color-login);
}

.page-blog-ke9f-game-guides-tips__btn-primary:hover {
  background-color: #e06c00;
  border-color: #e06c00;
}

.page-blog-ke9f-game-guides-tips__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-ke9f-game-guides-tips__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-ke9f-game-guides-tips__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: var(--bg-light); /* Light background for content */
  color: var(--text-dark); /* Dark text on light background */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: -50px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 2;
}

.page-blog-ke9f-game-guides-tips__section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.page-blog-ke9f-game-guides-tips__sub-title {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-ke9f-game-guides-tips p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-ke9f-game-guides-tips ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
}

.page-blog-ke9f-game-guides-tips li {
  margin-bottom: 8px;
}

.page-blog-ke9f-game-guides-tips__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  object-fit: cover;
  min-height: 200px;
  min-width: 200px;
}

.page-blog-ke9f-game-guides-tips__faq-list {
  margin-top: 30px;
}

.page-blog-ke9f-game-guides-tips__faq-item {
  background-color: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-dark);
}

.page-blog-ke9f-game-guides-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
  background-color: #f0f8ff;
  transition: background-color 0.3s ease;
  list-style: none; /* For details summary */
}

.page-blog-ke9f-game-guides-tips__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-ke9f-game-guides-tips__faq-question:hover {
  background-color: #e6f7ff;
}

.page-blog-ke9f-game-guides-tips__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-blog-ke9f-game-guides-tips__faq-item[open] .page-blog-ke9f-game-guides-tips__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-ke9f-game-guides-tips__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--text-dark);
  background-color: var(--secondary-color);
}

.page-blog-ke9f-game-guides-tips__cta-buttons--bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-ke9f-game-guides-tips__hero-content {
    padding: 30px 15px;
  }

  .page-blog-ke9f-game-guides-tips__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-blog-ke9f-game-guides-tips__description {
    font-size: 1rem;
  }

  .page-blog-ke9f-game-guides-tips__content-area {
    padding: 40px 15px;
  }

  .page-blog-ke9f-game-guides-tips__section-title {
    font-size: 2rem;
  }

  .page-blog-ke9f-game-guides-tips__sub-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .page-blog-ke9f-game-guides-tips {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-ke9f-game-guides-tips__hero-content {
    margin-top: 50px; /* Adjust margin for smaller screens */
  }

  .page-blog-ke9f-game-guides-tips__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-blog-ke9f-game-guides-tips__description {
    font-size: 0.95rem;
  }

  .page-blog-ke9f-game-guides-tips__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-ke9f-game-guides-tips__btn-primary,
  .page-blog-ke9f-game-guides-tips__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1rem !important;
  }

  .page-blog-ke9f-game-guides-tips__content-area {
    padding: 30px 15px;
    margin-top: -30px;
  }

  .page-blog-ke9f-game-guides-tips__section-title {
    font-size: 1.8rem;
  }

  .page-blog-ke9f-game-guides-tips__sub-title {
    font-size: 1.3rem;
  }

  .page-blog-ke9f-game-guides-tips__image-full-width {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .page-blog-ke9f-game-guides-tips__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-ke9f-game-guides-tips__faq-answer {
    padding: 10px 20px 15px;
  }

  /* Containers for images/videos/buttons */
  .page-blog-ke9f-game-guides-tips__hero-section,
  .page-blog-ke9f-game-guides-tips__content-area,
  .page-blog-ke9f-game-guides-tips__cta-buttons,
  .page-blog-ke9f-game-guides-tips__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-ke9f-game-guides-tips__hero-section {
    padding-top: 10px !important;
  }

  .page-blog-ke9f-game-guides-tips__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .page-blog-ke9f-game-guides-tips__hero-content {
    padding: 20px 10px;
  }

  .page-blog-ke9f-game-guides-tips__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-blog-ke9f-game-guides-tips__description {
    font-size: 0.9rem;
  }

  .page-blog-ke9f-game-guides-tips__section-title {
    font-size: 1.6rem;
  }

  .page-blog-ke9f-game-guides-tips__sub-title {
    font-size: 1.2rem;
  }

  .page-blog-ke9f-game-guides-tips__faq-question {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-blog-ke9f-game-guides-tips__faq-answer {
    padding: 8px 15px 12px;
  }
}