/* style/resources-u888-vip-game-guide.css */

.page-resources-u888-vip-game-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #1A1A1A; /* Very dark background */
}

.page-resources-u888-vip-game-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-u888-vip-game-guide__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-resources-u888-vip-game-guide__hero-section {
  background: linear-gradient(135deg, #FFD700 0%, #8B0000 100%);
  padding: 100px 0;
  text-align: center;
  color: #1A1A1A;
}

.page-resources-u888-vip-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #1A1A1A; /* Dark text for contrast on bright background */
}

.page-resources-u888-vip-game-guide__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #333333; /* Slightly darker text */
}

.page-resources-u888-vip-game-guide__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-resources-u888-vip-game-guide__sub-section-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-u888-vip-game-guide__content-area h4 {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-resources-u888-vip-game-guide__content-area p {
  margin-bottom: 1em;
  font-size: 1.1em;
}

.page-resources-u888-vip-game-guide__content-area ul {
  list-style: disc inside;
  margin-bottom: 1em;
  padding-left: 20px;
}

.page-resources-u888-vip-game-guide__content-area ul li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-resources-u888-vip-game-guide__btn {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #1A1A1A; /* Dark text on gold */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-u888-vip-game-guide__btn:hover {
  background-color: #b39700; /* Darker gold on hover */
  color: #FFFFFF;
}

.page-resources-u888-vip-game-guide__btn--primary {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-resources-u888-vip-game-guide__btn--primary:hover {
  background-color: #b39700;
  color: #FFFFFF;
}

.page-resources-u888-vip-game-guide__btn--secondary {
  background-color: #8B0000; /* Dark red button */
  color: #FFFFFF; /* White text on dark red */
}

.page-resources-u888-vip-game-guide__btn--secondary:hover {
  background-color: #5a0000; /* Darker red on hover */
}

.page-resources-u888-vip-game-guide__btn--small {
  padding: 8px 15px;
  font-size: 0.95em;
}

.page-resources-u888-vip-game-guide__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

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

.page-resources-u888-vip-game-guide__game-card {
  background-color: #282828; /* Slightly lighter dark background for cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-u888-vip-game-guide__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-resources-u888-vip-game-guide__game-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-resources-u888-vip-game-guide__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-resources-u888-vip-game-guide__card-title a {
  color: #FFD700; /* Ensure link text in card titles is gold */
  text-decoration: none;
}

.page-resources-u888-vip-game-guide__card-title a:hover {
  text-decoration: underline;
}

.page-resources-u888-vip-game-guide__img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.page-resources-u888-vip-game-guide__img--centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-u888-vip-game-guide__cta-section {
  background-color: #8B0000; /* Dark red background for CTA */
  padding: 80px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-resources-u888-vip-game-guide__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold title on dark red */
}

.page-resources-u888-vip-game-guide__cta-text {
  font-size: 1.3em;
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-u888-vip-game-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-u888-vip-game-guide__hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-u888-vip-game-guide__section-title {
    font-size: 2em;
  }

  .page-resources-u888-vip-game-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-resources-u888-vip-game-guide__cta-title {
    font-size: 2em;
  }

  .page-resources-u888-vip-game-guide__cta-text {
    font-size: 1.1em;
  }

  .page-resources-u888-vip-game-guide__game-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-resources-u888-vip-game-guide__hero-section {
    padding: 60px 0;
  }

  .page-resources-u888-vip-game-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-u888-vip-game-guide__hero-subtitle {
    font-size: 1em;
  }

  .page-resources-u888-vip-game-guide__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-u888-vip-game-guide__cta-section {
    padding: 60px 0;
  }
}