:root {
  --main-color: #F2C14E;
  --auxiliary-color: #FFD36B;
  --card-bg: #111111;
  --background-color: #0A0A0A; /* Matches shared.css body background */
  --text-main: #FFF6D6;
  --border-color: #3A2A12;
  --glow-color: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-promo {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main, #FFF6D6); /* Default text color for dark background */
  background-color: var(--background-color, #0A0A0A);
}

.page-promo__hero-section {
  padding-top: var(--header-offset, 120px); /* Desktop padding */
  background-color: var(--background-color, #0A0A0A);
  position: relative;
  overflow: hidden;
}

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

.page-promo__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 0; /* Additional padding for content */
  min-height: 60vh;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.7)); /* Dark overlay for text readability */
}

.page-promo__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-main, #FFF6D6);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
  max-width: 900px;
}

.page-promo__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-main, #FFF6D6);
  margin-bottom: 40px;
  max-width: 800px;
}