/* style/vip-program.css */

:root {
  --primary-color: #003366; /* BK8 Blue */
  --secondary-color: #FFD700; /* Royal Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #121212;
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-vip-program {
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Inherited from shared.css, but set explicitly for clarity */
  padding-top: 120px; /* Adjust for fixed header on desktop */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-vip-program__hero-section {
  background-image: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('[GALLERY:bg:bk8 vip program hero,luxury casino,dark blue]');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 80px 0;
  color: var(--text-light);
}

.page-vip-program__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-vip-program__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-vip-program__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-vip-program__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
}

.page-vip-program__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.page-vip-program__btn-primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-vip-program__btn-secondary {
  background: var(--primary-color);
  color: var(--text-light);
  border: 2px solid var(--secondary-color);
}

.page-vip-program__btn-secondary:hover {
  background: #002244;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-vip-program__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-vip-program__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.page-vip-program__tiers-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

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

.page-vip-program__tier-card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-vip-program__tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-vip-program__tier-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-program__tier-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-vip-program__tier-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-vip-program__tier-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-vip-program__tier-benefits li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  text-align: left;
  color: #f0f0f0;
}

.page-vip-program__tier-benefits li::before {
  content: '✓';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-vip-program__privileges-section .page-vip-program__section-title {
  color: var(--secondary-color);
}

.page-vip-program__privileges-section .page-vip-program__section-description {
  color: var(--text-light);
}

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

.page-vip-program__privilege-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__privilege-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-program__privilege-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-vip-program__privilege-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-vip-program__join-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
}

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

.page-vip-program__step-card {
  background: var(--card-bg-dark);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-vip-program__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-vip-program__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-vip-program__step-text {
  font-size: 16px;
  color: #cccccc;
}

.page-vip-program__step-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

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

.page-vip-program__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-vip-program__cta-bottom p {
  font-size: 20px;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-vip-program__why-choose-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-vip-program__why-choose-section .page-vip-program__section-title {
  color: var(--secondary-color);
}

.page-vip-program__why-choose-section .page-vip-program__section-description {
  color: var(--text-light);
}

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

.page-vip-program__why-choose-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-vip-program__why-choose-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-vip-program__why-choose-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-vip-program__why-choose-text {
  font-size: 16px;
  color: #f0f0f0;
}

.page-vip-program__final-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--bg-dark);
}

.page-vip-program__final-cta-section .page-vip-program__section-title {
  color: var(--secondary-color);
}

.page-vip-program__final-cta-section .page-vip-program__section-description {
  color: var(--text-light);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-vip-program__main-title {
    font-size: 42px;
  }
  .page-vip-program__section-title {
    font-size: 32px;
  }
  .page-vip-program__hero-description,
  .page-vip-program__section-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-vip-program {
    padding-top: 100px !important; /* Adjust for fixed header on mobile */
    font-size: 16px;
    line-height: 1.6;
  }

  .page-vip-program__container {
    padding: 0 15px;
  }

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

  .page-vip-program__main-title {
    font-size: 32px;
  }

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

  .page-vip-program__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-vip-program__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

  .page-vip-program__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-vip-program__tiers-section,
  .page-vip-program__privileges-section,
  .page-vip-program__join-section,
  .page-vip-program__why-choose-section,
  .page-vip-program__final-cta-section {
    padding: 60px 0;
  }

  .page-vip-program__tier-card,
  .page-vip-program__privilege-item,
  .page-vip-program__step-card,
  .page-vip-program__why-choose-item {
    padding: 25px;
  }

  .page-vip-program__tier-icon,
  .page-vip-program__privilege-icon,
  .page-vip-program__why-choose-icon {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 15px;
  }

  .page-vip-program__tier-title,
  .page-vip-program__privilege-title,
  .page-vip-program__step-title,
  .page-vip-program__why-choose-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .page-vip-program__tier-description,
  .page-vip-program__tier-benefits li,
  .page-vip-program__privilege-text,
  .page-vip-program__step-text,
  .page-vip-program__why-choose-text {
    font-size: 15px;
  }

  .page-vip-program__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-vip-program__cta-bottom p {
    font-size: 18px;
  }
  
  /* Image responsiveness */
  .page-vip-program img {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-vip-program__section,
  .page-vip-program__card,
  .page-vip-program__container,
  .page-vip-program__tier-card,
  .page-vip-program__privilege-item,
  .page-vip-program__step-card,
  .page-vip-program__why-choose-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}