.page-promotions-vip-rewards {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0;
  background-color: #0A192F;
  line-height: 1.6;
}

.page-promotions-vip-rewards__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions-vip-rewards__hero {
  background: linear-gradient(135deg, #0A192F 0%, #2a416a 100%);
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-rewards__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.page-promotions-vip-rewards__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-promotions-vip-rewards__hero-image {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.2;
  z-index: 0;
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .page-promotions-vip-rewards__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-vip-rewards__hero-description {
    font-size: 1.1em;
  }
  .page-promotions-vip-rewards__hero-image {
    width: 200px;
    bottom: -30px;
    right: -30px;
  }
}

.page-promotions-vip-rewards__section {
  padding: 60px 0;
  background-color: #122849;
  margin-bottom: 30px;
}

.page-promotions-vip-rewards__section:nth-of-type(even) {
  background-color: #0A192F;
}

.page-promotions-vip-rewards__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-vip-rewards__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promotions-vip-rewards__section-intro {
  font-size: 1.2em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #B0B0B0;
}

.page-promotions-vip-rewards__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions-vip-rewards__benefit-card {
  background-color: #1A3459;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-vip-rewards__benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-rewards__benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-vip-rewards__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-rewards__tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-vip-rewards__tier-card {
  background-color: #1A3459;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.page-promotions-vip-rewards__tier-image {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

.page-promotions-vip-rewards__tier-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions-vip-rewards__tier-card ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-promotions-vip-rewards__tier-card ul li::before {
  content: '✔';
  color: #FFD700;
  margin-right: 10px;
}

.page-promotions-vip-rewards__subtitle {
  font-size: 2.2em;
  color: #FFD700;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 25px;
}

.page-promotions-vip-rewards__text-content {
  font-size: 1.1em;
  color: #B0B0B0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promotions-vip-rewards__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-rewards__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.page-promotions-vip-rewards__steps-list li {
  background-color: #1A3459;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-left: 5px solid #FFD700;
}

.page-promotions-vip-rewards__list-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-vip-rewards__list-title::before {
  content: '';
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #FFD700;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-promotions-vip-rewards__steps-list p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-promotions-vip-rewards__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.page-promotions-vip-rewards__button--primary {
  background-color: #FFD700;
  color: #0A192F;
  font-size: 1.2em;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-vip-rewards__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-promotions-vip-rewards__button--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
  font-size: 1em;
}

.page-promotions-vip-rewards__button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-2px);
}

.page-promotions-vip-rewards__button--cta {
  background-color: #FFD700;
  color: #0A192F;
  font-size: 1.5em;
  padding: 15px 35px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  margin-top: 30px;
}

.page-promotions-vip-rewards__button--cta:hover {
  background-color: #e6c200;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.7);
}

.page-promotions-vip-rewards__faq {
  background-color: #0A192F;
}

.page-promotions-vip-rewards__accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-vip-rewards__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #1A3459;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions-vip-rewards__accordion-header {
  background-color: #1A3459;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions-vip-rewards__accordion-header:hover {
  background-color: #2a416a;
}

.page-promotions-vip-rewards__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
}

.page-promotions-vip-rewards__accordion-header.active::after {
  content: '-';
}

.page-promotions-vip-rewards__accordion-content {
  padding: 0 25px;
  background-color: #122849;
  color: #E0E0E0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions-vip-rewards__accordion-content p {
  padding: 15px 0;
  margin: 0;
}

.page-promotions-vip-rewards__cta-banner {
  background: linear-gradient(90deg, #0A192F 0%, #FFD700 100%);
  color: #0A192F;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
}

.page-promotions-vip-rewards__cta-banner .page-promotions-vip-rewards__container {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-rewards__cta-title {
  font-size: 3em;
  color: #0A192F;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.page-promotions-vip-rewards__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-promotions-vip-rewards__cta-image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-20deg);
  width: 250px;
  height: auto;
  opacity: 0.15;
  z-index: 0;
}

@media (max-width: 768px) {
  .page-promotions-vip-rewards__cta-title {
    font-size: 2em;
  }
  .page-promotions-vip-rewards__cta-description {
    font-size: 1em;
  }
  .page-promotions-vip-rewards__cta-image {
    display: none;
  }
  .page-promotions-vip-rewards__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-vip-rewards__section-title {
    font-size: 2em;
  }
  .page-promotions-vip-rewards__subtitle {
    font-size: 1.8em;
  }
  .page-promotions-vip-rewards__benefits-grid, .page-promotions-vip-rewards__tier-cards, .page-promotions-vip-rewards__steps-list {
    grid-template-columns: 1fr;
  }
}

.highlight-keyword {
  color: #FFD700;
  font-weight: bold;
}