/* style/resources-95vn-latest-promotions-analysis.css */

/* Base styles for the page content */
.page-resources-95vn-latest-promotions-analysis {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark background */
  background-color: var(--dark-bg); /* Inherited from shared.css */
}

.page-resources-95vn-latest-promotions-analysis__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-resources-95vn-latest-promotions-analysis__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-95vn-latest-promotions-analysis__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-resources-95vn-latest-promotions-analysis__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  text-align: center;
  background: linear-gradient(135deg, rgba(38, 169, 224, 0.8), rgba(0, 0, 0, 0.8));
  position: relative;
  overflow: hidden;
}

.page-resources-95vn-latest-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-95vn-latest-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Dim the background image for text readability */
}

.page-resources-95vn-latest-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: #ffffff;
}

.page-resources-95vn-latest-promotions-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-95vn-latest-promotions-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-95vn-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
}

.page-resources-95vn-latest-promotions-analysis__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-95vn-latest-promotions-analysis__btn-primary:hover {
  background: #1e87b7;
  transform: translateY(-2px);
}

.page-resources-95vn-latest-promotions-analysis__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-95vn-latest-promotions-analysis__btn-secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

/* Promotions Overview Section */
.page-resources-95vn-latest-promotions-analysis__promotions-overview {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  border-radius: 10px;
  margin-top: 40px;
}

.page-resources-95vn-latest-promotions-analysis__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-95vn-latest-promotions-analysis__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-95vn-latest-promotions-analysis__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-95vn-latest-promotions-analysis__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-resources-95vn-latest-promotions-analysis__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-95vn-latest-promotions-analysis__card-text {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-95vn-latest-promotions-analysis__card-button {
  margin-top: auto;
}

/* How to Participate Section */
.page-resources-95vn-latest-promotions-analysis__how-to-participate {
  background-color: var(--dark-bg);
  padding-bottom: 20px;
}

.page-resources-95vn-latest-promotions-analysis__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-resources-95vn-latest-promotions-analysis__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-resources-95vn-latest-promotions-analysis__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-resources-95vn-latest-promotions-analysis__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-95vn-latest-promotions-analysis__step-button {
  margin-top: auto;
}

.page-resources-95vn-latest-promotions-analysis__image-container {
  text-align: center;
}

.page-resources-95vn-latest-promotions-analysis__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Detailed Analysis Section */
.page-resources-95vn-latest-promotions-analysis__detailed-analysis {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.page-resources-95vn-latest-promotions-analysis__analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-95vn-latest-promotions-analysis__analysis-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #26A9E0;
  border-radius: 0 10px 10px 0;
  padding: 25px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.page-resources-95vn-latest-promotions-analysis__analysis-subtitle {
  font-size: 1.3em;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-95vn-latest-promotions-analysis__analysis-item p {
  font-size: 0.95em;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-resources-95vn-latest-promotions-analysis__analysis-button {
  margin-top: auto;
  margin-right: 10px; /* Space between multiple buttons */
}

/* Tips & Strategies Section */
.page-resources-95vn-latest-promotions-analysis__tips-strategies {
  background-color: var(--dark-bg);
}

.page-resources-95vn-latest-promotions-analysis__tips-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-resources-95vn-latest-promotions-analysis__tips-content {
  flex: 1;
}

.page-resources-95vn-latest-promotions-analysis__tips-list {
  list-style: none;
  padding-left: 0;
}

.page-resources-95vn-latest-promotions-analysis__tips-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #26A9E0;
}

.page-resources-95vn-latest-promotions-analysis__list-strong {
  color: #26A9E0;
}

.page-resources-95vn-latest-promotions-analysis__tips-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-resources-95vn-latest-promotions-analysis__tips-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-resources-95vn-latest-promotions-analysis__faq-section {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.page-resources-95vn-latest-promotions-analysis__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-95vn-latest-promotions-analysis__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-95vn-latest-promotions-analysis__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
  color: #26A9E0;
  background-color: rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-resources-95vn-latest-promotions-analysis__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-resources-95vn-latest-promotions-analysis__faq-qtext {
  flex-grow: 1;
  padding-right: 10px;
}

.page-resources-95vn-latest-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-resources-95vn-latest-promotions-analysis__faq-item[open] .page-resources-95vn-latest-promotions-analysis__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-95vn-latest-promotions-analysis__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-resources-95vn-latest-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-resources-95vn-latest-promotions-analysis__cta-final {
  text-align: center;
  background-color: var(--dark-bg);
}