/* style/blog-king33-official-launch-guide.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --button-login: #EA7C07;
  --background-white: #FFFFFF;
  --black: #000000;
}

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

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

.page-blog-king33-official-launch-guide__hero-section {
  position: relative;
  overflow: hidden;
  color: var(--text-light);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-blog-king33-official-launch-guide__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-king33-official-launch-guide__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-blog-king33-official-launch-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-blog-king33-official-launch-guide__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-light);
}

.page-blog-king33-official-launch-guide__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: var(--text-light);
}

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

.page-blog-king33-official-launch-guide__btn-primary,
.page-blog-king33-official-launch-guide__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;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

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

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

.page-blog-king33-official-launch-guide__btn-secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-blog-king33-official-launch-guide__btn-secondary:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-blog-king33-official-launch-guide__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-blog-king33-official-launch-guide__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-king33-official-launch-guide__intro-section,
.page-blog-king33-official-launch-guide__registration-guide,
.page-blog-king33-official-launch-guide__products-services,
.page-blog-king33-official-launch-guide__promotions-2026,
.page-blog-king33-official-launch-guide__transactions-guide,
.page-blog-king33-official-launch-guide__download-app,
.page-blog-king33-official-launch-guide__security-policy,
.page-blog-king33-official-launch-guide__support-section,
.page-blog-king33-official-launch-guide__faq-section,
.page-blog-king33-official-launch-guide__conclusion-section {
  padding: 40px 0;
  background-color: var(--background-white);
}

.page-blog-king33-official-launch-guide__video-wrapper {
  margin: 40px auto;
  max-width: 800px;
  width: 100%; /* Desktop width: 100% with max-width */
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  background-color: var(--black);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.page-blog-king33-official-launch-guide__video-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.page-blog-king33-official-launch-guide__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-king33-official-launch-guide__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.page-blog-king33-official-launch-guide__step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-king33-official-launch-guide__step-title {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-king33-official-launch-guide__step-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  max-width: 800px;
}

.page-blog-king33-official-launch-guide__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: block;
}

.page-blog-king33-official-launch-guide__product-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-king33-official-launch-guide__product-item {
  background-color: var(--background-white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-king33-official-launch-guide__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-blog-king33-official-launch-guide__product-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-king33-official-launch-guide__product-description {
  font-size: 1rem;
  color: var(--text-dark);
  padding: 0 15px;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-king33-official-launch-guide__btn-text {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-king33-official-launch-guide__btn-text:hover {
  background-color: darken(var(--primary-color), 10%);
}

.page-blog-king33-official-launch-guide__promo-list,
.page-blog-king33-official-launch-guide__app-benefits,
.page-blog-king33-official-launch-guide__security-features,
.page-blog-king33-official-launch-guide__contact-channels {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-blog-king33-official-launch-guide__promo-item,
.page-blog-king33-official-launch-guide__app-benefit-item,
.page-blog-king33-official-launch-guide__security-item,
.page-blog-king33-official-launch-guide__channel-item {
  background-color: #f9f9f9;
  border-left: 5px solid var(--primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1rem;
}

.page-blog-king33-official-launch-guide__promo-image,
.page-blog-king33-official-launch-guide__transaction-image,
.page-blog-king33-official-launch-guide__app-image,
.page-blog-king33-official-launch-guide__support-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-blog-king33-official-launch-guide__transaction-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-king33-official-launch-guide__method-item {
  background-color: var(--background-white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-blog-king33-official-launch-guide__method-title,
.page-blog-king33-official-launch-guide__app-subtitle {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-king33-official-launch-guide__cta-wrapper {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-king33-official-launch-guide__faq-list {
  margin-top: 30px;
}

.page-blog-king33-official-launch-guide__faq-item {
  background-color: var(--background-white);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-king33-official-launch-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-dark);
  cursor: pointer;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-king33-official-launch-guide__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for details/summary */
}

.page-blog-king33-official-launch-guide__faq-question:hover {
  background-color: #eee;
}

.page-blog-king33-official-launch-guide__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-left: 15px;
}

.page-blog-king33-official-launch-guide__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: var(--text-dark);
  border-top: 1px solid #e0e0e0;
}

.page-blog-king33-official-launch-guide__faq-answer p {
  margin: 0;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-blog-king33-official-launch-guide {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-king33-official-launch-guide__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-king33-official-launch-guide__hero-section {
    min-height: 400px;
    padding: 30px 15px;
    padding-top: 10px !important; /* body handles --header-offset */
  }

  .page-blog-king33-official-launch-guide__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-king33-official-launch-guide__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-king33-official-launch-guide__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-king33-official-launch-guide__btn-primary,
  .page-blog-king33-official-launch-guide__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-blog-king33-official-launch-guide__section-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-blog-king33-official-launch-guide__text-block {
    font-size: 1rem;
  }

  .page-blog-king33-official-launch-guide__video-wrapper {
    margin: 30px auto;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-king33-official-launch-guide__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-king33-official-launch-guide__step-title,
  .page-blog-king33-official-launch-guide__method-title,
  .page-blog-king33-official-launch-guide__app-subtitle {
    font-size: 1.5rem;
  }

  .page-blog-king33-official-launch-guide__step-image,
  .page-blog-king33-official-launch-guide__product-image,
  .page-blog-king33-official-launch-guide__promo-image,
  .page-blog-king33-official-launch-guide__transaction-image,
  .page-blog-king33-official-launch-guide__app-image,
  .page-blog-king33-official-launch-guide__support-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-king33-official-launch-guide__product-list,
  .page-blog-king33-official-launch-guide__transaction-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-king33-official-launch-guide__product-item,
  .page-blog-king33-official-launch-guide__method-item {
    padding: 20px;
  }

  .page-blog-king33-official-launch-guide__promo-item,
  .page-blog-king33-official-launch-guide__app-benefit-item,
  .page-blog-king33-official-launch-guide__security-item,
  .page-blog-king33-official-launch-guide__channel-item {
    font-size: 1rem;
    padding: 12px 15px;
  }

  .page-blog-king33-official-launch-guide__cta-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .page-blog-king33-official-launch-guide__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-king33-official-launch-guide__faq-answer {
    font-size: 0.95rem;
    padding: 12px 20px 15px;
  }

  /* Ensure all content containers are responsive */
  .page-blog-king33-official-launch-guide__intro-section,
  .page-blog-king33-official-launch-guide__registration-guide,
  .page-blog-king33-official-launch-guide__products-services,
  .page-blog-king33-official-launch-guide__promotions-2026,
  .page-blog-king33-official-launch-guide__transactions-guide,
  .page-blog-king33-official-launch-guide__download-app,
  .page-blog-king33-official-launch-guide__security-policy,
  .page-blog-king33-official-launch-guide__support-section,
  .page-blog-king33-official-launch-guide__faq-section,
  .page-blog-king33-official-launch-guide__conclusion-section {
    padding: 30px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}