.page-promotions {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #000000; /* Ensuring body background is dark as per instructions */
}

.page-promotions__hero-promotions-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 180px; /* Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #336699, #1a334d); /* Darker gradient for contrast */
}

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

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

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

.page-promotions__hero-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFCC00; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: linear-gradient(135deg, #FFCC00, #FFA500); /* Gold gradient */
  color: #000000; /* Dark text for bright button */
  text-decoration: none;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(135deg, #FFA500, #FFCC00);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__section {
  padding: 60px 20px;
  background-color: #0d0d0d; /* Slightly lighter dark background for sections */
  color: #f0f0f0;
}

.page-promotions__section--introduction {
  padding-bottom: 30px;
}

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

.page-promotions__heading {
  font-size: 36px;
  font-weight: bold;
  color: #FFCC00;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-promotions__heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: #336699;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promotions__paragraph {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions__paragraph a {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__paragraph a:hover {
  color: #336699;
  text-decoration: underline;
}

.page-promotions__paragraph--center {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__image {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__image--full-width {
  width: 100%;
  height: auto;
}

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

.page-promotions__grid--two-columns {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-promotions__card {
  background: #1a1a1a; /* Darker card background */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-promotions__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-text a {
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__card-text a:hover {
  color: #336699;
  text-decoration: underline;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__list-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 204, 0, 0.1);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 17px;
  line-height: 1.6;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__list-item strong {
  color: #FFCC00;
}

.page-promotions__tip-card {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 204, 0, 0.2);
}

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

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

.page-promotions__tip-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFCC00;
  margin-bottom: 10px;
}

.page-promotions__tip-text {
  font-size: 16px;
  line-height: 1.6;
  color: #cccccc;
}

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

.page-promotions__casino-item {
  background: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(51, 102, 153, 0.3);
}

.page-promotions__casino-name {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-promotions__casino-name a {
  color: #FFCC00;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__casino-name a:hover {
  color: #336699;
  text-decoration: underline;
}

.page-promotions__casino-promo {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-promotions__cta-button--small {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--small:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* FAQ Styles */
.page-promotions__section--faq {
  background-color: #0d0d0d;
  padding-bottom: 80px;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.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, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
  background: #1a1a1a;
  color: #cccccc;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: #1a1a1a;
  border-radius: 0 0 10px 10px;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #336699; /* Primary color for question background */
  border: 1px solid #2a527a;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: #ffffff;
}

.page-promotions__faq-question:hover {
  background: #2a527a;
  border-color: #1f3f5a;
}

.page-promotions__faq-question:active {
  background: #1f3f5a;
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #ffffff; /* White text for dark blue background */
}

.page-promotions__faq-question h3 a {
  color: #FFCC00;
  text-decoration: none;
}

.page-promotions__faq-question h3 a:hover {
  text-decoration: underline;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFCC00; /* Accent color for toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 204, 0, 0.1);
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 40px;
  }
  .page-promotions__hero-description {
    font-size: 18px;
  }
  .page-promotions__heading {
    font-size: 32px;
  }
  .page-promotions__cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions__card-title {
    font-size: 22px;
  }
  .page-promotions__card-text {
    font-size: 15px;
  }
  .page-promotions__list-item {
    font-size: 16px;
  }
  .page-promotions__tip-title {
    font-size: 20px;
  }
  .page-promotions__tip-text {
    font-size: 15px;
  }
  .page-promotions__casino-name {
    font-size: 22px;
  }
  .page-promotions__casino-promo {
    font-size: 15px;
  }
  .page-promotions__cta-button--small {
    font-size: 15px;
    padding: 9px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 17px;
  }
  .page-promotions__faq-toggle {
    font-size: 26px;
    width: 30px;
    height: 30px;
  }
  .page-promotions__faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-promotions-section {
    padding-top: 140px; /* Mobile fixed header adjustment */
    padding-bottom: 40px;
  }
  .page-promotions__hero-title {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 8px;
  }
  .page-promotions__section {
    padding: 40px 15px;
  }
  .page-promotions__heading {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__paragraph {
    font-size: 16px;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card {
    padding: 25px;
  }
  .page-promotions__card-image {
    max-width: 200px;
    margin-bottom: 20px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__card-text {
    font-size: 14px;
  }
  .page-promotions__list-item {
    padding: 15px 20px;
    font-size: 15px;
  }
  .page-promotions__tip-card {
    padding: 25px;
  }
  .page-promotions__tip-image {
    max-width: 180px;
    margin-bottom: 15px;
  }
  .page-promotions__tip-title {
    font-size: 18px;
  }
  .page-promotions__tip-text {
    font-size: 14px;
  }
  .page-promotions__casino-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-promotions__casino-item {
    padding: 20px;
  }
  .page-promotions__casino-name {
    font-size: 20px;
  }
  .page-promotions__casino-promo {
    font-size: 14px;
  }
  .page-promotions__cta-button--small {
    font-size: 14px;
    padding: 8px 18px;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 28px;
  }
  .page-promotions__hero-description {
    font-size: 15px;
  }
  .page-promotions__heading {
    font-size: 24px;
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-promotions__card-title {
    font-size: 18px;
  }
  .page-promotions__tip-title {
    font-size: 16px;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 26px;
    height: 26px;
  }
}