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

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

.page-promotions h1,
.page-promotions h2,
.page-promotions h3,
.page-promotions h4 {
  color: #0A6847;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions h1 {
  font-size: 2.8em;
  text-align: center;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-promotions h3 {
  font-size: 1.6em;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-promotions h3 a {
  color: #0A6847;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions h3 a:hover {
  color: #FFD700;
}

.page-promotions p {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #0A6847;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn--secondary {
  background-color: #0A6847;
  color: #ffffff;
  border: 2px solid #0A6847;
}

.page-promotions__btn--secondary:hover {
  background-color: #074a33;
  border-color: #074a33;
  transform: translateY(-1px);
}

/* Hero Section */
.page-promotions__hero {
  background: linear-gradient(135deg, #0A6847 0%, #074a33 100%);
  padding: 80px 0;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promotions__hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

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

.page-promotions__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Intro Section */
.page-promotions__intro {
  padding: 60px 0;
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.page-promotions__intro h2 {
  color: #0A6847;
}

/* Categories Section */
.page-promotions__categories {
  padding: 60px 0;
  background-color: #f4f4f4;
}

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

.page-promotions__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  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(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #0A6847;
}

.page-promotions__card p {
  font-size: 0.95em;
  color: #555;
  flex-grow: 1;
}

.page-promotions__card .page-promotions__btn {
  margin-top: 20px;
  align-self: center;
}

/* Featured CTA Section */
.page-promotions__featured-cta {
  padding: 60px 0;
  background-color: #ffffff;
  text-align: center;
}

.page-promotions__featured-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-promotions__featured-card {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  max-width: 450px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.page-promotions__featured-card:hover {
  transform: translateY(-3px);
}

.page-promotions__featured-card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__featured-card h4 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions__featured-card p {
  color: #666;
  margin-bottom: 25px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  padding: 60px 0;
  background-color: #f4f4f4;
}

.page-promotions__steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__steps li {
  background-color: #ffffff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  position: relative;
}

.page-promotions__steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #FFD700;
  color: #0A6847;
  font-size: 1.8em;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #0A6847;
  font-size: 1.5em;
}

.page-promotions__steps li p {
  margin-bottom: 0;
  color: #555;
}

.page-promotions__steps li p a {
  color: #0A6847;
  text-decoration: underline;
}

.page-promotions__steps li p a:hover {
  color: #FFD700;
}

/* Responsible Gambling Section */
.page-promotions__responsible-gambling {
  padding: 60px 0;
  background-color: #e6f7ed;
  border-top: 5px solid #0A6847;
  text-align: center;
}

.page-promotions__responsible-gambling h2 {
  color: #0A6847;
}

.page-promotions__responsible-gambling p {
  max-width: 800px;
  margin: 0 auto 15px auto;
  color: #444;
}

/* FAQ Section */
.page-promotions__faq {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-promotions__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__accordion-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__accordion-header {
  background-color: #0A6847;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
  background-color: #074a33;
}

.page-promotions__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__accordion-content {
  padding: 0 25px;
  background-color: #fdfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px;
}

.page-promotions__accordion-content p {
  margin-bottom: 10px;
  color: #555;
}

/* Final CTA Section */
.page-promotions__final-cta {
  padding: 80px 0;
  background: linear-gradient(90deg, #0A6847, #FFD700);
  color: #fff;
  text-align: center;
}

.page-promotions__final-cta h2 {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.page-promotions__final-cta p {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions h1 {
    font-size: 2.4em;
  }
  .page-promotions h2 {
    font-size: 1.8em;
  }
  .page-promotions h3 {
    font-size: 1.3em;
  }
  .page-promotions__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__hero {
    padding: 60px 0;
  }
  .page-promotions__hero-content p {
    font-size: 1.1em;
  }
  .page-promotions__featured-grid {
    flex-direction: column;
    align-items: center;
  }
  .page-promotions__featured-card {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .page-promotions h1 {
    font-size: 2em;
  }
  .page-promotions h2 {
    font-size: 1.6em;
  }
  .page-promotions__hero {
    padding: 40px 0;
    min-height: 350px;
  }
  .page-promotions__hero-content p {
    font-size: 1em;
  }
  .page-promotions__steps li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-promotions__steps li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .page-promotions__steps li h3 {
    text-align: center;
  }
  .page-promotions__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__accordion-content {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-promotions h1 {
    font-size: 1.8em;
  }
  .page-promotions h2 {
    font-size: 1.4em;
  }
  .page-promotions__card img,
  .page-promotions__featured-card img {
    height: 150px;
  }
}