:root {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000000;
  --card-background-light: #ffffff;
  --card-background-dark-transparent: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-promotions-vip-benefits {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--background-dark);
  overflow-x: hidden;
}

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

.page-promotions-vip-benefits__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  text-transform: uppercase;
}

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

.page-promotions-vip-benefits__text-block {
  font-size: 18px;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding-top: var(--header-offset, 120px);
}

.page-promotions-vip-benefits__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.page-promotions-vip-benefits__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-vip-benefits__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-vip-benefits__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-promotions-vip-benefits__hero-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-vip-benefits__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-vip-benefits__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--background-dark);
  text-decoration: none;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 2px solid transparent;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions-vip-benefits__cta-button:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  border-color: var(--primary-color);
}

.page-promotions-vip-benefits__introduction-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

.page-promotions-vip-benefits__dark-bg {
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-promotions-vip-benefits__introduction-section .page-promotions-vip-benefits__btn-primary {
  margin-top: 30px;
}

.page-promotions-vip-benefits__tiers-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
  text-align: center;
}

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

.page-promotions-vip-benefits__tier-card {
  background-color: var(--card-background-dark-transparent);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

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

.page-promotions-vip-benefits__tier-card img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promotions-vip-benefits__tier-title {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 16px;
  color: var(--text-light);
}

.page-promotions-vip-benefits__tier-benefits li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promotions-vip-benefits__tier-benefits li::before {
  content: '⭐';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 18px;
  line-height: 1;
}

.page-promotions-vip-benefits__note {
  margin-top: 40px;
  font-style: italic;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.page-promotions-vip-benefits__privileges-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

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

.page-promotions-vip-benefits__privilege-item {
  background-color: var(--card-background-dark-transparent);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

.page-promotions-vip-benefits__privilege-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.page-promotions-vip-benefits__privilege-item img {
  width: 100%;
  height: auto;
  
  margin: 0 auto 20px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-vip-benefits__privilege-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__privilege-item p {
  font-size: 16px;
  color: var(--text-light);
}

.page-promotions-vip-benefits__how-to-join-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
  text-align: center;
}

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

.page-promotions-vip-benefits__step-card {
  background-color: var(--card-background-dark-transparent);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
}

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

.page-promotions-vip-benefits__step-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--background-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-vip-benefits__step-title {
  font-size: 22px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-vip-benefits__step-card p {
  font-size: 16px;
  color: var(--text-light);
}

.page-promotions-vip-benefits__step-card p a {
  color: var(--primary-color);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions-vip-benefits__step-card p a:hover {
  color: var(--secondary-color);
}

.page-promotions-vip-benefits__faq-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

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

.page-promotions-vip-benefits__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-promotions-vip-benefits__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 15px;
  opacity: 0;
}