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

.page-index-latest-promotions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-index-latest-promotions .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-index-latest-promotions .btn-primary {
  background-color: #007bff;
  color: #ffffff;
}

.page-index-latest-promotions .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-index-latest-promotions .btn-secondary {
  background-color: #28a745;
  color: #ffffff;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-index-latest-promotions .btn-secondary:hover {
  background-color: #1e7e34;
  transform: translateY(-1px);
}

.page-index-latest-promotions .hero-section {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions .hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-index-latest-promotions .hero-section .container {
  position: relative;
  z-index: 2;
}

.page-index-latest-promotions .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-index-latest-promotions .hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-index-latest-promotions .hero-cta {
  font-size: 1.2em;
  padding: 15px 35px;
  border-radius: 50px;
}

.page-index-latest-promotions .section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

.page-index-latest-promotions .section-description {
  font-size: 1.1em;
  color: #495057;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-index-latest-promotions .promotions-overview-section, 
.page-index-latest-promotions .promotion-categories-section, 
.page-index-latest-promotions .how-to-claim-section, 
.page-index-latest-promotions .responsible-gambling-section, 
.page-index-latest-promotions .faq-section, 
.page-index-latest-promotions .final-cta-section {
  padding: 80px 0;
}

.page-index-latest-promotions .promotions-overview-section {
  background-color: #ffffff;
}

.page-index-latest-promotions .feature-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.page-index-latest-promotions .feature-list li {
  background-color: #e9f7ef;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #28a745;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions .feature-list li .icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #007bff;
}

.page-index-latest-promotions .image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-index-latest-promotions .image-wrapper .img-fluid {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions .promotion-categories-section {
  background-color: #f1f8ff;
}

.page-index-latest-promotions .category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-latest-promotions .category-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-latest-promotions .category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-index-latest-promotions .card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-latest-promotions .card-text {
  color: #495057;
  margin-bottom: 25px;
  font-size: 1em;
}

.page-index-latest-promotions .how-to-claim-section {
  background-color: #ffffff;
}

.page-index-latest-promotions .steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 800px;
  margin: 50px auto;
}

.page-index-latest-promotions .steps-list li {
  counter-increment: step-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.15em;
  color: #212529;
}

.page-index-latest-promotions .steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #007bff;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions .call-to-action-text {
  text-align: center;
  font-style: italic;
  color: #6c757d;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-index-latest-promotions .cta-bottom {
  margin-top: 50px;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.2em;
  padding: 15px 40px;
  border-radius: 50px;
}

.page-index-latest-promotions .responsible-gambling-section {
  background-color: #e9f7ef;
}

.page-index-latest-promotions .responsible-tips-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
  background-color: #ffffff;
  border-left: 5px solid #28a745;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.07);
}

.page-index-latest-promotions .responsible-tips-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #212529;
}

.page-index-latest-promotions .responsible-tips-list li:last-child {
  margin-bottom: 0;
}

.page-index-latest-promotions .responsible-message {
  text-align: center;
  font-weight: bold;
  color: #28a745;
  margin-top: 30px;
  font-size: 1.2em;
}

.page-index-latest-promotions .faq-section {
  background-color: #ffffff;
}

.page-index-latest-promotions .faq-item {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-index-latest-promotions .faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions .faq-question {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-latest-promotions .faq-answer {
  color: #495057;
  font-size: 1em;
}

.page-index-latest-promotions .final-cta-section {
  background: linear-gradient(90deg, #007bff, #28a745);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-index-latest-promotions .final-cta-section .section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-index-latest-promotions .final-cta-section .section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-index-latest-promotions .final-cta {
  font-size: 1.4em;
  padding: 18px 45px;
  border-radius: 50px;
  background-color: #ff8400; /* Contrast color for emphasis */
  color: #ffffff;
}

.page-index-latest-promotions .final-cta:hover {
  background-color: #cc6a00;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.8em;
  }
  .page-index-latest-promotions .hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions .section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions .hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions .hero-subtitle {
    font-size: 1em;
  }
  .page-index-latest-promotions .hero-cta {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-index-latest-promotions .promotions-overview-section, 
  .page-index-latest-promotions .promotion-categories-section, 
  .page-index-latest-promotions .how-to-claim-section, 
  .page-index-latest-promotions .responsible-gambling-section, 
  .page-index-latest-promotions .faq-section, 
  .page-index-latest-promotions .final-cta-section {
    padding: 60px 0;
  }
  .page-index-latest-promotions .feature-list {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions .steps-list li {
    font-size: 1em;
    padding-left: 50px;
  }
  .page-index-latest-promotions .steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }
}

@media (max-width: 576px) {
  .page-index-latest-promotions .hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions .section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions .category-card {
    padding: 20px;
  }
  .page-index-latest-promotions .card-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions .faq-question {
    font-size: 1.2em;
  }
  .page-index-latest-promotions .final-cta {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}