/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray for general text */
  background-color: #0f1a27; /* Slightly lighter dark blue for main background */
  line-height: 1.6;
}

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

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

.page-promotions__section:nth-child(even) {
  background-color: #1a2e44; /* Main dark blue for alternating sections */
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for titles */
  margin-bottom: 30px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.page-promotions__sub-section-title {
  font-size: 2em;
  color: #FFD700; /* Gold for sub-titles */
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promotions__title {
  font-size: 4em;
  color: #FFD700; /* Gold for main hero title */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
}

.page-promotions__subtitle {
  font-size: 1.4em;
  color: #ffffff; /* White for hero subtitle */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #cccccc; /* Lighter gray for paragraphs */
}

.page-promotions a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
}

.page-promotions a:hover {
  text-decoration: underline;
  color: #ffe066; /* Lighter gold on hover */
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #1A2E44 0%, #0a141f 100%); /* Dark blue gradient */
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  z-index: 10;
  position: relative;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%) brightness(50%);
    transform: scale(1.05);
}

.page-promotions__hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.page-promotions__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

.page-promotions__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2E44; /* Dark blue text on hover */
  transform: translateY(-3px);
}

/* Features Section */
.page-promotions__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__feature-item {
  background-color: #1a2e44; /* Main dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

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

.page-promotions__feature-item h3 {
  color: #FFD700; /* Gold */
  font-size: 1.6em;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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

/* Promo Grid */
.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__promo-card {
  background-color: #1a2e44; /* Main dark blue */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

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

.page-promotions__promo-card h3 {
  color: #FFD700; /* Gold */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-promotions__promo-card p {
  color: #cccccc;
  font-size: 1em;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn {
  margin-top: 20px;
  align-self: flex-start;
  background-color: #FFD700;
  color: #1A2E44;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

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

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

.page-promotions__list li {
  background-color: #1a2e44;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  color: #cccccc;
  font-size: 1.1em;
}

.page-promotions__list li strong {
  color: #FFD700;
}

/* How to Join Section */
.page-promotions__steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-promotions__steps li {
  background-color: #1a2e44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  counter-increment: step-counter;
}

.page-promotions__steps li::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 3em;
  color: rgba(255, 215, 0, 0.2);
  font-weight: bold;
  z-index: 0;
}

.page-promotions__steps li h4 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-promotions__steps li p {
  color: #cccccc;
  position: relative;
  z-index: 1;
}

.page-promotions__cta-banner {
    background-color: #1a2e44;
    border-radius: 10px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.page-promotions__cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    filter: blur(3px);
}

.page-promotions__cta-banner-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-promotions__cta-banner h3 {
    color: #FFD700;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.page-promotions__cta-banner p {
    color: #e0e0e0;
    font-size: 1.2em;
    margin-bottom: 25px;
}

.page-promotions__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

/* App Download Section */
.page-promotions__app-download {
  background-color: #0f1a27;
  padding: 80px 0;
}

.page-promotions__app-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-promotions__btn--download {
  background-color: #FFD700;
  color: #1A2E44;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-promotions__btn--download:hover {
  background-color: #e6c200;
}

.page-promotions__app-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.page-promotions__app-mockup {
  max-width: 400px;
  margin-top: 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsible Gaming */
.page-promotions__responsible-gaming p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Detail Pages */
.page-promotions__detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__detail-card {
  background-color: #1a2e44;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease;
}

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

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

.page-promotions__detail-card h3 a {
  color: #FFD700;
  text-decoration: none;
}

.page-promotions__detail-card h3 a:hover {
  text-decoration: underline;
  color: #ffe066;
}

.page-promotions__detail-card p {
  color: #cccccc;
  font-size: 1em;
  flex-grow: 1;
}

.page-promotions__btn--detail {
  margin-top: 20px;
  align-self: flex-start;
  background-color: #FFD700;
  color: #1A2E44;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

.page-promotions__btn--detail:hover {
  background-color: #e6c200;
}

/* Final CTA */
.page-promotions__final-cta {
    background: linear-gradient(135deg, #FFD700 0%, #e6c200 100%); /* Gold gradient */
    padding: 80px 20px;
    color: #1A2E44; /* Dark blue text */
}

.page-promotions__final-cta-content h2 {
    color: #1A2E44; /* Dark blue title */
}

.page-promotions__final-cta-content p {
    color: #1A2E44; /* Dark blue text */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-promotions__btn--primary.page-promotions__btn--large {
    background-color: #1A2E44; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #1A2E44;
}

.page-promotions__btn--primary.page-promotions__btn--large:hover {
    background-color: #0a141f;
    color: #ffe066;
    border-color: #0a141f;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__title {
    font-size: 3em;
  }
  .page-promotions__subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__cta-banner {
      flex-direction: column;
      text-align: center;
  }
  .page-promotions__cta-banner-content {
      max-width: 100%;
  }
  .page-promotions__app-mockup {
      max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 15px;
  }
  .page-promotions__title {
    font-size: 2.5em;
  }
  .page-promotions__subtitle {
    font-size: 1em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__features, .page-promotions__promo-grid, .page-promotions__steps, .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 80%;
    max-width: 300px;
  }
  .page-promotions__steps li::before {
    font-size: 2.5em;
  }
  .page-promotions__cta-banner h3 {
      font-size: 1.8em;
  }
  .page-promotions__cta-banner p {
      font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__title {
    font-size: 2em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promotions__app-buttons {
      flex-direction: column;
      align-items: center;
  }
}