/* style/promotions.css */
:root {
  --primary-color: #FF8C1A;
  --secondary-color: #FFA53A;
  --background-dark: #0D0E12;
  --card-background: #17191F;
  --text-light: #FFF3E6;
  --border-color: #A84F0C;
  --glow-color: #FFB04D;
  --deep-orange: #D96800;
}

.page-promotions {
  background-color: var(--background-dark);
  color: var(--text-light);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 60px;
  box-sizing: border-box;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--deep-orange) 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 145, 26, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 145, 26, 0.6);
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}

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

.page-promotions__overview-section, .page-promotions__claim-guide-section, .page-promotions__terms-conditions-section, .page-promotions__faq-section, .page-promotions__cta-final-section {
  padding: 60px 0;
}

.page-promotions__text-block {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.page-promotions__text-block strong {
  color: var(--secondary-color);
}

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

.page-promotions__promotion-card {
  background-color: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

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

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background: var(--background-dark);
  color: var(--secondary-color);
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background: var(--secondary-color);
  color: #ffffff;
  box-shadow: 0 3px 10px rgba(255, 165, 58, 0.4);
}

.page-promotions__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 0 15px;
}

.page-promotions__guide-steps {
  flex: 1;
}

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

.page-promotions__numbered-list li {
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid var(--primary-color);
  counter-increment: step-counter;
  position: relative;
  color: var(--text-light);
}

.page-promotions__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 20px;
  background-color: var(--primary-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
  margin-left: 30px;
}

.page-promotions__numbered-list li p {
  margin-left: 30px;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.page-promotions__btn-link {
  display: inline-block;
  margin-left: 30px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid var(--primary-color);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-promotions__btn-link:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-promotions__guide-image-wrapper {
  flex: 1;
  min-width: 300px;
  box-sizing: border-box;
}

.page-promotions__guide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px auto;
  max-width: 900px;
  background-color: var(--card-background);
  border-radius: 8px;
  padding: 30px;
  border: 1px solid var(--border-color);
}

.page-promotions__terms-list li {
  color: var(--text-light);
  margin-bottom: 10px;
  font-size: 0.95rem;
  position: relative;
  padding-left: 25px;
}

.page-promotions__terms-list li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1;
}

.page-promotions__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

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

.page-promotions__faq-item {
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-light);
}

.page-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--secondary-color);
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-item summary:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  width: 25px;
  text-align: center;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-light);
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

.page-promotions__cta-final-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-promotions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 0 15px;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__guide-content {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__guide-steps, .page-promotions__guide-image-wrapper {
    width: 100%;
    max-width: 600px;
  }
  .page-promotions__numbered-list li::before {
    left: 10px;
  }
  .page-promotions__step-title, .page-promotions__numbered-list li p, .page-promotions__btn-link {
    margin-left: 60px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 15px 40px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-button {
    width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .page-promotions__container {
    padding: 30px 15px;
  }
  .page-promotions__overview-section, .page-promotions__claim-guide-section, .page-promotions__terms-conditions-section, .page-promotions__faq-section, .page-promotions__cta-final-section {
    padding: 40px 0;
  }
  .page-promotions__text-block {
    padding: 0 15px;
  }
  .page-promotions__promotions-grid {
    padding: 0;
  }
  .page-promotions__promotion-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__numbered-list li {
    padding: 20px;
    border-left: 3px solid var(--primary-color);
  }
  .page-promotions__numbered-list li::before {
    left: 5px;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .page-promotions__step-title, .page-promotions__numbered-list li p, .page-promotions__btn-link {
    margin-left: 50px;
  }
  .page-promotions__terms-list {
    padding: 20px;
  }
  .page-promotions__terms-list li {
    font-size: 0.9rem;
    padding-left: 20px;
  }
  .page-promotions__faq-item summary {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-image-wrapper,
  .page-promotions__guide-image-wrapper,
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions 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 !important;
    padding-right: 15px !important;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}