.page-promotions-vip-program {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-vip-program__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,patterns]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions-vip-program__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__hero-cta {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  border: 2px solid #FFCC00;
}

.page-promotions-vip-program__hero-cta:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-program__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-vip-program__section:nth-child(even) {
  background-color: #f0f4f7;
}

.page-promotions-vip-program__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-promotions-vip-program__grid-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border-top: 5px solid #003366;
}

.page-promotions-vip-program__grid-item:hover {
  transform: translateY(-5px);
}

.page-promotions-vip-program__icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.page-promotions-vip-program__item-description {
  color: #666;
  font-size: 1em;
}

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

.page-promotions-vip-program__benefit-list li {
  background-color: #fefefe;
  padding: 25px;
  border-left: 5px solid #FFCC00;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.page-promotions-vip-program__benefit-list li:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__benefit-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions-vip-program__benefit-description {
  color: #555;
  font-size: 1em;
}

.page-promotions-vip-program__illustration-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-vip-program__tier-card {
  background-color: #003366;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.page-promotions-vip-program__tier-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.2) 0%, rgba(0, 51, 102, 0) 70%);
  transform: rotate(45deg);
  transition: transform 0.5s ease;
}

.page-promotions-vip-program__tier-card:hover::before {
  transform: rotate(135deg);
}

.page-promotions-vip-program__tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.page-promotions-vip-program__tier-name {
  font-size: 2.2em;
  color: #FFCC00;
  margin-bottom: 15px;
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__tier-requirement {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #e0e0e0;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.page-promotions-vip-program__tier-benefits li {
  margin-bottom: 10px;
  font-size: 1em;
  color: #fff;
  position: relative;
  padding-left: 25px;
}

.page-promotions-vip-program__tier-benefits li::before {
  content: '✔';
  color: #FFCC00;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-vip-program__tier-note {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #666;
}

.page-promotions-vip-program__diagram-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.page-promotions-vip-program__accordion-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-vip-program__accordion-header {
  background-color: #003366;
  color: #fff;
  padding: 20px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-vip-program__accordion-header:hover {
  background-color: #004080;
}

.page-promotions-vip-program__accordion-header::after {
  content: '▼';
  font-size: 0.8em;
  transition: transform 0.3s ease;
}

.page-promotions-vip-program__accordion-header.active::after {
  transform: rotate(180deg);
}

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

.page-promotions-vip-program__accordion-content p {
  margin: 20px 0;
  color: #555;
}

.page-promotions-vip-program__faq-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 60px auto 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-promotions-vip-program__cta-bottom {
  text-align: center;
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  border-radius: 8px;
}

.page-promotions-vip-program__cta-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 30px;
  border: 2px solid #FFCC00;
}

.page-promotions-vip-program__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-program__responsible-gaming {
  margin-top: 40px;
  font-size: 0.9em;
  color: #ccc;
}

.page-promotions-vip-program__more-info {
  background-color: #f0f4f7;
  text-align: center;
}

.page-promotions-vip-program__link-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions-vip-program__link-button {
  display: inline-block;
  background-color: #fff;
  color: #003366;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #003366;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions-vip-program__link-button:hover {
  background-color: #003366;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2.5em;
  }

  .page-promotions-vip-program__hero-subtitle {
    font-size: 1.2em;
  }

  .page-promotions-vip-program__hero-cta {
    padding: 12px 25px;
    font-size: 1.1em;
  }

  .page-promotions-vip-program__section-title {
    font-size: 2em;
  }

  .page-promotions-vip-program__section-description {
    font-size: 1em;
  }

  .page-promotions-vip-program__grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__tier-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-vip-program__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }

  .page-promotions-vip-program__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promotions-vip-program__accordion-content p {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-promotions-vip-program__hero-title {
    font-size: 2em;
  }

  .page-promotions-vip-program__hero-subtitle {
    font-size: 1em;
  }

  .page-promotions-vip-program__hero-section {
    padding: 60px 0;
  }

  .page-promotions-vip-program__section {
    padding: 40px 0;
  }

  .page-promotions-vip-program__section-title {
    font-size: 1.8em;
  }

  .page-promotions-vip-program__link-group {
    flex-direction: column;
  }
}