.page-promotions-vip-rewards {
  color: #ffffff; /* Body background is dark, so use light text */
  background-color: #1a1a2e;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-promotions-vip-rewards__section-title {
  font-size: 38px;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-vip-rewards__section-description {
  font-size: 18px;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.page-promotions-vip-rewards__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700;
  color: #1a1a2e;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-rewards__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-vip-rewards__cta-button--secondary {
  background: #8B0000;
  color: #ffffff;
}

.page-promotions-vip-rewards__cta-button--secondary:hover {
  background: #6a0000;
}

.page-promotions-vip-rewards__cta-button--outline {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  box-shadow: none;
}

.page-promotions-vip-rewards__cta-button--outline:hover {
  background: rgba(255, 215, 0, 0.1);
  color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-rewards__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-promotions-vip-rewards__hero-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #3a0000 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-promotions-vip-rewards__hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-rewards__main-title {
  font-size: 56px;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-rewards__hero-description {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Benefits Section */
.page-promotions-vip-rewards__benefits-section {
  background-color: #1a1a2e;
  padding: 80px 0;
}

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

.page-promotions-vip-rewards__benefit-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions-vip-rewards__benefit-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-vip-rewards__benefit-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-promotions-vip-rewards__card-description {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.7;
}

/* Tiers Section */
.page-promotions-vip-rewards__tiers-section {
  background-color: #0d0d1e;
  padding: 80px 0;
}

.page-promotions-vip-rewards__tiers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.page-promotions-vip-rewards__tier-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.page-promotions-vip-rewards__tier-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFD700;
}

.page-promotions-vip-rewards__tier-card--gold {
  border-color: #FFD700;
}

.page-promotions-vip-rewards__tier-card--platinum {
  border-color: #c0c0c0; /* Silver */
}

.page-promotions-vip-rewards__tier-card--diamond {
  border-color: #00FFFF; /* Aqua */
}

.page-promotions-vip-rewards__tier-name {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions-vip-rewards__tier-desc {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promotions-vip-rewards__tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions-vip-rewards__tier-features li {
  color: #f0f0f0;
  margin-bottom: 8px;
  font-size: 16px;
}

/* How to Join Section */
.page-promotions-vip-rewards__how-to-join-section {
  background-color: #1a1a2e;
  padding: 80px 0;
}

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

.page-promotions-vip-rewards__step-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(139, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-rewards__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #8B0000;
  color: #ffffff;
  font-size: 36px;
  font-weight: bold;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-rewards__step-card .page-promotions-vip-rewards__card-title {
  margin-top: 40px; /* Adjust for step number */
}

.page-promotions-vip-rewards__step-card a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions-vip-rewards__step-card a:hover {
  color: #e6c200;
}

/* FAQ Section */
.page-promotions-vip-rewards__faq-section {
  background-color: #0d0d1e;
  padding: 80px 0;
}

.page-promotions-vip-rewards__faq-list {
  margin-top: 40px;
}

.page-promotions-vip-rewards__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions-vip-rewards__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions-vip-rewards__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-promotions-vip-rewards__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-promotions-vip-rewards__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions-vip-rewards__faq-item.active .page-promotions-vip-rewards__faq-toggle {
  transform: rotate(180deg);
  color: #ffffff;
}

.page-promotions-vip-rewards__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
  font-size: 16px;
}

.page-promotions-vip-rewards__faq-item.active .page-promotions-vip-rewards__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

/* Responsible Gaming Section */
.page-promotions-vip-rewards__responsible-gaming-section {
  background-color: #1a1a2e;
  padding: 80px 0;
  text-align: center;
}

.page-promotions-vip-rewards__responsible-gaming-section .page-promotions-vip-rewards__section-description {
  margin-bottom: 30px;
}

.page-promotions-vip-rewards__responsive-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  margin: 30px auto;
  display: block;
}

/* Join Now Section */
.page-promotions-vip-rewards__join-now-section {
  background-color: #8B0000;
  padding: 80px 0;
  text-align: center;
  background-image: url('[GALLERY:bg:1920x1080:vip_join_background,13win,luxury]');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-promotions-vip-rewards__join-now-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(139, 0, 0, 0.7);
  z-index: 0;
}

.page-promotions-vip-rewards__join-now-section .page-promotions-vip-rewards__container {
  position: relative;
  z-index: 1;
}

.page-promotions-vip-rewards__join-now-section .page-promotions-vip-rewards__section-title {
  color: #FFD700;
}

.page-promotions-vip-rewards__join-now-section .page-promotions-vip-rewards__section-description {
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-vip-rewards__main-title {
    font-size: 48px;
  }

  .page-promotions-vip-rewards__section-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .page-promotions-vip-rewards__container,
  .page-promotions-vip-rewards__hero-section,
  .page-promotions-vip-rewards__benefits-section,
  .page-promotions-vip-rewards__tiers-section,
  .page-promotions-vip-rewards__how-to-join-section,
  .page-promotions-vip-rewards__faq-section,
  .page-promotions-vip-rewards__responsible-gaming-section,
  .page-promotions-vip-rewards__join-now-section {
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .page-promotions-vip-rewards__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 60px;
  }

  .page-promotions-vip-rewards__main-title {
    font-size: 36px;
  }

  .page-promotions-vip-rewards__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-vip-rewards__cta-button {
    font-size: 18px;
    padding: 12px 30px;
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-promotions-vip-rewards__section-title {
    font-size: 28px;
  }

  .page-promotions-vip-rewards__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .page-promotions-vip-rewards__benefits-grid,
  .page-promotions-vip-rewards__tiers-grid,
  .page-promotions-vip-rewards__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-rewards__benefit-card,
  .page-promotions-vip-rewards__tier-card,
  .page-promotions-vip-rewards__step-card {
    padding: 20px;
  }

  .page-promotions-vip-rewards__card-title {
    font-size: 20px;
  }

  .page-promotions-vip-rewards__card-description {
    font-size: 15px;
  }

  .page-promotions-vip-rewards__tier-name {
    font-size: 24px;
  }

  .page-promotions-vip-rewards__faq-question {
    padding: 15px 20px;
  }

  .page-promotions-vip-rewards__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions-vip-rewards__faq-answer {
    padding: 0 20px;
  }

  .page-promotions-vip-rewards__faq-item.active .page-promotions-vip-rewards__faq-answer {
    padding: 15px 20px !important;
  }

  .page-promotions-vip-rewards img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions-vip-rewards__responsive-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
}