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

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

.page-promotions-holiday-specials__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #1A3A6D 50%, #0A2342 100%);
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap-reverse;
  text-align: center;
}

@media (min-width: 768px) {
  .page-promotions-holiday-specials__hero-section {
    text-align: left;
    flex-wrap: nowrap;
    padding: 100px 0;
  }
  .page-promotions-holiday-specials__hero-content {
    max-width: 50%;
  }
}

.page-promotions-holiday-specials__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E6B325;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-specials__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-holiday-specials__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .page-promotions-holiday-specials__hero-actions {
    justify-content: flex-start;
  }
}

.page-promotions-holiday-specials__hero-image-wrapper {
  max-width: 400px;
  flex-shrink: 0;
}

.page-promotions-holiday-specials__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-holiday-specials__btn--primary {
  background-color: #E6B325;
  color: #0A2342;
}

.page-promotions-holiday-specials__btn--primary:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 179, 37, 0.4);
}

.page-promotions-holiday-specials__btn--secondary {
  background-color: transparent;
  color: #E6B325;
  border: 2px solid #E6B325;
}

.page-promotions-holiday-specials__btn--secondary:hover {
  background-color: #E6B325;
  color: #0A2342;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 179, 37, 0.4);
}

.page-promotions-holiday-specials__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 25px;
}

.page-promotions-holiday-specials__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-promotions-holiday-specials__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-holiday-specials__section:nth-of-type(even) {
  background-color: #F8F9FA;
}

.page-promotions-holiday-specials__section-title {
  font-size: 2.5em;
  color: #0A2342;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-promotions-holiday-specials__section-description {
  font-size: 1.1em;
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

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

.page-promotions-holiday-specials__feature-item,
.page-promotions-holiday-specials__promotion-item,
.page-promotions-holiday-specials__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-holiday-specials__feature-item:hover,
.page-promotions-holiday-specials__promotion-item:hover,
.page-promotions-holiday-specials__step-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.2));
}

.page-promotions-holiday-specials__feature-title,
.page-promotions-holiday-specials__promotion-title,
.page-promotions-holiday-specials__step-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-promotions-holiday-specials__feature-text,
.page-promotions-holiday-specials__promotion-text,
.page-promotions-holiday-specials__step-text {
  color: #555555;
}

.page-promotions-holiday-specials__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-holiday-specials__step-number {
  width: 50px;
  height: 50px;
  background-color: #E6B325;
  color: #0A2342;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(230, 179, 37, 0.3);
}

.page-promotions-holiday-specials__tips {
  background-color: #0A2342;
  color: #FFFFFF;
}

.page-promotions-holiday-specials__tips .page-promotions-holiday-specials__section-title {
  color: #E6B325;
}

.page-promotions-holiday-specials__tips .page-promotions-holiday-specials__section-description {
  color: #DDDDDD;
}

.page-promotions-holiday-specials__tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions-holiday-specials__tip-list li {
  background-color: #1A3A6D;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-holiday-specials__tip-list li strong {
  color: #E6B325;
  font-size: 1.1em;
}

.page-promotions-holiday-specials__tip-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  filter: brightness(1.2);
}

.page-promotions-holiday-specials__responsible-gambling-image {
  max-width: 700px;
  width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-holiday-specials__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #EEEEEE;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: left;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-holiday-specials__faq-question {
  font-size: 1.2em;
  color: #0A2342;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-holiday-specials__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  color: #E6B325;
  transition: transform 0.3s ease;
}

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

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

.page-promotions-holiday-specials__faq-answer.active {
  max-height: 200px; /* Adjust based on content */
  padding: 10px;
}

.page-promotions-holiday-specials__app-download {
  background-color: #F0F2F5;
}

.page-promotions-holiday-specials__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-promotions-holiday-specials__app-content {
    text-align: left;
    justify-content: space-between;
  }
  .page-promotions-holiday-specials__app-text-content {
    flex: 1;
    max-width: 50%;
  }
}

.page-promotions-holiday-specials__app-image-wrapper {
  flex-shrink: 0;
  max-width: 300px;
}

.page-promotions-holiday-specials__app-image {
  width: 100%;
  height: auto;
}

.page-promotions-holiday-specials__cta {
  background-color: #0A2342;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-promotions-holiday-specials__cta-title {
  color: #E6B325;
  font-size: 3em;
  margin-bottom: 20px;
}

.page-promotions-holiday-specials__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-holiday-specials__hero-title {
    font-size: 3em;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions-holiday-specials__hero-section {
    padding: 60px 20px;
  }
  .page-promotions-holiday-specials__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-holiday-specials__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions-holiday-specials__section {
    padding: 40px 0;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 2em;
  }
  .page-promotions-holiday-specials__section-description {
    font-size: 1em;
  }
  .page-promotions-holiday-specials__features-grid,
  .page-promotions-holiday-specials__promotion-list,
  .page-promotions-holiday-specials__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions-holiday-specials__tip-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions-holiday-specials__tip-icon {
    margin-bottom: 10px;
  }
  .page-promotions-holiday-specials__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions-holiday-specials__hero-title {
    font-size: 2em;
  }
  .page-promotions-holiday-specials__btn {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promotions-holiday-specials__section-title {
    font-size: 1.8em;
  }
  .page-promotions-holiday-specials__cta-title {
    font-size: 1.8em;
  }
}