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

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

.page-promotions__section {
  padding: 60px 0;
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__section-subtitle {
  font-size: 1.2em;
  color: #B0B0B0;
  text-align: center;
  margin-bottom: 50px;
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #0A2C4A 0%, #001f3f 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-promotions__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.page-promotions__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2C4A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Overview Section */
.page-promotions__overview {
  background-color: #0F375B;
}

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

.page-promotions__feature-card {
  background-color: #1A4A7A;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__feature-card:hover {
  transform: translateY(-10px);
}

.page-promotions__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.6));
}

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

.page-promotions__card-text {
  font-size: 1em;
  color: #B0B0B0;
}

/* Featured Promotions Section */
.page-promotions__featured-promos {
  background-color: #0A2C4A;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-promotions__promo-card {
  background-color: #1A4A7A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-promotions__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-content .page-promotions__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__promo-content .page-promotions__card-text {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-promotions__promo-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2C4A;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Pushes button to the bottom */
}

.page-promotions__promo-button:hover {
  background-color: #e6c200;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: #0F375B;
  color: #E0E0E0;
}

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

.page-promotions__steps-list li {
  background-color: #1A4A7A;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  position: relative;
  counter-increment: step-counter;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A2C4A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
}

.page-promotions__list-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-left: 40px;
  margin-bottom: 10px;
}

.page-promotions__steps-list li p {
  margin-left: 40px;
  color: #C0C0C0;
}

.page-promotions__cta-button {
  display: block;
  width: fit-content;
  margin: 50px auto 0;
  background-color: #FFD700;
  color: #0A2C4A;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

/* Detail Pages Section */
.page-promotions__detail-pages {
  background-color: #0A2C4A;
}

.page-promotions__detail-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.page-promotions__detail-item {
  background-color: #1A4A7A;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 450px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__detail-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__detail-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-promotions__detail-description {
  font-size: 1em;
  color: #C0C0C0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__detail-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2C4A;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__detail-button:hover {
  background-color: #e6c200;
}

/* Responsible Gaming Section */
.page-promotions__responsible-gaming {
  background-color: #0F375B;
  text-align: center;
}

.page-promotions__responsible-button {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__responsible-button:hover {
  background-color: #FFD700;
  color: #0A2C4A;
}

/* Final CTA Section */
.page-promotions__cta-final {
  background: linear-gradient(135deg, #FFD700, #e6c200);
  padding: 80px 0;
  text-align: center;
  color: #0A2C4A;
}

.page-promotions__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #0A2C4A;
  text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.page-promotions__cta-description {
  font-size: 1.5em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333;
}

.page-promotions__cta-button--large {
  background-color: #0A2C4A;
  color: #FFD700;
  padding: 20px 50px;
  font-size: 1.5em;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--large:hover {
  background-color: #001f3f;
  color: #FFD700;
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__hero-description {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps-list li::before {
    left: 10px;
    top: 20px;
    transform: translateY(0);
  }
  .page-promotions__list-title, .page-promotions__steps-list li p {
    margin-left: 80px;
  }
  .page-promotions__cta-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-description {
    font-size: 1.2em;
  }
  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.9em;
  }
  .page-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__promo-content {
    padding: 20px;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}