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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  animation: page-promotions-rotate 20s linear infinite;
  z-index: 0;
}

@keyframes page-promotions-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Wealth Gold for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-promotions__intro-section, .page-promotions__featured-offers, .page-promotions__how-to-claim, .page-promotions__faq-section, .page-promotions__final-cta {
  padding: 60px 0;
}

.page-promotions__intro-section {
  background-color: #f8f8f8;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555;
}

.page-promotions__intro-content p {
  font-size: 1.1em;
  text-align: justify;
  margin-bottom: 15px;
  color: #444;
}

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

.page-promotions__offer-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 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;
  justify-content: space-between;
}

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

.page-promotions__offer-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-promotions__offer-card-title {
  font-size: 1.5em;
  color: #003366;
  margin: 20px 15px 10px;
}

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

.page-promotions__offer-card-title a:hover {
  color: #FFCC00;
}

.page-promotions__offer-card-desc {
  font-size: 1em;
  color: #666;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFCC00; /* Wealth Gold */
  color: #003366; /* Gambling Blue */
  box-shadow: 0 4px 10px rgba(255, 204, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #003366; /* Gambling Blue */
  color: #FFCC00; /* Wealth Gold */
  border: 2px solid #FFCC00;
}

.page-promotions__btn--secondary:hover {
  background-color: #002244;
  transform: translateY(-2px);
}

.page-promotions__btn--small {
  padding: 8px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-promotions__btn--small:hover {
  background-color: #FFCC00;
  color: #003366;
  border-color: #003366;
}

.page-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

.page-promotions__btn--large:hover {
  background-color: #e6b800;
  transform: translateY(-3px);
}

.page-promotions__btn--outline {
  padding: 15px 35px;
  font-size: 1.2em;
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-promotions__btn--outline:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-3px);
}

.page-promotions__how-to-claim {
  background-color: #f0f4f8;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__steps-list li {
  background-color: #ffffff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  counter-increment: step-counter;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFCC00;
  color: #003366;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid #003366;
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 10px;
  padding-left: 40px; /* Space for the counter */
}

.page-promotions__steps-list p {
  font-size: 1.1em;
  color: #555;
  padding-left: 40px;
}

.page-promotions__steps-list p a {
  color: #003366;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__steps-list p a:hover {
  color: #FFCC00;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__faq-section {
  background-color: #ffffff;
}

.page-promotions__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-promotions__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions__faq-question {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #666;
}

.page-promotions__final-cta {
  background: linear-gradient(135deg, #003366, #336699);
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #FFCC00;
  margin-bottom: 25px;
}

.page-promotions__final-cta .page-promotions__section-title::after {
  background-color: #FFCC00;
}

.page-promotions__final-cta .page-promotions__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-promotions__final-cta .page-promotions__btn--large,
.page-promotions__final-cta .page-promotions__btn--outline {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__steps-list li::before {
    left: 0;
    transform: translateY(-50%) translateX(-50%);
  }
  .page-promotions__step-title, .page-promotions__steps-list p {
    padding-left: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn--large, .page-promotions__btn--outline {
    width: 80%;
    margin: 10px auto;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__offer-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps-list li::before {
    position: static;
    transform: none;
    margin-bottom: 15px;
    display: inline-flex;
    margin-right: 15px;
    vertical-align: middle;
  }
  .page-promotions__step-title {
    padding-left: 0;
    display: inline;
    vertical-align: middle;
  }
  .page-promotions__steps-list p {
    padding-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__faq-question {
    font-size: 1.2em;
  }
}