.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #f0f0f0; /* Light gray for general text for contrast */
  background-color: #1a1a1a; /* Dark background */
  line-height: 1.6;
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #B22222 0%, #FFD700 100%);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:cockfighting,pattern,abstract]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions__hero-section > * {
  position: relative;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #eee;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #ccc;
}

.page-promotions__introduction {
  padding: 60px 0;
  background-color: #222;
  color: #e0e0e0;
}

.page-promotions__introduction p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__intro-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__offer-categories {
  padding: 80px 0;
  background-color: #1a1a1a;
}

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

.page-promotions__card {
  background-color: #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #B22222;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin: 25px 15px 15px 15px;
}

.page-promotions__card-description {
  font-size: 1.05em;
  color: #bbb;
  padding: 0 20px;
  margin-bottom: 30px;
}

.page-promotions__limited-time-offers {
  padding: 80px 0;
  background-color: #222;
  text-align: center;
}

.page-promotions__limited-time-image {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  margin: 40px auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__details-list {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promotions__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-promotions__detail-card {
  background-color: #2a2a2a;
  border-left: 5px solid #B22222;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__detail-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-promotions__detail-title a {
  color: #FFD700; /* Gold for detail titles */
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-promotions__detail-title a:hover {
  color: #fff;
}

.page-promotions__detail-description {
  color: #bbb;
  font-size: 1.0em;
  margin-bottom: 25px;
}

.page-promotions__faq {
  padding: 80px 0;
  background-color: #222;
}

.page-promotions__faq-item {
  background-color: #2a2a2a;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #FFD700; /* Gold for FAQ questions */
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #B22222;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__faq-answer {
  font-size: 1.05em;
  color: #bbb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-promotions__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 15px;
}

.page-promotions__cta-bottom {
  background: linear-gradient(45deg, #B22222 0%, #a01a1a 100%);
  padding: 80px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-promotions__cta-bottom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:cockfighting,pattern,abstract_gold]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions__cta-bottom > * {
  position: relative;
  z-index: 1;
}

.page-promotions__cta-image {
  max-width: 90%;
  height: auto;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #B22222; /* Firebrick */
  border: 2px solid #FFD700;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
  background-color: #B22222; /* Firebrick */
  color: #fff;
  border: 2px solid #B22222;
  margin-top: 20px;
}

.page-promotions__btn--secondary:hover {
  background-color: #991e1e;
  border-color: #991e1e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--text {
  color: #FFD700;
  background: none;
  border: none;
  padding: 0;
  font-size: 1em;
  display: inline-flex;
  align-items: center;
}

.page-promotions__btn--text:hover {
  color: #fff;
  text-decoration: underline;
}

.page-promotions__btn--text span {
  margin-left: 5px;
}

.page-promotions .highlight {
  color: #FFD700;
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 80px 0;
  }
  .page-promotions__main-title {
    font-size: 2.2em;
  }
  .page-promotions__subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card, .page-promotions__detail-card, .page-promotions__faq-item {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promotions__description {
    margin-left: 10px;
    margin-right: 10px;
  }
  .page-promotions__intro-image, .page-promotions__limited-time-image, .page-promotions__cta-image {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.8em;
  }
  .page-promotions__subtitle {
    font-size: 0.9em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-title {
    font-size: 1.5em;
  }
  .page-promotions__detail-title {
    font-size: 1.3em;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}