.page-promotions {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #CC0000;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.page-promotions__section-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero */
  overflow: hidden;
}

.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;
  position: relative;
  z-index: 1;
}

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

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

.page-promotions__main-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #CC0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background: #990000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Featured Offers Section */
.page-promotions__featured-offers {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-promotions__offer-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__offer-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__offer-card h3 {
  font-size: 22px;
  color: #000000;
  margin: 20px 15px 10px;
  line-height: 1.3;
}

.page-promotions__offer-card h3 a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__offer-card h3 a:hover {
  color: #CC0000;
}

.page-promotions__offer-card p {
  font-size: 16px;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  background: #ffffff;
  color: #CC0000;
  border: 2px solid #CC0000;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: auto;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

/* Game Specific Offers Section */
.page-promotions__game-specific-offers {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-promotions__game-specific-offers .page-promotions__section-title {
  color: #CC0000;
}

.page-promotions__game-specific-offers .page-promotions__section-intro {
  color: #f0f0f0;
}

.page-promotions__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.page-promotions__tab-button {
  background: #333333;
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.page-promotions__tab-button:hover {
  background: #CC0000;
}

.page-promotions__tab-button.active {
  background: #CC0000;
  color: #ffffff;
  font-weight: bold;
}

.page-promotions__tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.page-promotions__tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-promotions__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-promotions__content-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-block h3 {
  font-size: 28px;
  color: #CC0000;
  margin-bottom: 15px;
}

.page-promotions__text-block p {
  font-size: 17px;
  color: #f0f0f0;
  margin-bottom: 20px;
}

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

.page-promotions__text-block ul li {
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-promotions__text-block ul li::before {
  content: '✓';
  color: #CC0000;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #CC0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__btn-primary:hover {
  background: #990000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* VIP Program Section */
.page-promotions__vip-program {
  padding: 80px 0;
  background-color: #f4f4f4;
}

.page-promotions__vip-benefit-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-promotions__vip-benefit-card:hover {
  transform: translateY(-5px);
}

.page-promotions__vip-benefit-card img {
  width: 100%;
  
  height: auto;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__vip-benefit-card h3 {
  font-size: 22px;
  color: #CC0000;
  margin-bottom: 10px;
}

.page-promotions__vip-benefit-card p {
  font-size: 16px;
  color: #555555;
}

.page-promotions__button-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__button-group .page-promotions__btn-primary,
.page-promotions__button-group .page-promotions__btn-secondary {
  min-width: 200px;
}

/* How to Participate Section */
.page-promotions__how-to-participate {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-promotions__how-to-participate .page-promotions__section-title {
  color: #CC0000;
}

.page-promotions__how-to-participate .page-promotions__section-intro {
  color: #f0f0f0;
}

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

.page-promotions__step-card {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.page-promotions__step-number {
  position: absolute;
  top: -15px;
  left: -15px;
  background: #CC0000;
  color: #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-card h3 {
  font-size: 24px;
  color: #CC0000;
  margin-top: 20px;
  margin-bottom: 15px;
}

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

.page-promotions__step-card p a {
  color: #CC0000;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-card p a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.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: #ffffff;
  border-radius: 0 0 5px 5px;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  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: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #333333;
}

.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: #CC0000;
  transform: rotate(45deg);
}

.page-promotions__faq-answer p {
  color: #555555;
  margin: 0;
  font-size: 15px;
}

/* Terms & Conditions Section */
.page-promotions__terms {
  padding: 80px 0;
  background-color: #000000;
  color: #ffffff;
}

.page-promotions__terms .page-promotions__section-title {
  color: #CC0000;
}

.page-promotions__terms .page-promotions__section-intro {
  color: #f0f0f0;
}

.page-promotions__terms ul {
  list-style: disc;
  padding-left: 25px;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-promotions__terms ul li {
  margin-bottom: 10px;
  color: #cccccc;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 40px;
  }
  .page-promotions__description {
    font-size: 18px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__section-intro {
    font-size: 16px;
  }
  .page-promotions__content-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__content-grid img {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-image img {
    border-radius: 4px;
  }
  
  .page-promotions__main-title {
    font-size: 32px;
  }
  .page-promotions__description {
    font-size: 16px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: 28px;
  }
  .page-promotions__section-intro {
    font-size: 15px;
  }
  .page-promotions__container {
    padding: 30px 15px;
  }
  .page-promotions__grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__offer-card,
  .page-promotions__vip-benefit-card,
  .page-promotions__step-card {
    margin-bottom: 20px;
  }
  .page-promotions__tabs {
    flex-direction: column;
    gap: 10px;
  }
  .page-promotions__tab-button {
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__content-grid {
    gap: 20px;
  }
  .page-promotions__text-block h3 {
    font-size: 24px;
  }
  .page-promotions__text-block p,
  .page-promotions__text-block ul li {
    font-size: 15px;
  }
  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__button-group .page-promotions__btn-primary,
  .page-promotions__button-group .page-promotions__btn-secondary {
    width: 100%;
    box-sizing: border-box;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ specific mobile styles */
  .page-promotions__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  
  .page-promotions__faq-question h3 {
    font-size: 15px;
    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;
  }

  /* Ensure all images and containers adapt to mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__content-grid,
  .page-promotions__steps-grid,
  .page-promotions__offer-card,
  .page-promotions__vip-benefit-card,
  .page-promotions__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__game-specific-offers .page-promotions__container,
  .page-promotions__vip-program .page-promotions__container,
  .page-promotions__how-to-participate .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__terms .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* General dark/light background classes for contrast */
.page-promotions__dark-bg {
  background-color: #000000;
  color: #ffffff;
}
.page-promotions__dark-bg .page-promotions__section-title {
  color: #CC0000;
}
.page-promotions__dark-bg .page-promotions__section-intro,
.page-promotions__dark-bg p,
.page-promotions__dark-bg li {
  color: #f0f0f0;
}

.page-promotions__light-bg {
  background-color: #f4f4f4;
  color: #333333;
}
.page-promotions__light-bg .page-promotions__section-title {
  color: #CC0000;
}
.page-promotions__light-bg .page-promotions__section-intro,
.page-promotions__light-bg p,
.page-promotions__light-bg li {
  color: #555555;
}