.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  line-height: 1.6;
}

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

.page-promotions__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-promotions__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
}

.page-promotions__text-secondary {
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__center-text {
  text-align: center;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  margin-top: 30px;
}

.page-promotions__main-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.1;
}

.page-promotions__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-promotions__center-button {
  display: block;
  margin: 30px auto 0 auto;
  max-width: 300px;
}

.page-promotions__intro-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__categories-section {
  padding: 80px 0;
}

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

.page-promotions__card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promotions__card:hover {
  transform: translateY(-5px);
}

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

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__game-specific-promos {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__game-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__game-promo-card {
  text-align: left;
}

.page-promotions__game-promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 180px;
}

.page-promotions__game-promo-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__list li {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-promotions__list li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #2AD16F;
}

.page-promotions__how-to-claim {
  padding: 80px 0;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-card {
  position: relative;
  padding-top: 60px;
}

.page-promotions__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #F2C14E; /* Gold */
  color: #08160F; /* Background */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  text-align: center;
}

.page-promotions__step-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions__video-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__mt-20 {
  margin-top: 20px;
}

.page-promotions__why-choose-zabet {
  padding: 80px 0;
}

.page-promotions__list-benefits {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-promotions__list-benefits li {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.5;
  position: relative;
  padding-left: 60px;
}

.page-promotions__list-benefits li::before {
  content: '✅';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.page-promotions__list-item-title {
  color: #F2FFF6; /* Text Main */
  display: block;
  margin-bottom: 5px;
}

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border */
}

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

.page-promotions__faq-question::marker {
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-promotions__final-cta {
  padding: 60px 0;
  text-align: center;
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Desktop specific adjustments */
@media (min-width: 769px) {
  .page-promotions__list-benefits {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablet and Mobile adjustments */
@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-promotions__hero-content {
    margin-top: 20px;
    padding: 10px;
  }

  .page-promotions__main-title {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
  }

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-promotions__intro-section,
  .page-promotions__categories-section,
  .page-promotions__game-specific-promos,
  .page-promotions__how-to-claim,
  .page-promotions__video-section,
  .page-promotions__why-choose-zabet,
  .page-promotions__faq-section,
  .page-promotions__final-cta {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 28px;
  }

  .page-promotions__grid,
  .page-promotions__game-promo-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image,
  .page-promotions__game-promo-image {
    height: auto;
  }

  .page-promotions__step-card {
    padding-top: 50px;
  }

  .page-promotions__step-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .page-promotions__video-wrapper {
    margin: 20px auto;
    padding-bottom: 56.25%; /* Ensure aspect ratio */
    width: 100%; /* Ensure full width */
  }

  .page-promotions__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 14px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .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;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Content area images minimum size enforcement */
  .page-promotions__card-image, 
  .page-promotions__game-promo-image {
    min-width: 200px !important;
    min-height: 200px !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__list-benefits li {
    padding-left: 40px;
  }

  .page-promotions__list-benefits li::before {
    left: 10px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 28px;
  }

  .page-promotions__section-title {
    font-size: 24px;
  }

  .page-promotions__hero-description {
    font-size: 15px;
  }
}