/* style/blog-kim66-latest-games-guide.css */

/* Basic Reset & Body Styling (Assuming shared.css handles body padding-top) */
.page-blog-kim66-latest-games-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

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

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

.page-blog-kim66-latest-games-guide__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-kim66-latest-games-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure image covers the area */
}

.page-blog-kim66-latest-games-guide__hero-content {
  position: relative; /* Ensure content is above other elements if any */
  z-index: 10;
  max-width: 800px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-kim66-latest-games-guide__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Subtle shadow for readability */
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
}

.page-blog-kim66-latest-games-guide__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Sections */
.page-blog-kim66-latest-games-guide__section {
  padding: 60px 0;
}

.page-blog-kim66-latest-games-guide__intro-section, 
.page-blog-kim66-latest-games-guide__access-guide, 
.page-blog-kim66-latest-games-guide__games-section, 
.page-blog-kim66-latest-games-guide__promotions-section, 
.page-blog-kim66-latest-games-guide__tips-section, 
.page-blog-kim66-latest-games-guide__support-section, 
.page-blog-kim66-latest-games-guide__faq-section, 
.page-blog-kim66-latest-games-guide__conclusion-section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white for sections on dark body */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-kim66-latest-games-guide__section-title {
  font-size: 2.2rem;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-blog-kim66-latest-games-guide__sub-title {
  font-size: 1.6rem;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-kim66-latest-games-guide__content-area {
  color: #f0f0f0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-blog-kim66-latest-games-guide__content-area p {
  margin-bottom: 15px;
}

.page-blog-kim66-latest-games-guide__list, 
.page-blog-kim66-latest-games-guide__numbered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-blog-kim66-latest-games-guide__numbered-list {
  list-style-type: decimal;
}

.page-blog-kim66-latest-games-guide__list li, 
.page-blog-kim66-latest-games-guide__numbered-list li {
  margin-bottom: 10px;
}

/* Images */
.page-blog-kim66-latest-games-guide img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-kim66-latest-games-guide__image-full-width {
  width: 100%;
  margin: 30px 0;
}

.page-blog-kim66-latest-games-guide__image-center {
  margin: 30px auto;
  display: block;
  max-width: 80%;
}

/* Buttons */
.page-blog-kim66-latest-games-guide__btn-primary,
.page-blog-kim66-latest-games-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 20px;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-kim66-latest-games-guide__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-kim66-latest-games-guide__btn-primary:hover {
  background-color: #1a7fb8;
  border-color: #1a7fb8;
}

.page-blog-kim66-latest-games-guide__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-left: 15px;
}

.page-blog-kim66-latest-games-guide__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

/* FAQ Section */
.page-blog-kim66-latest-games-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-kim66-latest-games-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  background-color: rgba(38, 169, 224, 0.2); /* Lighter brand color for question background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-blog-kim66-latest-games-guide__faq-question::marker {
  display: none;
}

.page-blog-kim66-latest-games-guide__faq-qtext {
  flex-grow: 1;
}

.page-blog-kim66-latest-games-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
  color: #26A9E0;
}

.page-blog-kim66-latest-games-guide__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1.05rem;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-kim66-latest-games-guide__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-kim66-latest-games-guide__section-title {
    font-size: 2rem;
  }
  .page-blog-kim66-latest-games-guide__sub-title {
    font-size: 1.4rem;
  }
}

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

  .page-blog-kim66-latest-games-guide__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-blog-kim66-latest-games-guide__hero-content {
    margin-top: 20px;
  }

  .page-blog-kim66-latest-games-guide__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-kim66-latest-games-guide__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-kim66-latest-games-guide__section {
    padding: 40px 0;
  }

  .page-blog-kim66-latest-games-guide__container {
    padding: 0 15px !important;
  }

  .page-blog-kim66-latest-games-guide__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-blog-kim66-latest-games-guide__sub-title {
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-blog-kim66-latest-games-guide__content-area {
    font-size: 0.95rem;
  }

  .page-blog-kim66-latest-games-guide img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-kim66-latest-games-guide__hero-image-wrapper,
  .page-blog-kim66-latest-games-guide__section,
  .page-blog-kim66-latest-games-guide__container,
  .page-blog-kim66-latest-games-guide__card,
  .page-blog-kim66-latest-games-guide__content-area {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-blog-kim66-latest-games-guide__btn-primary,
  .page-blog-kim66-latest-games-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 20px;
    font-size: 1rem;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-blog-kim66-latest-games-guide__btn-secondary {
    margin-left: 0;
  }

  .page-blog-kim66-latest-games-guide__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-kim66-latest-games-guide__faq-answer {
    padding: 10px 20px 20px 20px;
    font-size: 0.9rem;
  }
}