.page-resources-vn58vip-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main background color */
  line-height: 1.6;
}

.page-resources-vn58vip-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-vn58vip-latest-promotions__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a3d5b 100%); /* Dark blue to slightly lighter dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-resources-vn58vip-latest-promotions__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

.page-resources-vn58vip-latest-promotions__subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #C0C0C0; /* Lighter gray for subtitle */
}

.page-resources-vn58vip-latest-promotions__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-vn58vip-latest-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-resources-vn58vip-latest-promotions__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
}

.page-resources-vn58vip-latest-promotions__btn--primary:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-resources-vn58vip-latest-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text for secondary button */
  border: 2px solid #FFD700;
}

.page-resources-vn58vip-latest-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-resources-vn58vip-latest-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A192F;
  text-decoration: none;
}

.page-resources-vn58vip-latest-promotions__btn--small:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-vn58vip-latest-promotions__section {
  padding: 60px 0;
  background-color: #1A2A47; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
  border-radius: 10px;
}

.page-resources-vn58vip-latest-promotions__section:nth-child(even) {
  background-color: #0A192F; /* Main dark blue for alternating sections */
}

.page-resources-vn58vip-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-resources-vn58vip-latest-promotions__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-resources-vn58vip-latest-promotions__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #C0C0C0;
}

.page-resources-vn58vip-latest-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-vn58vip-latest-promotions__feature-item {
  background-color: #0A192F; /* Dark blue for feature cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70033; /* Subtle gold border */
}

.page-resources-vn58vip-latest-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD70088); /* Gold glow effect */
}

.page-resources-vn58vip-latest-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-resources-vn58vip-latest-promotions__feature-description {
  font-size: 1em;
  color: #E0E0E0;
}

.page-resources-vn58vip-latest-promotions__promo-card {
  background-color: #0A192F; /* Dark blue for promo cards */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
  overflow: hidden;
  border: 1px solid #FFD70044;
}

.page-resources-vn58vip-latest-promotions__promo-header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.page-resources-vn58vip-latest-promotions__promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-resources-vn58vip-latest-promotions__promo-card:hover .page-resources-vn58vip-latest-promotions__promo-image {
  transform: scale(1.05);
}

.page-resources-vn58vip-latest-promotions__promo-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 25, 47, 0.8); /* Semi-transparent dark blue overlay */
  color: #FFD700;
  padding: 15px 20px;
  font-size: 1.8em;
  margin: 0;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.page-resources-vn58vip-latest-promotions__promo-content {
  padding: 30px;
  color: #E0E0E0;
}

.page-resources-vn58vip-latest-promotions__promo-content h4 {
  color: #FFD700;
  font-size: 1.3em;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-resources-vn58vip-latest-promotions__promo-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-resources-vn58vip-latest-promotions__promo-content li {
  margin-bottom: 8px;
}

.page-resources-vn58vip-latest-promotions__how-to-join .page-resources-vn58vip-latest-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-vn58vip-latest-promotions__step-item {
  background-color: #1A2A47; /* Lighter dark blue for step cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70033;
}

.page-resources-vn58vip-latest-promotions__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px #FFD70088);
}

.page-resources-vn58vip-latest-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-vn58vip-latest-promotions__step-item a {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-vn58vip-latest-promotions__app-download {
  background: linear-gradient(135deg, #0A192F 0%, #1A2A47 100%); /* Gradient for app section */
  padding: 80px 0;
}

.page-resources-vn58vip-latest-promotions__app-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-resources-vn58vip-latest-promotions__app-text {
  flex: 1;
  min-width: 300px;
}

.page-resources-vn58vip-latest-promotions__app-text .page-resources-vn58vip-latest-promotions__section-title {
  text-align: left;
  margin-bottom: 20px;
}

.page-resources-vn58vip-latest-promotions__app-text .page-resources-vn58vip-latest-promotions__section-title::after {
  margin-left: 0;
}

.page-resources-vn58vip-latest-promotions__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-resources-vn58vip-latest-promotions__app-benefits li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-resources-vn58vip-latest-promotions__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-resources-vn58vip-latest-promotions__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 15px #FFD70088);
}

.page-resources-vn58vip-latest-promotions__platform-info .page-resources-vn58vip-latest-promotions__info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-resources-vn58vip-latest-promotions__info-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #FFD70033;
}

.page-resources-vn58vip-latest-promotions__info-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 5px #FFD70088);
}

.page-resources-vn58vip-latest-promotions__info-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-vn58vip-latest-promotions__faq {
  background-color: #1A2A47;
}

.page-resources-vn58vip-latest-promotions__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #FFD70044;
  border-radius: 8px;
  overflow: hidden;
}

.page-resources-vn58vip-latest-promotions__accordion-header {
  background-color: #0A192F;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.page-resources-vn58vip-latest-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.page-resources-vn58vip-latest-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-resources-vn58vip-latest-promotions__accordion-header:hover {
  background-color: #1A2A47;
}

.page-resources-vn58vip-latest-promotions__accordion-content {
  padding: 0 25px;
  background-color: #0A192F;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-resources-vn58vip-latest-promotions__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px 25px;
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer {
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(45deg, #FFD700 0%, #0A192F 100%); /* Gold to dark blue gradient */
  color: #0A192F; /* Dark text on gold-ish background */
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer .page-resources-vn58vip-latest-promotions__section-title {
  color: #0A192F; /* Dark blue for title */
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer .page-resources-vn58vip-latest-promotions__section-title::after {
  background-color: #0A192F;
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer .page-resources-vn58vip-latest-promotions__description {
  color: #1A2A47; /* Darker text for description */
  margin-bottom: 40px;
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer .page-resources-vn58vip-latest-promotions__btn--primary {
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-vn58vip-latest-promotions__call-to-action-footer .page-resources-vn58vip-latest-promotions__btn--primary:hover {
  background-color: #1A2A47;
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-resources-vn58vip-latest-promotions__title {
    font-size: 2.8em;
  }

  .page-resources-vn58vip-latest-promotions__section-title {
    font-size: 2em;
  }

  .page-resources-vn58vip-latest-promotions__app-content {
    flex-direction: column;
    text-align: center;
  }

  .page-resources-vn58vip-latest-promotions__app-text .page-resources-vn58vip-latest-promotions__section-title {
    text-align: center;
  }

  .page-resources-vn58vip-latest-promotions__app-text .page-resources-vn58vip-latest-promotions__section-title::after {
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .page-resources-vn58vip-latest-promotions__hero {
    padding: 70px 0;
  }

  .page-resources-vn58vip-latest-promotions__title {
    font-size: 2.2em;
  }

  .page-resources-vn58vip-latest-promotions__subtitle {
    font-size: 1.1em;
  }

  .page-resources-vn58vip-latest-promotions__section {
    padding: 40px 0;
  }

  .page-resources-vn58vip-latest-promotions__section-title {
    font-size: 1.8em;
  }

  .page-resources-vn58vip-latest-promotions__promo-title {
    font-size: 1.5em;
    padding: 10px 15px;
  }

  .page-resources-vn58vip-latest-promotions__promo-content {
    padding: 20px;
  }

  .page-resources-vn58vip-latest-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-vn58vip-latest-promotions__app-benefits li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-resources-vn58vip-latest-promotions__title {
    font-size: 1.8em;
  }

  .page-resources-vn58vip-latest-promotions__section-title {
    font-size: 1.5em;
  }

  .page-resources-vn58vip-latest-promotions__cta-group {
    flex-direction: column;
  }

  .page-resources-vn58vip-latest-promotions__btn {
    width: 100%;
    max-width: 280px;
  }

  .page-resources-vn58vip-latest-promotions__promo-header {
    height: 180px;
  }

  .page-resources-vn58vip-latest-promotions__promo-title {
    font-size: 1.2em;
  }

  .page-resources-vn58vip-latest-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-resources-vn58vip-latest-promotions__accordion-header::after {
    font-size: 1.2em;
    right: 15px;
  }

  .page-resources-vn58vip-latest-promotions__accordion-content {
    padding: 10px 20px 20px;
  }
}