/* style/blog-xo88-promotions-registration.css */
:root {
  --xo88-primary-color: #11A84E;
  --xo88-secondary-color: #22C768;
  --xo88-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --xo88-card-bg: #11271B;
  --xo88-background: #08160F;
  --xo88-text-main: #F2FFF6;
  --xo88-text-secondary: #A7D9B8;
  --xo88-border-color: #2E7A4E;
  --xo88-glow-color: #57E38D;
  --xo88-gold-color: #F2C14E;
  --xo88-divider-color: #1E3A2A;
  --xo88-deep-green: #0A4B2C;
}

.page-blog-xo88-promotions-registration {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--xo88-text-secondary); /* Default for dark background, will be overridden by specific sections */
  background-color: var(--xo88-background);
}

.page-blog-xo88-promotions-registration__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--xo88-background);
  overflow: hidden;
}

.page-blog-xo88-promotions-registration__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  max-width: 100%; /* Ensure image responsiveness */
}

.page-blog-xo88-promotions-registration__hero-content {
  max-width: 900px;
  text-align: center;
  color: var(--xo88-text-main);
  z-index: 1;
}

.page-blog-xo88-promotions-registration__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Use clamp for H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--xo88-gold-color);
}

.page-blog-xo88-promotions-registration__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-xo88-promotions-registration__btn-primary,
.page-blog-xo88-promotions-registration__btn-secondary {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
  display: inline-block;
}

.page-blog-xo88-promotions-registration__btn-primary {
  background: var(--xo88-button-gradient);
  color: var(--xo88-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-xo88-promotions-registration__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-xo88-promotions-registration__btn-secondary {
  background: transparent;
  color: var(--xo88-gold-color);
  border: 2px solid var(--xo88-gold-color);
  box-shadow: none;
}

.page-blog-xo88-promotions-registration__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-blog-xo88-promotions-registration__content-section {
  padding: 50px 20px;
  background-color: var(--xo88-background);
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-xo88-promotions-registration__section-title {
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  color: var(--xo88-gold-color);
}

.page-blog-xo88-promotions-registration__sub-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--xo88-text-main);
}

.page-blog-xo88-promotions-registration__text-block {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__content-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure image responsiveness */
}

.page-blog-xo88-promotions-registration__feature-list,
.page-blog-xo88-promotions-registration__step-list,
.page-blog-xo88-promotions-registration__payment-methods,
.page-blog-xo88-promotions-registration__condition-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-blog-xo88-promotions-registration__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__list-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--xo88-primary-color);
  font-weight: bold;
}

.page-blog-xo88-promotions-registration__promo-grid,
.page-blog-xo88-promotions-registration__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-blog-xo88-promotions-registration__promo-card,
.page-blog-xo88-promotions-registration__game-card {
  background: var(--xo88-card-bg);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--xo88-border-color);
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__card-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--xo88-text-main);
}

.page-blog-xo88-promotions-registration__small-btn {
  padding: 8px 18px;
  font-size: 0.9em;
  margin-top: 15px;
}

.page-blog-xo88-promotions-registration__faq-section {
  padding: 50px 20px;
  background-color: var(--xo88-background);
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-xo88-promotions-registration__faq-item {
  background: var(--xo88-card-bg);
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--xo88-border-color);
  overflow: hidden;
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__faq-item summary {
  list-style: none; /* Hide default marker */
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: var(--xo88-text-main);
  position: relative;
  user-select: none;
}

.page-blog-xo88-promotions-registration__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-blog-xo88-promotions-registration__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-blog-xo88-promotions-registration__faq-qtext {
  flex-grow: 1;
  margin-right: 10px;
}

.page-blog-xo88-promotions-registration__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--xo88-primary-color);
}

.page-blog-xo88-promotions-registration__faq-item[open] .page-blog-xo88-promotions-registration__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-xo88-promotions-registration__faq-answer {
  padding: 0 25px 20px;
  color: var(--xo88-text-secondary);
  font-size: 0.95em;
}

.page-blog-xo88-promotions-registration__conclusion-section {
  padding: 50px 20px;
  text-align: center;
  background-color: var(--xo88-background);
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__conclusion-section .page-blog-xo88-promotions-registration__section-title {
  color: var(--xo88-gold-color);
}

.page-blog-xo88-promotions-registration__mt-20 {
  margin-top: 20px;
}

/* Color Contrast Specifics */
.page-blog-xo88-promotions-registration__dark-section {
  background-color: var(--xo88-background);
  color: var(--xo88-text-secondary);
}

.page-blog-xo88-promotions-registration__dark-section .page-blog-xo88-promotions-registration__text-main {
  color: var(--xo88-text-main);
}

.page-blog-xo88-promotions-registration__light-bg {
  background-color: #f8f9fa; /* A very light background to contrast with dark text */
  color: #333333; /* Dark text for light background */
}