:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --card-bg: #17191F;
  --bg-color: #0D0E12;
  --text-main: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-vip-program {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Text Main for dark background */
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.page-vip-program__section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

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

.page-vip-program__section-title {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.page-vip-program__section-description {
  color: var(--text-main);
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program p {
  color: var(--text-main);
  margin-bottom: 1em;
}

/* HERO Section */
.page-vip-program__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: linear-gradient(180deg, var(--card-bg) 0%, var(--bg-color) 100%);
}

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

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

.page-vip-program__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(255, 140, 26, 0.5);
}

.page-vip-program__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-vip-program__hero-content h1 {
  color: var(--glow-color);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 165, 58, 0.6);
}

.page-vip-program__hero-content p {
  color: var(--text-main);
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: 2px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-vip-program__cta-button:hover {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 165, 58, 0.6);
  border-color: var(--primary-color);
}

/* Quick Access Section */
.page-vip-program__quick-access-section {
  background-color: var(--card-bg);
  padding: 80px 20px;
}

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

.page-vip-program__link-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  color: var(--text-main);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-vip-program__link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
  border-color: var(--primary-color);
}

.page-vip-program__link-icon {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-program__link-title {
  color: var(--glow-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__link-desc {
  font-size: 0.95em;
  color: var(--text-main);
}

/* Core Games Section */
.page-vip-program__core-games-section {
  background-color: var(--bg-color);
  padding: 80px 20px;
}

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

.page-vip-program__game-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-vip-program__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
}

.page-vip-program__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-vip-program__game-title {
  color: var(--glow-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__game-description {
  color: var(--text-main);
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-vip-program__read-more-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--primary-color);
}

.page-vip-program__read-more-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Promotions Section */
.page-vip-program__promotions-section {
  background-color: var(--card-bg);
  padding: 80px 20px;
}

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

.page-vip-program__promo-card {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-vip-program__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
}

.page-vip-program__promo-card img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-vip-program__promo-title {
  color: var(--glow-color);
  font-size: 1.3em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__promo-text {
  color: var(--text-main);
  font-size: 0.95em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-vip-program__promo-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 1px solid var(--primary-color);
}

.page-vip-program__promo-btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
}

/* Security & Support Section */
.page-vip-program__security-support-section {
  background-color: var(--bg-color);
  padding: 80px 20px;
}

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

.page-vip-program__feature-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-vip-program__feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
}

.page-vip-program__feature-icon {
  font-size: 3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-vip-program__feature-item img {
  width: 100%;
  
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-vip-program__feature-title {
  color: var(--glow-color);
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-vip-program__feature-text {
  color: var(--text-main);
  font-size: 0.95em;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-vip-program__faq-section {
  background-color: var(--card-bg);
  padding: 80px 20px;
}

details.page-vip-program__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--bg-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-vip-program__faq-item summary.page-vip-program__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: var(--glow-color);
  font-weight: bold;
  font-size: 1.1em;
}

details.page-vip-program__faq-item summary.page-vip-program__faq-question::-webkit-details-marker {
  display: none;
}

details.page-vip-program__faq-item summary.page-vip-program__faq-question:hover {
  background: var(--card-bg);
}

.page-vip-program__faq-qtext {
  flex: 1;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--glow-color);
}

.page-vip-program__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-vip-program__faq-item .page-vip-program__faq-answer {
  padding: 0 25px 20px;
  background: var(--card-bg);
  border-radius: 0 0 10px 10px;
  color: var(--text-main);
  text-align: left;
}

.page-vip-program__faq-answer p {
  margin-bottom: 0;
}

.page-vip-program__faq-link-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 20px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-vip-program__faq-link-btn:hover {
  background-color: var(--secondary-color);
}

/* Latest Blog Section */
.page-vip-program__latest-blog-section {
  background-color: var(--bg-color);
  padding: 80px 20px;
}

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

.page-vip-program__blog-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.page-vip-program__blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(255, 165, 58, 0.4);
}

.page-vip-program__blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-vip-program__blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 220px); /* Adjust height for content area */
}

.page-vip-program__blog-title {
  color: var(--glow-color);
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: bold;
  flex-grow: 0;
}

.page-vip-program__blog-title a {
  color: var(--glow-color);
  text-decoration: none;
}

.page-vip-program__blog-title a:hover {
  text-decoration: underline;
}

.page-vip-program__blog-date {
  font-size: 0.85em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  flex-grow: 0;
}

.page-vip-program__blog-excerpt {
  color: var(--text-main);
  font-size: 0.9em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-vip-program__view-all {
  margin-top: 50px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program__section-title {
    font-size: 2em;
  }
  .page-vip-program__hero-content h1 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-vip-program__section {
    padding: 40px 15px;
  }
  .page-vip-program__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-vip-program__hero-content h1 {
    font-size: 1.8em;
  }
  .page-vip-program__hero-content p {
    font-size: 1em;
  }
  .page-vip-program__cta-button {
    padding: 12px 30px;
    font-size: 1em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-vip-program__links-grid, .page-vip-program__game-categories, .page-vip-program__promo-grid, .page-vip-program__features-grid, .page-vip-program__blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-vip-program__section-title {
    font-size: 1.8em;
  }
  .page-vip-program__section-description {
    font-size: 0.95em;
  }
  .page-vip-program__link-card, .page-vip-program__game-card, .page-vip-program__promo-card, .page-vip-program__feature-item, .page-vip-program__blog-card {
    padding: 20px;
  }
  .page-vip-program img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-vip-program__section,
  .page-vip-program__container,
  .page-vip-program__links-grid,
  .page-vip-program__game-categories,
  .page-vip-program__promo-grid,
  .page-vip-program__features-grid,
  .page-vip-program__blog-grid,
  .page-vip-program__blog-card,
  .page-vip-program__link-card,
  .page-vip-program__game-card,
  .page-vip-program__promo-card,
  .page-vip-program__feature-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-vip-program__blog-card img {
    
  }
  details.page-vip-program__faq-item summary.page-vip-program__faq-question { padding: 15px; }
  .page-vip-program__faq-qtext { font-size: 1em; }
  details.page-vip-program__faq-item .page-vip-program__faq-answer { padding: 0 15px 15px; }
}

@media (max-width: 480px) {
  .page-vip-program__section-title {
    font-size: 1.5em;
  }
  .page-vip-program__hero-content h1 {
    font-size: 1.5em;
  }
  .page-vip-program__hero-content p {
    font-size: 0.9em;
  }
  .page-vip-program__cta-button {
    font-size: 0.9em;
  }
}