.page-promotions {
  color: #1F2D3D; /* Text Main */
  background-color: var(--page-bg, #F4F7FB); /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Rely on body padding-top from shared */
  padding-bottom: 40px;
  background: linear-gradient(180deg, #6FA3FF 0%, #F4F7FB 100%);
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__intro-text {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.6);
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-secondary:hover {
  background: #f0f5ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions__promo-card,
.page-promotions__game-promo-card {
  background: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__promo-card:hover,
.page-promotions__game-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

.page-promotions__card-title {
  font-size: 1.6rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-list {
  text-align: left;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__card-list li {
  margin-bottom: 8px;
}

.page-promotions__card-button {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 3px 8px rgba(47, 107, 255, 0.3);
  width: fit-content;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 12px rgba(47, 107, 255, 0.5);
}

.page-promotions__vip-program {
  background-color: #F4F7FB; /* Background */
  padding: 80px 20px;
}

.page-promotions__vip-content {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__vip-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-promotions__vip-details {
  max-width: 500px;
}

.page-promotions__sub-title {
  font-size: 1.8rem;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-weight: 600;
}

.page-promotions__list-benefits {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__list-benefits li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.page-promotions__guide-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap-reverse;
}

.page-promotions__guide-steps {
  max-width: 600px;
}

.page-promotions__step-list {
  list-style: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__step-list li {
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.page-promotions__terms-text {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
}

.page-promotions__guide-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-promotions__why-choose {
  background-color: #FFFFFF; /* Card BG */
  padding: 80px 20px;
}

.page-promotions__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__benefit-list li {
  background-color: #F4F7FB; /* Background */
  padding: 25px;
  border-radius: 10px;
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2F6BFF;
}

.page-promotions__benefit-list li strong {
  color: #000000; /* Custom Color_1776249996415 */
}

.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #F4F7FB; /* Background */
}

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

.page-promotions__faq-item {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  background-color: #ffffff;
  list-style: none;
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.7;
}

.page-promotions__cta-bottom {
  padding-bottom: 80px;
}

/* General image responsiveness */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* All content containers for mobile padding */
.page-promotions__section,
.page-promotions__promo-grid,
.page-promotions__game-promo-grid,
.page-promotions__vip-content,
.page-promotions__guide-content,
.page-promotions__benefit-list,
.page-promotions__faq-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding-bottom: 30px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  }

  .page-promotions__vip-content,
  .page-promotions__guide-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .page-promotions__vip-details,
  .page-promotions__guide-steps {
    max-width: 100%;
    text-align: center;
  }

  .page-promotions__list-benefits,
  .page-promotions__step-list {
    text-align: left;
    margin: 0 auto 30px auto;
    max-width: 500px;
  }

  .page-promotions__benefit-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-promotions__promo-grid,
  .page-promotions__game-promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Hero Section */
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

  .page-promotions__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped on mobile */
    aspect-ratio: unset !important;
    max-height: none !important;
    border-radius: 0;
  }

  .page-promotions__main-title {
    font-size: 2.2rem !important;
    padding: 0 15px;
  }

  .page-promotions__intro-text {
    font-size: 1rem !important;
    padding: 0 15px;
  }

  /* Buttons and Button Containers */
  .page-promotions__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-button {
    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;
  }

  /* General Sections and Content Containers */
  .page-promotions__section {
    padding: 40px 15px !important;
  }

  .page-promotions__section-title {
    font-size: 1.8rem !important;
    padding: 0 10px;
  }

  .page-promotions__section-description {
    font-size: 0.95rem !important;
    padding: 0 10px;
    margin-bottom: 30px;
  }

  /* Card Layouts */
  .page-promotions__promo-grid,
  .page-promotions__game-promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-promotions__promo-card,
  .page-promotions__game-promo-card {
    padding: 20px !important;
  }

  .page-promotions__card-image {
    height: 180px !important;
  }

  .page-promotions__card-title {
    font-size: 1.4rem !important;
  }

  .page-promotions__card-text,
  .page-promotions__card-list li {
    font-size: 0.9rem !important;
  }

  /* VIP & Guide Sections */
  .page-promotions__vip-program,
  .page-promotions__why-choose {
    padding: 50px 15px !important;
  }

  .page-promotions__vip-content,
  .page-promotions__guide-content {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .page-promotions__vip-details,
  .page-promotions__guide-steps {
    text-align: center !important;
    padding: 0 10px;
  }

  .page-promotions__sub-title {
    font-size: 1.5rem !important;
  }

  .page-promotions__list-benefits,
  .page-promotions__step-list {
    margin-left: 15px !important;
    text-align: left !important;
    max-width: 100%;
  }

  .page-promotions__list-benefits li,
  .page-promotions__step-list li,
  .page-promotions__terms-text {
    font-size: 0.95rem !important;
  }

  /* FAQ Section */
  .page-promotions__faq-section {
    padding: 40px 15px !important;
  }

  .page-promotions__faq-container {
    margin-top: 20px !important;
  }

  .page-promotions__faq-question {
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }

  .page-promotions__faq-toggle {
    font-size: 1.5rem !important;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px !important;
    font-size: 0.9rem !important;
  }

  /* Bottom CTA */
  .page-promotions__cta-bottom {
    padding-bottom: 50px !important;
  }

  /* Global Image Resposiveness for mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  /* All containers with images */
  .page-promotions__hero-image-wrapper,
  .page-promotions__vip-image,
  .page-promotions__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}