:root {
  --primary-color: #007bff;
  --secondary-color: #28a745;
  --text-color-light: #f0f0f0;
  --text-color-dark: #333333;
  --background-dark: #000000;
  --card-background-dark: rgba(255, 255, 255, 0.1);
  --border-color-dark: rgba(255, 255, 255, 0.2);
}

.page-resources-u888-live-latest-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-light); /* Default light text for dark body background */
  background-color: var(--background-dark);
}

/* Top spacing for fixed header */
.page-resources-u888-live-latest-promotions-analysis__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #001f4d, #000000);
  text-align: center;
}

.page-resources-u888-live-latest-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-u888-live-latest-promotions-analysis__main-title {
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-resources-u888-live-latest-promotions-analysis__hero-description {
  font-size: 18px;
  color: var(--text-color-light);
  max-width: 800px;
  margin: 0 auto 30px auto;
}

.page-resources-u888-live-latest-promotions-analysis__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-u888-live-latest-promotions-analysis__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
  border: none;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-u888-live-latest-promotions-analysis__cta-button:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.page-resources-u888-live-latest-promotions-analysis__cta-button--secondary {
  background-color: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.page-resources-u888-live-latest-promotions-analysis__cta-button--secondary:hover {
  background-color: #1e7e34;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

.page-resources-u888-live-latest-promotions-analysis__cta-button--large {
  padding: 18px 45px;
  font-size: 20px;
}

.page-resources-u888-live-latest-promotions-analysis__section-title {
  font-size: 36px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-u888-live-latest-promotions-analysis__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-u888-live-latest-promotions-analysis__promotions-overview-section,
.page-resources-u888-live-latest-promotions-analysis__detailed-promotions-section,
.page-resources-u888-live-latest-promotions-analysis__how-to-claim-section,
.page-resources-u888-live-latest-promotions-analysis__terms-section,
.page-resources-u888-live-latest-promotions-analysis__responsible-gaming-section,
.page-resources-u888-live-latest-promotions-analysis__why-choose-section,
.page-resources-u888-live-latest-promotions-analysis__faq-section,
.page-resources-u888-live-latest-promotions-analysis__final-cta-section {
  padding: 60px 0;
}

.page-resources-u888-live-latest-promotions-analysis__promotions-overview-section,
.page-resources-u888-live-latest-promotions-analysis__how-to-claim-section,
.page-resources-u888-live-latest-promotions-analysis__responsible-gaming-section,
.page-resources-u888-live-latest-promotions-analysis__final-cta-section {
  background-color: rgba(255, 255, 255, 0.03);
}

.page-resources-u888-live-latest-promotions-analysis__image-text-block {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background-color: var(--card-background-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.page-resources-u888-live-latest-promotions-analysis__image-text-block-image {
  flex: 1;
  max-width: 500px;
  border-radius: 8px;
  object-fit: cover;
  height: auto;
  display: block;
}

.page-resources-u888-live-latest-promotions-analysis__image-text-block-content {
  flex: 1;
}

.page-resources-u888-live-latest-promotions-analysis__sub-title {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-resources-u888-live-latest-promotions-analysis ul {
  list-style: disc;
  margin-left: 20px;
  padding: 0;
}

.page-resources-u888-live-latest-promotions-analysis li {
  margin-bottom: 10px;
  color: var(--text-color-light);
}

.page-resources-u888-live-latest-promotions-analysis strong {
  color: var(--primary-color);
}

.page-resources-u888-live-latest-promotions-analysis__detailed-promotions-section .page-resources-u888-live-latest-promotions-analysis__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card {
  background-color: var(--card-background-dark);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card p {
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-u888-live-latest-promotions-analysis__promotion-card-button:hover {
  background-color: #0056b3;
}

.page-resources-u888-live-latest-promotions-analysis__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-resources-u888-live-latest-promotions-analysis__steps-list li {
  background-color: var(--card-background-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border-top: 5px solid var(--primary-color);
}

.page-resources-u888-live-latest-promotions-analysis__step-title {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-resources-u888-live-latest-promotions-analysis__steps-list li p {
  color: var(--text-color-light);
}

.page-resources-u888-live-latest-promotions-analysis__steps-list li a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-resources-u888-live-latest-promotions-analysis__steps-list li a:hover {
  color: #1e7e34;
}

.page-resources-u888-live-latest-promotions-analysis__cta-buttons--centered {
  margin-top: 40px;
}

.page-resources-u888-live-latest-promotions-analysis__info-card {
  background-color: var(--card-background-dark);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  margin-top: 40px;
}

.page-resources-u888-live-latest-promotions-analysis__info-card p,
.page-resources-u888-live-latest-promotions-analysis__info-card li {
  color: var(--text-color-light);
}

.page-resources-u888-live-latest-promotions-analysis__info-card ul {
  margin-top: 15px;
  margin-bottom: 15px;
}