/* style/promotions-holiday-specials.css */
.page-promotions-holiday-specials {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-promotions-holiday-specials__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFCC00; /* Gold accent */
}

.page-promotions-holiday-specials__hero-image {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 300px; /* Adjust size as needed */
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-holiday-specials__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Golden yellow for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative; /* For z-index */
  z-index: 1;
}

.page-promotions-holiday-specials__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative; /* For z-index */
  z-index: 1;
}

.page-promotions-holiday-specials__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative; /* For z-index */
  z-index: 1;
}

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

.page-promotions-holiday-specials__btn--primary {
  background-color: #FFCC00; /* Golden yellow */
  color: #003366; /* Deep blue text for contrast */
}

.page-promotions-holiday-specials__btn--primary:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions-holiday-specials__btn--secondary {
  background-color: #003366; /* Deep blue */
  color: #fff;
  border: 2px solid #FFCC00; /* Gold border */
}

.page-promotions-holiday-specials__btn--secondary:hover {
  background-color: #004d99; /* Lighter blue */
  border-color: #e6b800;
  transform: translateY(-3px);
}

.page-promotions-holiday-specials__section-title {
  font-size: 2.5em;
  color: #003366; /* Deep blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-holiday-specials__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Golden yellow accent */
  border-radius: 2px;
}

.page-promotions-holiday-specials__introduction-section,
.page-promotions-holiday-specials__promotion-details-section,
.page-promotions-holiday-specials__how-to-join-section,
.page-promotions-holiday-specials__why-choose-us,
.page-promotions-holiday-specials__faq-section,
.page-promotions-holiday-specials__responsible-gambling-section,
.page-promotions-holiday-specials__final-cta-section {
  padding: 80px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions-holiday-specials__introduction-section {
  background-color: #fdfdfd;
}

.page-promotions-holiday-specials__text-content {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions-holiday-specials__text-content--note {
  font-style: italic;
  font-size: 0.95em;
  color: #777;
  margin-top: 40px;
}

.page-promotions-holiday-specials__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-holiday-specials__feature-list li {
  background-color: #e6f0f8; /* Light blue */
  padding: 20px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #003366;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-holiday-specials__feature-list li i {
  color: #FFCC00; /* Golden yellow icon */
  font-size: 1.5em;
}

.page-promotions-holiday-specials__section-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 50px auto 0 auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-promotions-holiday-specials__promo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions-holiday-specials__promo-card {
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions-holiday-specials__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions-holiday-specials__promo-card-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions-holiday-specials__promo-card-description {
  font-size: 1em;
  color: #666;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-promotions-holiday-specials__btn--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

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

.page-promotions-holiday-specials__step-card {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.page-promotions-holiday-specials__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FFCC00; /* Golden yellow */
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.7;
  z-index: 0;
}

.page-promotions-holiday-specials__step-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-promotions-holiday-specials__step-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.page-promotions-holiday-specials__step-description a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-holiday-specials__step-image {
  max-width: 100%;
  height: 150px;
  object-fit: contain;
  margin-top: 20px;
}

.page-promotions-holiday-specials__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promotions-holiday-specials__why-choose-us {
  background-color: #fdfdfd;
}

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

.page-promotions-holiday-specials__advantage-list li {
  background-color: #f0f8ff; /* Lighter blue */
  padding: 20px;
  border-left: 5px solid #003366; /* Deep blue accent */
  border-radius: 8px;
  font-size: 1.05em;
  color: #333;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-holiday-specials__advantage-list li i {
  color: #003366; /* Deep blue icon */
  font-size: 1.5em;
  margin-top: 3px;
}

.page-promotions-holiday-specials__advantage-list li a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-holiday-specials__faq-section {
  background-color: #fdfdfd;
}

.page-promotions-holiday-specials__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-promotions-holiday-specials__faq-question {
  font-size: 1.25em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #e6f0f8; /* Light blue background for question */
  border-bottom: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promotions-holiday-specials__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promotions-holiday-specials__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-holiday-specials__faq-answer.active {
  max-height: 300px; /* Adjust based on max expected content */
  padding: 20px 25px;
}

.page-promotions-holiday-specials__faq-answer p {
  margin: 0;
  color: #555;
}

.page-promotions-holiday-specials__faq-answer a {
  color: #003366;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-holiday-specials__responsible-gambling-section {
  background-color: #f0f8ff;
  border-top: 5px solid #003366;
}

.page-promotions-holiday-specials__final-cta-section {
  text-align: center;
  background: linear-gradient(135deg, #003366 0%, #004d99 100%);
  color: #fff;
  padding: 80px 0;
}

.page-promotions-holiday-specials__final-cta-section .page-promotions-holiday-specials__section-title {
  color: #FFCC00;
}

.page-promotions-holiday-specials__final-cta-section .page-promotions-holiday-specials__text-content {
  color: #fff;
}

.page-promotions-holiday-specials__final-cta-section .page-promotions-holiday-specials__text-content a {
  color: #FFCC00;
  font-weight: bold;
  text-decoration: underline;
}

.page-promotions-holiday-specials__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Icons (simple placeholder for now, ideally from a font library) */
.icon-star::before { content: '⭐'; margin-right: 5px; }
.icon-gift::before { content: '🎁'; margin-right: 5px; }
.icon-shield::before { content: '🛡️'; margin-right: 5px; }
.icon-game::before { content: '🎮'; margin-right: 5px; }
.icon-check::before { content: '✅'; margin-right: 5px; }

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions-holiday-specials__hero-title {
    font-size: 2.8em;
  }
  .page-promotions-holiday-specials__hero-subtitle {
    font-size: 1.3em;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 2em;
  }
  .page-promotions-holiday-specials__promo-card-grid,
  .page-promotions-holiday-specials__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions-holiday-specials__hero-image {
    width: 200px;
  }
}

@media (max-width: 768px) {
  .page-promotions-holiday-specials__hero-section,
  .page-promotions-holiday-specials__introduction-section,
  .page-promotions-holiday-specials__promotion-details-section,
  .page-promotions-holiday-specials__how-to-join-section,
  .page-promotions-holiday-specials__why-choose-us,
  .page-promotions-holiday-specials__faq-section,
  .page-promotions-holiday-specials__responsible-gambling-section,
  .page-promotions-holiday-specials__final-cta-section {
    padding: 60px 0;
  }
  .page-promotions-holiday-specials__hero-title {
    font-size: 2.2em;
  }
  .page-promotions-holiday-specials__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-holiday-specials__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions-holiday-specials__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 1.8em;
  }
  .page-promotions-holiday-specials__promo-card-grid,
  .page-promotions-holiday-specials__steps-grid,
  .page-promotions-holiday-specials__advantage-list {
    grid-template-columns: 1fr;
  }
  .page-promotions-holiday-specials__hero-image {
    display: none; /* Hide on smaller screens if it overlaps too much */
  }
}

@media (max-width: 480px) {
  .page-promotions-holiday-specials__hero-section,
  .page-promotions-holiday-specials__introduction-section,
  .page-promotions-holiday-specials__promotion-details-section,
  .page-promotions-holiday-specials__how-to-join-section,
  .page-promotions-holiday-specials__why-choose-us,
  .page-promotions-holiday-specials__faq-section,
  .page-promotions-holiday-specials__responsible-gambling-section,
  .page-promotions-holiday-specials__final-cta-section {
    padding: 40px 0;
  }
  .page-promotions-holiday-specials__hero-title {
    font-size: 1.8em;
  }
  .page-promotions-holiday-specials__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions-holiday-specials__btn {
    width: 90%;
    padding: 12px 25px;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 1.5em;
  }
  .page-promotions-holiday-specials__promo-card-title {
    font-size: 1.5em;
  }
  .page-promotions-holiday-specials__step-title {
    font-size: 1.4em;
  }
  .page-promotions-holiday-specials__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-holiday-specials__faq-answer.active {
    padding: 15px 20px;
  }
}