:root {
  --primary-color: #F2C14E; /* Black Gold - Main */
  --secondary-color: #FFD36B; /* Black Gold - Auxiliary */
  --card-bg: #111111;
  --body-bg: #0A0A0A;
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --header-offset: 120px; /* Default desktop offset */
}

/* General page styling */
.page-promo-new-user-bonus {
  background-color: var(--body-bg);
  color: var(--text-main); /* Light text for dark background */
  font-family: 'Arial', sans-serif; /* Example font */
  line-height: 1.6;
  padding-bottom: 60px; /* Ensure space above footer */
}

/* Container for consistent content width */
.page-promo-new-user-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Section titles and descriptions */
.page-promo-new-user-bonus__section-title {
  font-size: 2.8em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo-new-user-bonus__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-main);
}