/* style/promotions.css */
:root {
  --primary-color: #0A2463;
  --secondary-color: #E3B505;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f9f9f9;
  --bg-dark-card: rgba(255, 255, 255, 0.1);
  --border-color: #e0e0e0;
}

.page-promotions {
  color: var(--text-light);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-promotions__banner-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 180px; /* Desktop: Adjust for fixed header */
  background-color: var(--primary-color);
  overflow: hidden;
}

.page-promotions__banner-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__banner-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-promotions__banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions__banner-description {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-promotions__cta-button:hover {
  background: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--small {
  padding: 12px 25px;
  font-size: 16px;
  margin-top: 15px;
}

.page-promotions__cta-button--large {
  padding: 20px 50px;
  font-size: 22px;
  margin-top: 40px;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
}

.page-promotions__section-title--light {
  color: var(--text-light);
}

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

.page-promotions__intro-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__intro-section p {
  font-size: 17px;
  margin-bottom: 15px;
}

.page-promotions__intro-section strong {
  color: var(--primary-color);
}

.page-promotions__types-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__card {
  background-color: var(--text-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__card p {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__claim-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__claim-section p {
  font-size: 17px;
  margin-bottom: 30px;
  text-align: center;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.page-promotions__step-card {
  background-color: var(--text-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  border-left: 5px solid var(--secondary-color);
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__step-card p {
  font-size: 16px;
}

.page-promotions__featured-promo-section {
  padding: 60px 0;
  background-color: var(--primary-color);
}

.page-promotions__featured-promo-intro {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__featured-card {
  background-color: var(--text-light);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__featured-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__featured-image {
  max-width: 280px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__featured-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__featured-card p {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__call-to-action-text {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-promotions__text-link {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
  color: #FFC107;
}

.page-promotions__responsible-gambling-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
  text-align: center;
}

.page-promotions__responsible-gambling-section p {
  font-size: 17px;
  max-width: 800px;
  margin: 0 auto 20px auto;
}

.page-promotions__responsible-gambling-section a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__responsible-gambling-section a:hover {
  color: var(--secondary-color);
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-promotions__faq-question:active {
  background: #eeeeee;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--primary-color);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: var(--primary-color);
}

.page-promotions__faq-answer p {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 0;
}

.page-promotions__conclusion-section {
  padding: 60px 0;
  background-color: var(--primary-color);
  text-align: center;
}

.page-promotions__conclusion-section p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 900px;
  margin: 0 auto 20px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 36px;
  }
  .page-promotions__banner-description {
    font-size: 18px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__card-title, .page-promotions__step-title, .page-promotions__featured-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .page-promotions__banner-section {
    padding-top: 160px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__main-title {
    font-size: 28px;
  }
  .page-promotions__banner-description {
    font-size: 16px;
  }
  .page-promotions__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 20px;
  }
  .page-promotions__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .page-promotions__intro-section, .page-promotions__types-section, .page-promotions__claim-section, .page-promotions__featured-promo-section, .page-promotions__responsible-gambling-section, .page-promotions__faq-section, .page-promotions__conclusion-section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__intro-section p, .page-promotions__card p, .page-promotions__step-card p, .page-promotions__featured-card p, .page-promotions__responsible-gambling-section p, .page-promotions__conclusion-section p {
    font-size: 15px;
  }
  .page-promotions__card, .page-promotions__step-card, .page-promotions__featured-card {
    padding: 20px;
  }
  .page-promotions__card-image, .page-promotions__featured-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card-title, .page-promotions__step-title, .page-promotions__featured-title {
    font-size: 20px;
  }
  .page-promotions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-promotions__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__banner-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 24px;
  }
  .page-promotions__banner-description {
    font-size: 14px;
  }
  .page-promotions__section-title {
    font-size: 22px;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-promotions__card-title, .page-promotions__step-title, .page-promotions__featured-title {
    font-size: 18px;
  }
  .page-promotions__intro-section p, .page-promotions__card p, .page-promotions__step-card p, .page-promotions__featured-card p, .page-promotions__responsible-gambling-section p, .page-promotions__conclusion-section p {
    font-size: 14px;
  }
  .page-promotions__faq-question h3 {
    font-size: 14px;
  }
  .page-promotions__faq-toggle {
    font-size: 18px;
  }
  .page-promotions__faq-answer p {
    font-size: 14px;
  }
}