.page-index-vip-lottery-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light background */
  background-color: #f5f5f5; /* A subtle light background for the page content */
}

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

.page-index-vip-lottery-guide__section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-index-vip-lottery-guide__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-vip-lottery-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-index-vip-lottery-guide__section-description {
  text-align: center;
  font-size: 18px;
  margin-bottom: 40px;
  color: #555555;
}

/* Color Contrast Styles */
.page-index-vip-lottery-guide__dark-bg {
  background-color: #26A9E0;
  color: #ffffff; /* Deep blue background with white text */
}

.page-index-vip-lottery-guide__dark-bg .page-index-vip-lottery-guide__section-title {
  color: #ffffff;
}

.page-index-vip-lottery-guide__dark-bg .page-index-vip-lottery-guide__section-title::after {
  background-color: #ffffff;
}

.page-index-vip-lottery-guide__dark-bg .page-index-vip-lottery-guide__section-description {
  color: #f0f0f0;
}

.page-index-vip-lottery-guide__light-bg {
  background-color: #ffffff;
  color: #333333; /* White background with dark text */
}

.page-index-vip-lottery-guide__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: #26A9E0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-vip-lottery-guide__btn-primary:hover {
  background: #1e87c2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-index-vip-lottery-guide__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #26A9E0;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #26A9E0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.page-index-vip-lottery-guide__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-index-vip-lottery-guide a {
  color: #26A9E0;
  text-decoration: none;
}

.page-index-vip-lottery-guide a:hover {
  text-decoration: underline;
}

/* HERO Section */
.page-index-vip-lottery-guide__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 content is below fixed header */
  overflow: hidden;
}

.page-index-vip-lottery-guide__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-index-vip-lottery-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-vip-lottery-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-index-vip-lottery-guide__hero-content h1 {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-index-vip-lottery-guide__hero-content p {
  font-size: 20px;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-vip-lottery-guide__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-vip-lottery-guide__cta-button:hover {
  background: #d86c06;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-index-vip-lottery-guide__introduction-section .page-index-vip-lottery-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-vip-lottery-guide__introduction-section .page-index-vip-lottery-guide__text-block p {
  margin-bottom: 20px;
  font-size: 17px;
}

.page-index-vip-lottery-guide__introduction-section .page-index-vip-lottery-guide__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* Steps Section */
.page-index-vip-lottery-guide__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-index-vip-lottery-guide__step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-vip-lottery-guide__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-index-vip-lottery-guide__step-item img {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin: 0 auto 20px auto;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.page-index-vip-lottery-guide__step-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-index-vip-lottery-guide__step-item p {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

/* Strategies Section */
.page-index-vip-lottery-guide__strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-index-vip-lottery-guide__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-vip-lottery-guide__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-index-vip-lottery-guide__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-index-vip-lottery-guide__card h3 {
  font-size: 20px;
  color: #26A9E0;
  margin: 20px 20px 10px 20px;
}

.page-index-vip-lottery-guide__card p {
  font-size: 16px;
  color: #555555;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-index-vip-lottery-guide__card-link {
  display: block;
  padding: 15px 20px;
  background-color: #f8f8f8;
  color: #26A9E0;
  text-align: center;
  font-weight: bold;
  border-top: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.page-index-vip-lottery-guide__card-link:hover {
  background-color: #e0e0e0;
  text-decoration: none;
}

/* Bet Types Section */
.page-index-vip-lottery-guide__bet-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-vip-lottery-guide__bet-type-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-index-vip-lottery-guide__bet-type-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-index-vip-lottery-guide__bet-type-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-index-vip-lottery-guide__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Management Section */
.page-index-vip-lottery-guide__management-section .page-index-vip-lottery-guide__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-index-vip-lottery-guide__management-section .page-index-vip-lottery-guide__text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-index-vip-lottery-guide__management-section .page-index-vip-lottery-guide__text-block li {
  margin-bottom: 10px;
  font-size: 17px;
}

.page-index-vip-lottery-guide__management-section .page-index-vip-lottery-guide__image-block img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}