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

.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-of-type(even) {
  background-color: #ebebeb;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #004AAD;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero {
  background: linear-gradient(135deg, #004AAD 0%, #002c6b 100%); /* Deeper blue gradient */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
}

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

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

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #004AAD;
}

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

.page-promotions__btn--secondary {
  background-color: #004AAD;
  color: #fff;
  border: 1px solid #004AAD;
}

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

.page-promotions__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-promotions__btn--large {
  padding: 20px 40px;
  font-size: 1.2em;
}

.page-promotions__btn--center {
  margin: 20px auto 0 auto;
  display: block;
  max-width: 300px;
}

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

.page-promotions__intro-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__intro-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__intro-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-promotions__intro-heading {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-promotions__promotion-list {
  background-color: #f5f5f5;
}

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

.page-promotions__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-promotions__promo-title {
  font-size: 1.6em;
  color: #004AAD;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-promotions__promo-title a {
  text-decoration: none;
  color: #004AAD;
}

.page-promotions__promo-title a:hover {
  color: #FFD700;
}

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

.page-promotions__promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

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

.page-promotions__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-promotions__step-number {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #FFD700;
  color: #004AAD;
  font-size: 1.8em;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-heading {
  font-size: 1.5em;
  color: #004AAD;
  margin-bottom: 15px;
}

.page-promotions__full-guide-link {
  margin-top: 40px;
}

.page-promotions__terms {
  background-color: #fff;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__terms-list li {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.page-promotions__terms-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-promotions__terms-heading {
  font-size: 1.4em;
  color: #004AAD;
  margin-bottom: 10px;
}

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

.page-promotions__tip-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__tip-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__tip-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-promotions__tip-heading {
  font-size: 1.4em;
  color: #004AAD;
  margin-bottom: 10px;
}

.page-promotions__responsible-gambling {
  background-color: #004AAD;
  color: #fff;
}

.page-promotions__responsible-gambling .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__responsible-gambling .page-promotions__section-description {
  color: #e0e0e0;
}

.page-promotions__responsible-gambling .page-promotions__btn--secondary {
  background-color: #FFD700;
  color: #004AAD;
  border-color: #FFD700;
}

.page-promotions__responsible-gambling .page-promotions__btn--secondary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__faq {
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #004AAD;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
}

.page-promotions__faq-question.active::after {
  content: '-';
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-promotions__faq-question.active + .page-promotions__faq-answer {
  display: block;
}

.page-promotions__call-to-action {
  background-color: #004AAD;
  color: #fff;
  padding: 80px 0;
}

.page-promotions__call-to-action .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__call-to-action .page-promotions__section-description {
  color: #e0e0e0;
}

.page-promotions__floating-promo-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: none; /* Hidden by default, shown by JS */
}

.page-promotions__btn--floating {
  background-color: #FFD700;
  color: #004AAD;
  border-radius: 50px;
  padding: 12px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  text-transform: uppercase;
}

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

.page-promotions__btn--floating img {
  width: 24px;
  height: 24px;
  filter: invert(10%) sepia(90%) saturate(1000%) hue-rotate(200deg) brightness(80%); /* To make icon dark blue */
}

.text-highlight {
  color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__intro-item, .page-promotions__tip-item {
    padding: 25px;
  }
  .page-promotions__promo-card {
    margin-bottom: 20px;
  }
  .page-promotions__promo-actions {
    flex-direction: column;
  }
  .page-promotions__btn {
    width: 100%;
    box-sizing: border-box;
  }
  .page-promotions__btn--floating {
    padding: 10px 20px;
    font-size: 1em;
    gap: 8px;
  }
  .page-promotions__btn--floating img {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-subtitle {
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__intro-heading, .page-promotions__step-heading, .page-promotions__terms-heading, .page-promotions__tip-heading, .page-promotions__faq-question {
    font-size: 1.2em;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__floating-promo-btn {
    bottom: 15px;
    right: 15px;
  }
}