.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-promotions__highlight {
  color: #017439;
  font-weight: bold;
}

.page-promotions__section {
  padding: 60px 20px;
  text-align: center;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #017439;
}

.page-promotions__section-text {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background: linear-gradient(135deg, #017439, #005f2f);
  color: #ffffff;
}

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

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFF00; /* Register/Login Font Color */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-register {
  background: #C30808; /* Register Color */
  color: #FFFF00; /* Register/Login Font Color */
  border: 2px solid #C30808;
}

.page-promotions__btn-register:hover {
  background: #a00606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-login {
  background: #C30808; /* Login Color */
  color: #FFFF00; /* Register/Login Font Color */
  border: 2px solid #C30808;
}

.page-promotions__btn-login:hover {
  background: #a00606;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: #f9f9f9;
  color: #333333;
}

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

.page-promotions__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__feature-item img {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-promotions__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  font-size: 16px;
  color: #555;
}

/* Quick Access Section */
.page-promotions__quick-access-section {
  background: linear-gradient(135deg, #005f2f, #017439);
  color: #ffffff;
}

.page-promotions__quick-access-section .page-promotions__section-title {
  color: #FFFF00;
}

.page-promotions__quick-access-section .page-promotions__section-text {
  color: #f0f0f0;
}

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

.page-promotions__quick-link {
  display: block;
  padding: 15px 20px;
  background: #ffffff;
  color: #017439;
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__quick-link:hover {
  background: #e6e6e6;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-download, .page-promotions__btn-promo, .page-promotions__btn-home, .page-promotions__btn-support {
  background: #017439;
  color: #ffffff;
}

.page-promotions__btn-download:hover, .page-promotions__btn-promo:hover, .page-promotions__btn-home:hover, .page-promotions__btn-support:hover {
  background: #005f2f;
}

/* Games Section */
.page-promotions__games-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-promotions__game-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__game-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__game-card .page-promotions__game-title {
  font-size: 20px;
  font-weight: bold;
  color: #017439;
  padding: 20px 20px 10px;
}

.page-promotions__game-card p {
  font-size: 16px;
  color: #555;
  padding: 0 20px 20px;
}

.page-promotions__btn-details {
  display: inline-block;
  background: #017439;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-promotions__btn-details:hover {
  background: #005f2f;
}

/* Promos Section */
.page-promotions__promos-section {
  background: linear-gradient(135deg, #005f2f, #017439);
  color: #ffffff;
}

.page-promotions__promos-section .page-promotions__section-title {
  color: #FFFF00;
}

.page-promotions__promos-section .page-promotions__section-text {
  color: #f0f0f0;
}

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

.page-promotions__promo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__promo-card .page-promotions__promo-title {
  font-size: 20px;
  font-weight: bold;
  color: #017439;
  padding: 20px 20px 10px;
}

.page-promotions__promo-card p {
  font-size: 16px;
  color: #555;
  padding: 0 20px 20px;
}

.page-promotions__btn-claim {
  display: inline-block;
  background: #C30808; /* Register/Login Color */
  color: #FFFF00; /* Register/Login Font Color */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  transition: background-color 0.3s ease;
}

.page-promotions__btn-claim:hover {
  background: #a00606;
}

/* Security & Support Section */
.page-promotions__security-support-section {
  background-color: #f9f9f9;
  color: #333333;
}

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

.page-promotions__info-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__info-card img {
  
  
  margin-bottom: 20px;
  object-fit: contain;
  border-radius: 8px;
}

.page-promotions__info-title {
  font-size: 22px;
  font-weight: bold;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions__info-card p {
  font-size: 16px;
  color: #555;
}

.page-promotions__contact-cta {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__btn-contact, .page-promotions__btn-responsible {
  display: inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-contact {
  background: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-promotions__btn-contact:hover {
  background: #005f2f;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-responsible {
  background: #ffffff;
  color: #017439;
  border: 2px solid #017439;
}

.page-promotions__btn-responsible:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-promotions__faq-section {
  background: linear-gradient(135deg, #005f2f, #017439);
  color: #ffffff;
}

.page-promotions__faq-section .page-promotions__section-title {
  color: #FFFF00;
}

.page-promotions__faq-section .page-promotions__section-text {
  color: #f0f0f0;
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-qtext {
  flex: 1;
  line-height: 1.5;
  text-align: left;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFFF00;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 0 0 12px 12px;
  font-size: 16px;
  color: #f0f0f0;
}

/* Blog Section */
.page-promotions__blog-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-promotions__blog-card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__blog-content {
  padding: 20px;
}

.page-promotions__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-promotions__blog-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__blog-title a:hover {
  color: #005f2f;
}

.page-promotions__blog-summary {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

.page-promotions__blog-date {
  font-size: 14px;
  color: #888;
  display: block;
}

.page-promotions__view-all-button {
  margin-top: 40px;
}

.page-promotions__btn-view-all {
  display: inline-block;
  background: #017439;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__btn-view-all:hover {
  background: #005f2f;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__section-text {
    font-size: 17px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__feature-item img, .page-promotions__info-card img {
    
    
  }
  .page-promotions__game-card img {
    height: 220px;
  }
  .page-promotions__promo-card img {
    
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__container {
    padding: 0;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-promotions__section-text {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  .page-promotions__main-title {
    font-size: 28px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__cta-button, .page-promotions__quick-link, .page-promotions__btn-details, .page-promotions__btn-claim, .page-promotions__btn-contact, .page-promotions__btn-responsible, .page-promotions__btn-view-all {
    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-promotions__quick-link {
    font-size: 16px;
    padding: 12px 15px;
  }
  .page-promotions__feature-item, .page-promotions__game-card, .page-promotions__promo-card, .page-promotions__info-card {
    padding: 20px;
  }
  .page-promotions__feature-item img, .page-promotions__info-card img {
    
    
  }
  .page-promotions__feature-title, .page-promotions__info-title, .page-promotions__game-title, .page-promotions__promo-title, .page-promotions__blog-title {
    font-size: 18px;
  }
  .page-promotions__feature-item p, .page-promotions__info-card p, .page-promotions__game-card p, .page-promotions__promo-card p, .page-promotions__blog-summary {
    font-size: 15px;
  }
  .page-promotions__game-card img, .page-promotions__promo-card img, .page-promotions__blog-card img {
    
  }
  .page-promotions__contact-cta {
    flex-direction: column;
    gap: 15px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 24px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__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__section-title {
    font-size: 24px;
  }
  .page-promotions__game-card img, .page-promotions__promo-card img, .page-promotions__blog-card img {
    
  }
  .page-promotions__blog-content {
    padding: 15px;
  }
}