/* style/blog-368bet-chinh-thuc-latest-promotions-and-registration.css */

:root {
  --page-bg-color: #08160F;
  --card-bg-color: #11271B;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --button-text-color: #F2FFF6;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

.page-blog-chinh-thuc-latest-promotions-and-registration {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Assuming body background is dark from shared.css */
  background-color: var(--page-bg-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-chinh-thuc-latest-promotions-and-registration__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 10px 0 60px; /* Small top padding, body handles header offset */
  background-color: var(--page-bg-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__hero-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin-bottom: 30px;
  border-radius: 8px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__hero-content {
  max-width: 900px;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(87, 227, 141, 0.5);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary-color);
  margin-bottom: 30px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* General Section Styling */
.page-blog-chinh-thuc-latest-promotions-and-registration__section {
  padding: 60px 0;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__heading {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__text-content {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 30px;
  border-radius: 8px;
  object-fit: cover;
}

/* List Styles */
.page-blog-chinh-thuc-latest-promotions-and-registration__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__ordered-list {
  list-style: decimal inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__list-item {
  margin-bottom: 10px;
  color: var(--text-main-color);
}

/* Card Styles */
.page-blog-chinh-thuc-latest-promotions-and-registration__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: center;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__card-description {
  font-size: 1rem;
  color: var(--text-secondary-color);
}

/* Grid Layouts */
.page-blog-chinh-thuc-latest-promotions-and-registration__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__product-card {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  display: block;
}

/* Button Styles */
.page-blog-chinh-thuc-latest-promotions-and-registration__btn-primary,
.page-blog-chinh-thuc-latest-promotions-and-registration__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Break long words */
  max-width: 100%;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__btn-primary {
  background: var(--button-gradient);
  color: var(--button-text-color);
  border: 2px solid transparent;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__btn-primary:hover {
  box-shadow: 0 0 15px var(--glow-color);
  transform: translateY(-2px);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg-color);
  box-shadow: 0 0 15px var(--gold-color);
}

/* Support Section */
.page-blog-chinh-thuc-latest-promotions-and-registration__support-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__support-content > img {
  flex: 1;
  min-width: 300px;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__support-text-block {
  flex: 2;
  min-width: 300px;
}

/* App Download Section */
.page-blog-chinh-thuc-latest-promotions-and-registration__app-info {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__app-qr-code {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px;
  background-color: #fff;
  object-fit: contain;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__app-details {
  flex: 1;
  min-width: 300px;
}

/* FAQ Section */
.page-blog-chinh-thuc-latest-promotions-and-registration__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-item {
  background-color: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: var(--deep-green-color);
  border-bottom: 1px solid var(--border-color);
  list-style: none; /* For details/summary */
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-qtext {
  flex-grow: 1;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-item[open] .page-blog-chinh-thuc-latest-promotions-and-registration__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: var(--text-secondary-color);
  background-color: var(--card-bg-color);
  border-top: 1px solid var(--divider-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__faq-answer p {
  margin-bottom: 0;
}

/* Color Contrast Classes */
.page-blog-chinh-thuc-latest-promotions-and-registration__dark-bg {
  background-color: var(--page-bg-color);
  color: var(--text-main-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__light-bg {
  background-color: #11271B; /* Using a slightly lighter dark green for contrast */
  color: var(--text-main-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__dark-bg-card {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-blog-chinh-thuc-latest-promotions-and-registration__light-bg-card {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-image {
    max-height: 500px;
  }
  .page-blog-chinh-thuc-latest-promotions-and-registration__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-blog-chinh-thuc-latest-promotions-and-registration__heading {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-blog-chinh-thuc-latest-promotions-and-registration {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__container {
    padding: 0 15px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-section {
    padding: 10px 0 40px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-image {
    max-height: 350px;
    margin-bottom: 20px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__btn-primary,
  .page-blog-chinh-thuc-latest-promotions-and-registration__btn-secondary {
    width: 100% !important;
    padding: 10px 20px;
    font-size: 1rem;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__section {
    padding: 40px 0;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__text-content {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__image-content,
  .page-blog-chinh-thuc-latest-promotions-and-registration__product-image,
  .page-blog-chinh-thuc-latest-promotions-and-registration__app-qr-code {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__support-content,
  .page-blog-chinh-thuc-latest-promotions-and-registration__app-info {
    flex-direction: column;
    gap: 30px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__support-content > img,
  .page-blog-chinh-thuc-latest-promotions-and-registration__support-text-block,
  .page-blog-chinh-thuc-latest-promotions-and-registration__app-qr-code,
  .page-blog-chinh-thuc-latest-promotions-and-registration__app-details {
    min-width: unset;
    width: 100%;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }

  .page-blog-chinh-thuc-latest-promotions-and-registration__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

  /* Ensure all containers with images/videos/buttons are responsive */
  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-section,
  .page-blog-chinh-thuc-latest-promotions-and-registration__section,
  .page-blog-chinh-thuc-latest-promotions-and-registration__container,
  .page-blog-chinh-thuc-latest-promotions-and-registration__grid,
  .page-blog-chinh-thuc-latest-promotions-and-registration__product-grid,
  .page-blog-chinh-thuc-latest-promotions-and-registration__card,
  .page-blog-chinh-thuc-latest-promotions-and-registration__product-card,
  .page-blog-chinh-thuc-latest-promotions-and-registration__cta-buttons,
  .page-blog-chinh-thuc-latest-promotions-and-registration__app-info {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-content {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-blog-chinh-thuc-latest-promotions-and-registration__hero-image {
    max-height: 250px;
  }
}