/* style/resources-f168-vip-vip-privileges-explained.css */

:root {
  --primary-color: #1A202C;
  --secondary-color: #FFD700;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #0A0A0A;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --border-color-light: #e0e0e0;
}

.page-resources-f168-vip-vip-privileges-explained {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so use light text */
  background-color: var(--background-dark);
}

.page-resources-f168-vip-vip-privileges-explained__section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.page-resources-f168-vip-vip-privileges-explained__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-f168-vip-vip-privileges-explained__section-title {
  font-size: 36px;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 10px;
}

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

.page-resources-f168-vip-vip-privileges-explained__paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-light);
}

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

.page-resources-f168-vip-vip-privileges-explained__paragraph a:hover {
  text-decoration: underline;
}

/* HERO Section */
.page-resources-f168-vip-vip-privileges-explained__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background: var(--background-dark);
  color: var(--text-light);
}

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

.page-resources-f168-vip-vip-privileges-explained__hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-resources-f168-vip-vip-privileges-explained__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);
}

.page-resources-f168-vip-vip-privileges-explained__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 20px;
  background: rgba(26, 32, 44, 0.8);
  border-radius: 12px;
  margin-top: -80px; /* Overlap with image slightly */
  padding-top: 100px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-f168-vip-vip-privileges-explained__main-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-f168-vip-vip-privileges-explained__intro-text {
  font-size: 22px;
  margin-bottom: 30px;
  color: var(--text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-f168-vip-vip-privileges-explained__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources-f168-vip-vip-privileges-explained__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* VIP Tiers Section */
.page-resources-f168-vip-vip-privileges-explained__vip-tiers .page-resources-f168-vip-vip-privileges-explained__section-title::after {
  background-color: var(--secondary-color);
}

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

.page-resources-f168-vip-vip-privileges-explained__card {
  background: var(--card-bg-dark);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-f168-vip-vip-privileges-explained__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5), 0 0 15px var(--secondary-color);
}

.page-resources-f168-vip-vip-privileges-explained__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-resources-f168-vip-vip-privileges-explained__card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
}

/* Exclusive Benefits Section */
.page-resources-f168-vip-vip-privileges-explained__exclusive-benefits {
  background: linear-gradient(135deg, var(--primary-color), #0A0A0A);
}

.page-resources-f168-vip-vip-privileges-explained__exclusive-benefits .page-resources-f168-vip-vip-privileges-explained__section-title {
  color: var(--secondary-color);
}

.page-resources-f168-vip-vip-privileges-explained__exclusive-benefits .page-resources-f168-vip-vip-privileges-explained__section-title::after {
  background-color: var(--secondary-color);
}

.page-resources-f168-vip-vip-privileges-explained__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-resources-f168-vip-vip-privileges-explained__benefit-item {
  background: var(--card-bg-dark);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: var(--text-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
}