.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__dark-section {
  background-color: #111111; /* Card BG, used for darker sections */
  color: #FFF6D6;
}

.page-promo__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for titles */
  line-height: 1.2;
}

.page-promo__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* H1 title using clamp */
  font-weight: 900;
  margin-bottom: 20px;
  color: #F2C14E;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promo__section-description,
.page-promo__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* Buttons */
.page-promo__btn-primary,
.page-promo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for bright button */
  border: none;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-promo__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
  transform: translateY(-2px);
}

.page-promo__btn-secondary {
  background: transparent;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B; /* Glow */
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.3);
}

.page-promo__btn-secondary:hover {
  background: rgba(255, 211, 107, 0.1);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.6);
  transform: translateY(-2px);
}

.page-promo__btn-centered {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promo__cta-buttons .page-promo__btn-primary,
.page-promo__cta-buttons .page-promo__btn-secondary {
  min-width: 180px;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align content to top initially */
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  box-sizing: border-box;
}

.page-promo__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Overview Section */
.page-promo__overview-section .page-promo__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-promo__content-block {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-promo__content-subtitle {
  font-size: 1.8em;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
}

.page-promo__content-block p,
.page-promo__content-block ul {
  color: #FFF6D6;
  font-size: 1em;
  line-height: 1.6;
}

.page-promo__content-block ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.page-promo__content-block li::before {
  content: '⚡';
  color: #FFD36B;
  display: inline-block;
  margin-right: 10px;
}

/* Featured Promos */
.page-promo__promo-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__promo-card .page-promo__card-title {
  font-size: 1.5em;
  color: #FFD36B;
  padding: 15px 20px 10px;
  line-height: 1.3;
}

.page-promo__promo-card .page-promo__card-text {
  color: #FFF6D6;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-promo__promo-card .page-promo__btn-primary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* How to Claim Section */
.page-promo__how-to-claim-section {
  background: radial-gradient(circle at top left, rgba(242, 193, 78, 0.1), transparent 50%), radial-gradient(circle at bottom right, rgba(255, 211, 107, 0.1), transparent 50%);
  padding: 80px 0;
}

.page-promo__steps-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  text-align: left;
}

.page-promo__steps-content {
  flex: 1;
}

.page-promo__steps-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promo__steps-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: block;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promo__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-promo__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(242, 193, 78, 0.5);
}

.page-promo__step-title {
  font-size: 1.6em;
  color: #F2C14E;
  margin-top: 0;
  margin-bottom: 5px;
}

.page-promo__step-item p {
  color: #FFF6D6;
  font-size: 1em;
}

.page-promo__step-item a {
  color: #FFD36B;
  text-decoration: underline;
}

.page-promo__step-item a:hover {
  color: #F2C14E;
}

/* Why Choose Us Section */
.page-promo__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-promo__benefit-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #3A2A12;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__benefit-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-promo__benefit-card p {
  color: #FFF6D6;
  font-size: 1em;
}

.page-promo__image-centered {
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 800px;
  width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Game Categories */
.page-promo__game-categories-section {
  background-color: #0A0A0A;
}