/* style/resources-lode88-vip-advantages.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #000000;
  --bg-light: #f8f9fa;
  --card-bg-dark: rgba(255, 255, 255, 0.1);
  --card-bg-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-resources-lode88-vip-advantages {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is dark, so text is light */
  background-color: var(--bg-dark); /* Inherited from shared.css, set explicitly for clarity */
}

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

/* Fixed Navigation Bar Spacing */
.page-resources-lode88-vip-advantages__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on actual header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #3a0000 100%);
  text-align: center;
}

.page-resources-lode88-vip-advantages__main-title {
  font-size: 3.5em;
  color: var(--primary-color);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-resources-lode88-vip-advantages__hero-description {
  font-size: 1.2em;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-lode88-vip-advantages__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-lode88-vip-advantages__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box; /* Ensure responsive */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-lode88-vip-advantages__btn-primary {
  background-color: var(--primary-color);
  color: var(--text-dark); /* Gold background, so dark text */
  border: 2px solid var(--primary-color);
}

.page-resources-lode88-vip-advantages__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-resources-lode88-vip-advantages__btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-resources-lode88-vip-advantages__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.page-resources-lode88-vip-advantages__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-resources-lode88-vip-advantages__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-light);
}

.page-resources-lode88-vip-advantages__introduction-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-resources-lode88-vip-advantages__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-resources-lode88-vip-advantages__advantages-section {
  padding: 80px 0;
  background-color: var(--secondary-color); /* Dark red background */
  color: var(--text-light);
}

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

.page-resources-lode88-vip-advantages__advantage-card {
  background-color: var(--card-bg-dark); /* Semi-transparent white on dark red */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%; /* Ensure equal height cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-resources-lode88-vip-advantages__advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-resources-lode88-vip-advantages__card-icon {
  width: 120px;
  height: auto;
  margin: 0 auto 20px auto;
  max-width: 100%;
  display: block;
}

.page-resources-lode88-vip-advantages__card-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-lode88-vip-advantages__card-text {
  font-size: 1em;
  color: var(--text-light);
  flex-grow: 1;
}

.page-resources-lode88-vip-advantages__how-to-join-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
}

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

.page-resources-lode88-vip-advantages__step-card {
  background-color: var(--card-bg-dark);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.page-resources-lode88-vip-advantages__step-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-resources-lode88-vip-advantages__step-text {
  font-size: 1em;
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-resources-lode88-vip-advantages__btn-register,
.page-resources-lode88-vip-advantages__btn-deposit,
.page-resources-lode88-vip-advantages__btn-learn-more {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  max-width: 100%; /* Ensure responsive */
  box-sizing: border-box; /* Ensure responsive */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-resources-lode88-vip-advantages__btn-register {
  background-color: var(--primary-color);
  color: var(--text-dark);
  border: 1px solid var(--primary-color);
}

.page-resources-lode88-vip-advantages__btn-register:hover {
  background-color: darken(var(--primary-color), 10%);
}

.page-resources-lode88-vip-advantages__btn-deposit {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border: 1px solid var(--secondary-color);
}

.page-resources-lode88-vip-advantages__btn-deposit:hover {
  background-color: lighten(var(--secondary-color), 10%);
}

.page-resources-lode88-vip-advantages__btn-learn-more {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.page-resources-lode88-vip-advantages__btn-learn-more:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
}

.page-resources-lode88-vip-advantages__note-text {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  font-size: 1.1em;
  color: var(--primary-color);
}

.page-resources-lode88-vip-advantages__why-choose-section {
  padding: 80px 0;
  background-color: var(--bg-light); /* Light background for contrast */
  color: var(--text-dark); /* Dark text on light background */
}

.page-resources-lode88-vip-advantages__why-choose-section .page-resources-lode88-vip-advantages__section-title {
  color: var(--secondary-color); /* Dark red title on light background */
  text-shadow: none;
}

.page-resources-lode88-vip-advantages__why-choose-section .page-resources-lode88-vip-advantages__text-block {
  color: var(--text-dark);
}

.page-resources-lode88-vip-advantages__bullet-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: left;
}

.page-resources-lode88-vip-advantages__bullet-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FFD700"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-resources-lode88-vip-advantages__bullet-list li strong {
  color: var(--secondary-color);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-lode88-vip-advantages__main-title {
    font-size: 3em;
  }
  .page-resources-lode88-vip-advantages__section-title {
    font-size: 2em;
  }
  .page-resources-lode88-vip-advantages__card-title {
    font-size: 1.3em;
  }
  .page-resources-lode88-vip-advantages__step-title {
    font-size: 1.4em;
  }
  .page-resources-lode88-vip-advantages__hero-section {
    padding-top: 100px; /* Adjust for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-resources-lode88-vip-advantages__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust based on actual header height */
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-lode88-vip-advantages__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-resources-lode88-vip-advantages__main-title {
    font-size: 2.5em;
  }
  .page-resources-lode88-vip-advantages__hero-description {
    font-size: 1em;
  }
  .page-resources-lode88-vip-advantages__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-resources-lode88-vip-advantages__cta-button,
  .page-resources-lode88-vip-advantages__btn-register,
  .page-resources-lode88-vip-advantages__btn-deposit,
  .page-resources-lode88-vip-advantages__btn-learn-more {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }
  .page-resources-lode88-vip-advantages__section-title {
    font-size: 1.8em;
  }
  .page-resources-lode88-vip-advantages__text-block,
  .page-resources-lode88-vip-advantages__card-text,
  .page-resources-lode88-vip-advantages__step-text,
  .page-resources-lode88-vip-advantages__bullet-list li {
    font-size: 0.95em;
  }
  .page-resources-lode88-vip-advantages__advantage-grid,
  .page-resources-lode88-vip-advantages__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-resources-lode88-vip-advantages__introduction-section,
  .page-resources-lode88-vip-advantages__advantages-section,
  .page-resources-lode88-vip-advantages__how-to-join-section,
  .page-resources-lode88-vip-advantages__why-choose-section,
  .page-resources-lode88-vip-advantages__conclusion-section {
    padding: 40px 0;
  }
  .page-resources-lode88-vip-advantages__image,
  .page-resources-lode88-vip-advantages__card-icon {
    max-width: 100% !important;
    height: auto !important;
    width: auto !important; /* Allow natural width if smaller than 100% */
  }
}

@media (max-width: 480px) {
  .page-resources-lode88-vip-advantages__main-title {
    font-size: 2em;
  }
  .page-resources-lode88-vip-advantages__section-title {
    font-size: 1.5em;
  }
  .page-resources-lode88-vip-advantages__hero-section {
    padding-top: 80px !important; /* Further adjust for very small screens */
  }
}