/* style/promo.css */
.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: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
}

.page-promo__light-bg {
  background-color: #111111; /* Card BG */
  color: #FFF6D6; /* Text Main */
}

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

.page-promo__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
}

.page-promo__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-promo__hero-content-wrapper {
  padding: 40px 0;
  background-color: #0A0A0A; /* Background */
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: clamp(2em, 4vw, 3.5em);
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6; /* Text Main */
}

.page-promo__hero-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promo__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button */
  color: #111111; /* Contrast with button gradient */
  border: 2px solid transparent;
}

.page-promo__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  color: #FFF6D6;
}

.page-promo__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E; /* Border */
}

.page-promo__btn-secondary:hover {
  background-color: #F2C14E;
  color: #111111; /* Contrast with main color background */
}

.page-promo__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* Features Grid */
.page-promo__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promo__feature-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-promo__feature-text {
  color: #FFF6D6; /* Text Main */
}

/* Promo List Grid (Types of Promos) */
.page-promo__promo-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__promo-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card-dark {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  color: #FFF6D6;
}

.page-promo__promo-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__promo-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #F2C14E; /* Main color */
}

.page-promo__promo-text {
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Claim */
.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-promo__step-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #F2C14E; /* Main color */
}

.page-promo__step-text {
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Terms & Conditions */
.page-promo__terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__term-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  padding: 25px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__term-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-promo__term-text {
  color: #FFF6D6; /* Text Main */
}

.page-promo__terms-cta {
  margin-top: 40px;
}

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

.page-promo__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card-image {
  width: 100%;
  height: 225px; /* Fixed height for visual consistency */
  object-fit: cover;
  display: block;
}

.page-promo__promo-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promo__promo-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #F2C14E; /* Main color */
}

.page-promo__promo-card-text {
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Mobile App Advantage */
.page-promo__mobile-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  text-align: left;
  flex-wrap: wrap;
}

.page-promo__mobile-content {
  max-width: 500px;
}

.page-promo__mobile-content .page-promo__section-title {
  text-align: left;
  margin-bottom: 20px;
}

.page-promo__mobile-content .page-promo__section-description {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.page-promo__mobile-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  color: #FFF6D6; /* Text Main */
}

.page-promo__mobile-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promo__mobile-features li::before {
  content: '✔';
  color: #FFD36B; /* Glow */
  position: absolute;
  left: 0;
  top: 0;
}

.page-promo__mobile-image-wrapper {
  flex-shrink: 0;
}

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

/* Security & Responsible Gaming */
.page-promo__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promo__security-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 15px;
}

.page-promo__security-subtitle {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #F2C14E; /* Main color */
}

.page-promo__security-text {
  color: #FFF6D6; /* Text Main */
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promo__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promo__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #3A2A12; /* Border */
}

.page-promo__faq-question {
  background-color: #111111; /* Card BG */
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E; /* Main color */
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #1A1A1A;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FFD36B; /* Glow */
  transition: transform 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  background-color: #0A0A0A; /* Background */
  color: #FFF6D6; /* Text Main */
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

.page-promo__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Final CTA */
.page-promo__cta-final {
  padding-top: 80px;
  padding-bottom: 80px;
}

.page-promo__cta-content {
  max-width: 900px;
}

.page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__mobile-container {
    gap: 30px;
  }
  .page-promo__mobile-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promo__section {
    padding: 40px 0;
  }
  .page-promo__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }
  .page-promo__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__hero-cta,
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promo__container {
    padding: 0 15px;
  }
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__promo-card,
  .page-promo__feature-item,
  .page-promo__promo-item,
  .page-promo__step-item,
  .page-promo__term-item,
  .page-promo__security-item,
  .page-promo__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promo__promo-card-image {
    height: 180px; /* Adjust height for smaller screens */
  }
  .page-promo__mobile-container {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__mobile-content .page-promo__section-title,
  .page-promo__mobile-content .page-promo__section-description {
    text-align: center;
  }
  .page-promo__mobile-features {
    text-align: left;
    padding-left: 25px; /* Adjust for bullet point */
  }
  .page-promo__mobile-image {
    max-width: 250px;
  }
  .page-promo__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-promo__faq-answer {
    padding: 0 20px;
  }
  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__hero-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    padding: 12px 20px;
    font-size: 1em;
  }
}