.page-promotions {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --bg-dark: #212529;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-promotions__hero {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: var(--text-light);
  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,pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

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

.page-promotions__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.page-promotions__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn--primary:hover {
  background-color: #e6b300;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 25px;
}

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

.page-promotions__btn--outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
  margin-left: 20px;
}

.page-promotions__btn--outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
}

.page-promotions__btn--link {
  background: none;
  border: none;
  color: var(--primary-color);
  padding: 0;
  font-weight: bold;
  text-decoration: underline;
  font-size: 1em;
}

.page-promotions__btn--link:hover {
  color: #0056b3;
}

.page-promotions__section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-promotions__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-dark);
}

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

.page-promotions__card {
  background-color: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-promotions__card-img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__how-to-join .page-promotions__section-description {
  margin-bottom: 40px;
}

.page-promotions__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions__step-item {
  background-color: var(--text-light);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__step-icon {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-text {
  font-size: 0.95em;
  color: var(--text-dark);
}

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

.page-promotions__terms-conditions .page-promotions__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: var(--text-dark);
  line-height: 1.8;
}

.page-promotions__terms-conditions .page-promotions__paragraph:last-child {
  margin-bottom: 0;
}

.page-promotions__detailed-promotions {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-promotions__detailed-promotions .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__detailed-promotions .page-promotions__section-description {
  color: #cccccc;
}

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

.page-promotions__detail-item {
  background-color: #343a40;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promotions__detail-item:hover {
  transform: translateY(-5px);
  background-color: #495057;
}

.page-promotions__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__detail-title a {
  color: var(--secondary-color);
  text-decoration: none;
}

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

.page-promotions__detail-description {
  font-size: 0.95em;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-promotions .text-highlight {
  color: var(--secondary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }

  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }

  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__card-title {
    font-size: 1.5em;
  }

  .page-promotions__steps {
    grid-template-columns: 1fr 1fr;
  }

  .page-promotions__detail-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero {
    padding: 80px 0;
  }

  .page-promotions__hero-title {
    font-size: 2.2em;
  }

  .page-promotions__hero-subtitle {
    font-size: 1em;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__grid, .page-promotions__steps, .page-promotions__detail-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__btn--outline {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-promotions__cta-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__card-title {
    font-size: 1.3em;
  }
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__detail-title {
    font-size: 1.2em;
  }
  .page-promotions__btn {
    padding: 12px 20px;
    font-size: 0.95em;
  }
}