/* style/promotions.css */
.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #f5e6d0; /* Light text for dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  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: #FFD700;
  border-radius: 2px;
}

.page-promotions__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 60px;
  color: #c0c0c0;
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #30475E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('[GALLERY:bg:hi88,abstract,geometric,gold_lines]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

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

.page-promotions__hero-title {
  font-size: 3.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

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

.page-promotions__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #f5e6d0;
  border: 2px solid #f5e6d0;
}

.page-promotions__btn--outline:hover {
  background-color: #f5e6d0;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 230, 208, 0.3);
}

.page-promotions__why-choose-section,
.page-promotions__offers-list-section,
.page-promotions__how-to-claim-section,
.page-promotions__tips-section,
.page-promotions__responsible-gambling-section,
.page-promotions__conclusion-section {
  padding: 80px 0;
}

.page-promotions__why-choose-section {
  background-color: #1a2a40;
}

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

.page-promotions__feature-item {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  color: #c0c0c0;
  font-size: 1em;
}

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

.page-promotions__offer-card {
  background-color: #1a2a40;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__offer-card h3,
.page-promotions__offer-card p,
.page-promotions__offer-card a {
  padding: 0 25px;
}

.page-promotions__offer-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 10px;
}

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

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

.page-promotions__offer-description {
  color: #c0c0c0;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__offer-card .page-promotions__btn--secondary {
  margin: 0 25px 25px;
  text-align: center;
  align-self: flex-start;
}

.page-promotions__how-to-claim-section {
  background-color: #0A192F;
}

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

.page-promotions__step-item {
  background-color: #1a2a40;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: -60px auto 20px;
  box-shadow: 0 0 0 5px #0A192F, 0 5px 15px rgba(255, 215, 0, 0.5);
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  color: #c0c0c0;
  font-size: 1em;
}

.page-promotions__step-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__step-text a:hover {
  color: #e6c200;
}

.page-promotions__step-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
  margin-top: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__tips-section {
  background-color: #1a2a40;
}

.page-promotions__tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
}

.page-promotions__tips-list li {
  background-color: #0A192F;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__tips-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__tips-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__tips-list p {
  color: #c0c0c0;
}

.page-promotions__responsible-gambling-section {
  background-color: #0A192F;
  text-align: center;
}

.page-promotions__responsible-gambling-section .page-promotions__section-text {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #c0c0c0;
  font-size: 1.1em;
}

.page-promotions__conclusion-section {
  background-color: #1a2a40;
  text-align: center;
  padding-bottom: 100px;
}

.page-promotions__conclusion-section .page-promotions__section-text {
  max-width: 900px;
  margin: 0 auto 40px;
  color: #c0c0c0;
  font-size: 1.1em;
}

.page-promotions__conclusion-section .page-promotions__section-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__conclusion-section .page-promotions__section-text a:hover {
  color: #e6c200;
}

.page-promotions__cta-final {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Floating CTA Button */
.page-promotions__floating-cta {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
}

.page-promotions__floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFD700;
  color: #0A192F;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.page-promotions__floating-btn:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions__floating-icon {
  width: 24px;
  height: 24px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%) contrast(100%); /* Make icon dark */
}

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

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 80px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.1em;
  }
  .page-promotions__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__why-choose-section,
  .page-promotions__offers-list-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__tips-section,
  .page-promotions__responsible-gambling-section,
  .page-promotions__conclusion-section {
    padding: 60px 0;
  }
  .page-promotions__grid-features,
  .page-promotions__offer-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__step-number {
    margin-top: -50px;
  }
  .page-promotions__cta-final {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-promotions__floating-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promotions__floating-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__section-description {
    font-size: 0.9em;
  }
  .page-promotions__feature-title,
  .page-promotions__offer-title,
  .page-promotions__step-title,
  .page-promotions__tips-title {
    font-size: 1.2em;
  }
  .page-promotions__feature-text,
  .page-promotions__offer-description,
  .page-promotions__step-text,
  .page-promotions__tips-list p,
  .page-promotions__responsible-gambling-section .page-promotions__section-text,
  .page-promotions__conclusion-section .page-promotions__section-text {
    font-size: 0.9em;
  }
}