/* style/blog-king33-game-selection.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-king33-game-selection {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background #0a0a0a */
  line-height: 1.6;
  background-color: transparent; /* Main content background is transparent to show body background */
}

.page-blog-king33-game-selection__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0a0a0a; /* Ensure hero section has a dark background */
  color: #ffffff;
}

.page-blog-king33-game-selection__video-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  box-sizing: border-box;
}

.page-blog-king33-game-selection__video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  cursor: pointer;
}

.page-blog-king33-game-selection__hero-content {
  max-width: 900px;
  margin-top: 20px;
}

.page-blog-king33-game-selection__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-blog-king33-game-selection__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-king33-game-selection__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-king33-game-selection__btn-primary,
.page-blog-king33-game-selection__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-king33-game-selection__btn-primary {
  background-color: #26A9E0; /* Main brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-blog-king33-game-selection__btn-primary:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-blog-king33-game-selection__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-blog-king33-game-selection__btn-secondary:hover {
  background-color: rgba(38, 169, 224, 0.1);
  color: #ffffff;
}

.page-blog-king33-game-selection__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff; /* Light background for content area */
  color: #333333; /* Dark text for light background */
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-top: -40px; /* Overlap with hero for visual flow */
  position: relative;
  z-index: 1;
}

.page-blog-king33-game-selection__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #26A9E0; /* Brand color for main titles */
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-king33-game-selection__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: #000000; /* Darker color for sub titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-king33-game-selection p {
  margin-bottom: 15px;
  color: #333333;
}

.page-blog-king33-game-selection__list,
.page-blog-king33-game-selection__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #333333;
}

.page-blog-king33-game-selection__ordered-list {
  list-style-type: decimal;
}

.page-blog-king33-game-selection__list-item {
  margin-bottom: 8px;
}

.page-blog-king33-game-selection__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-blog-king33-game-selection__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-king33-game-selection__faq-list {
  margin-top: 30px;
}

.page-blog-king33-game-selection__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-blog-king33-game-selection__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  background-color: #f0f0f0;
  color: #26A9E0;
  transition: background-color 0.3s ease;
  list-style: none; /* For <details> summary */
}

.page-blog-king33-game-selection__faq-question::-webkit-details-marker {
  display: none; /* For <details> summary */
}

.page-blog-king33-game-selection__faq-question:hover {
  background-color: #e5e5e5;
}

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

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

.page-blog-king33-game-selection__faq-answer {
  padding: 15px 20px;
  border-top: 1px solid #e0e0e0;
  color: #333333;
}

.page-blog-king33-game-selection__cta-buttons--bottom {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-blog-king33-game-selection__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-king33-game-selection__hero-description {
    font-size: 1rem;
  }
  .page-blog-king33-game-selection__section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
  .page-blog-king33-game-selection__sub-title {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }
}

@media (max-width: 768px) {
  .page-blog-king33-game-selection {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-blog-king33-game-selection__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-king33-game-selection__main-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  .page-blog-king33-game-selection__hero-description {
    font-size: 0.95rem;
  }
  .page-blog-king33-game-selection__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-blog-king33-game-selection__btn-primary,
  .page-blog-king33-game-selection__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
  .page-blog-king33-game-selection__content-area {
    padding: 30px 15px;
    margin-top: -30px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-king33-game-selection__section-title {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .page-blog-king33-game-selection__sub-title {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
  }
  .page-blog-king33-game-selection img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  .page-blog-king33-game-selection video,
  .page-blog-king33-game-selection__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-blog-king33-game-selection__video-section,
  .page-blog-king33-game-selection__video-container,
  .page-blog-king33-game-selection__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-blog-king33-game-selection__faq-question {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  .page-blog-king33-game-selection__faq-answer {
    padding: 12px 15px;
  }
}