/* style/blog-22vip-chinh-thuc-new-experience.css */
:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg-color: #11271B;
  --background-color: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-22vip-chinh-thuc-new-experience {
  font-family: Arial, sans-serif;
  color: var(--text-main-color);
  background-color: var(--background-color); /* Body background is dark, use light text */
  line-height: 1.6;
}

.page-blog-22vip-chinh-thuc-new-experience__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-22vip-chinh-thuc-new-experience__section {
  padding: 60px 0;
  text-align: center;
}

.page-blog-22vip-chinh-thuc-new-experience__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-blog-22vip-chinh-thuc-new-experience__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-blog-22vip-chinh-thuc-new-experience__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text contrast */
}

.page-blog-22vip-chinh-thuc-new-experience__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Ensure text readability */
  border-radius: 10px;
  color: var(--text-main-color);
}

.page-blog-22vip-chinh-thuc-new-experience__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: bold;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-blog-22vip-chinh-thuc-new-experience__description {
  font-size: 1.1rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-22vip-chinh-thuc-new-experience__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-blog-22vip-chinh-thuc-new-experience__text-block {
  font-size: 1rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
  line-height: 1.8;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-22vip-chinh-thuc-new-experience__card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  color: var(--text-main-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-22vip-chinh-thuc-new-experience__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color);
}

.page-blog-22vip-chinh-thuc-new-experience__btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-22vip-chinh-thuc-new-experience__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  margin: 10px;
}

.page-blog-22vip-chinh-thuc-new-experience__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-22vip-chinh-thuc-new-experience__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin: 10px;
}

.page-blog-22vip-chinh-thuc-new-experience__btn-secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
}

.page-blog-22vip-chinh-thuc-new-experience__cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Video Section */
.page-blog-22vip-chinh-thuc-new-experience__video-section {
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--deep-green-color);
}

.page-blog-22vip-chinh-thuc-new-experience__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px; /* Max width for video container */
  margin: 0 auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.page-blog-22vip-chinh-thuc-new-experience__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-22vip-chinh-thuc-new-experience__video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: rgba(0, 0, 0, 0.1); /* Subtle overlay for click indication */
}

.page-blog-22vip-chinh-thuc-new-experience__video-caption {
  margin-top: 20px;
  font-style: italic;
  color: var(--text-secondary-color);
}

/* Features Section */
.page-blog-22vip-chinh-thuc-new-experience__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-22vip-chinh-thuc-new-experience__feature-item {
  text-align: center;
}

.page-blog-22vip-chinh-thuc-new-experience__feature-title {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-blog-22vip-chinh-thuc-new-experience__feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

/* Game Categories Section */
.page-blog-22vip-chinh-thuc-new-experience__game-categories {
  background-color: var(--background-color);
}

.page-blog-22vip-chinh-thuc-new-experience__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-22vip-chinh-thuc-new-experience__category-item {
  text-align: center;
}

.page-blog-22vip-chinh-thuc-new-experience__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-blog-22vip-chinh-thuc-new-experience__category-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold-color);
}

.page-blog-22vip-chinh-thuc-new-experience__category-title a {
  color: var(--gold-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-22vip-chinh-thuc-new-experience__category-title a:hover {
  color: var(--glow-color);
}

.page-blog-22vip-chinh-thuc-new-experience__category-description {
  font-size: 0.9rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

/* Promotions Section */
.page-blog-22vip-chinh-thuc-new-experience__promotions {
  background-color: var(--deep-green-color);
}

.page-blog-22vip-chinh-thuc-new-experience__promotion-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 900px;
}

.page-blog-22vip-chinh-thuc-new-experience__promotion-item {
  text-align: left;
}

.page-blog-22vip-chinh-thuc-new-experience__promotion-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-blog-22vip-chinh-thuc-new-experience__promotion-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
}

/* Get Started Section */
.page-blog-22vip-chinh-thuc-new-experience__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-22vip-chinh-thuc-new-experience__step-item {
  text-align: center;
}

.page-blog-22vip-chinh-thuc-new-experience__step-title {
  font-size: 1.4rem;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-22vip-chinh-thuc-new-experience__step-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-blog-22vip-chinh-thuc-new-experience__step-description {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

/* Blog News Section */
.page-blog-22vip-chinh-thuc-new-experience__blog-news {
  background-color: var(--deep-green-color);
}

.page-blog-22vip-chinh-thuc-new-experience__articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-22vip-chinh-thuc-new-experience__article-card {
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-blog-22vip-chinh-thuc-new-experience__article-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary-color);
  flex-grow: 1;
}

.page-blog-22vip-chinh-thuc-new-experience__article-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-22vip-chinh-thuc-new-experience__article-title a:hover {
  color: var(--gold-color);
}

.page-blog-22vip-chinh-thuc-new-experience__article-meta {
  font-size: 0.85rem;
  color: var(--text-secondary-color);
  margin-bottom: 15px;
}

.page-blog-22vip-chinh-thuc-new-experience__article-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  margin-bottom: 20px;
}

.page-blog-22vip-chinh-thuc-new-experience__read-more {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

.page-blog-22vip-chinh-thuc-new-experience__read-more:hover {
  color: var(--glow-color);
}

/* FAQ Section */
.page-blog-22vip-chinh-thuc-new-experience__faq-section {
  background-color: var(--background-color);
}

.page-blog-22vip-chinh-thuc-new-experience__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-blog-22vip-chinh-thuc-new-experience__faq-item {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: var(--card-bg-color);
  padding: 0;
  overflow: hidden;
}

.page-blog-22vip-chinh-thuc-new-experience__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--primary-color);
  background-color: var(--card-bg-color);
  border-bottom: 1px solid var(--border-color);
}

.page-blog-22vip-chinh-thuc-new-experience__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-blog-22vip-chinh-thuc-new-experience__faq-qtext {
  flex-grow: 1;
}

.page-blog-22vip-chinh-thuc-new-experience__faq-toggle {
  font-size: 1.5rem;
  font-weight: normal;
  margin-left: 20px;
  color: var(--gold-color);
}

.page-blog-22vip-chinh-thuc-new-experience__faq-answer {
  padding: 20px 30px;
  font-size: 0.95rem;
  color: var(--text-secondary-color);
  background-color: var(--deep-green-color);
  border-top: 1px solid var(--divider-color);
}

/* Final CTA Section */
.page-blog-22vip-chinh-thuc-new-experience__final-cta {
  background-color: var(--deep-green-color);
  padding-bottom: 80px;
}

/* General image styling for content areas */
.page-blog-22vip-chinh-thuc-new-experience img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-22vip-chinh-thuc-new-experience {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-22vip-chinh-thuc-new-experience__container {
    padding: 0 15px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__section {
    padding: 40px 0;
  }

  .page-blog-22vip-chinh-thuc-new-experience__hero-content {
    padding: 20px 15px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .page-blog-22vip-chinh-thuc-new-experience__description {
    font-size: 1rem;
  }

  .page-blog-22vip-chinh-thuc-new-experience__section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .page-blog-22vip-chinh-thuc-new-experience__text-block {
    font-size: 0.95rem;
  }

  .page-blog-22vip-chinh-thuc-new-experience__card {
    padding: 20px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    width: 100% !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }

  .page-blog-22vip-chinh-thuc-new-experience__cta-buttons {
    flex-direction: column !important;
    gap: 10px;
    padding: 0 15px;
  }

  .page-blog-22vip-chinh-thuc-new-experience img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
  }

  .page-blog-22vip-chinh-thuc-new-experience__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .page-blog-22vip-chinh-thuc-new-experience__video-section {
    padding-top: 10px !important;
  }

  .page-blog-22vip-chinh-thuc-new-experience__feature-grid,
  .page-blog-22vip-chinh-thuc-new-experience__category-grid,
  .page-blog-22vip-chinh-thuc-new-experience__promotion-list,
  .page-blog-22vip-chinh-thuc-new-experience__steps-grid,
  .page-blog-22vip-chinh-thuc-new-experience__articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__category-image {
    height: 180px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__step-image {
    height: 150px;
  }

  .page-blog-22vip-chinh-thuc-new-experience__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-blog-22vip-chinh-thuc-new-experience__faq-answer {
    padding: 15px 20px;
    font-size: 0.9rem;
  }

  .page-blog-22vip-chinh-thuc-new-experience__hero-section {
    min-height: 400px;
  }
}

/* Ensure content area images are never smaller than 200px */
.page-blog-22vip-chinh-thuc-new-experience__section img:not(.page-blog-22vip-chinh-thuc-new-experience__hero-image) {
  min-width: 200px;
  min-height: 200px;
}

/* Explicitly set max-width for containers in mobile to prevent overflow */
@media (max-width: 768px) {
  .page-blog-22vip-chinh-thuc-new-experience__hero-section,
  .page-blog-22vip-chinh-thuc-new-experience__introduction,
  .page-blog-22vip-chinh-thuc-new-experience__video-section,
  .page-blog-22vip-chinh-thuc-new-experience__features,
  .page-blog-22vip-chinh-thuc-new-experience__game-categories,
  .page-blog-22vip-chinh-thuc-new-experience__promotions,
  .page-blog-22vip-chinh-thuc-new-experience__get-started,
  .page-blog-22vip-chinh-thuc-new-experience__blog-news,
  .page-blog-22vip-chinh-thuc-new-experience__faq-section,
  .page-blog-22vip-chinh-thuc-new-experience__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
}