.page-index-latest-promotions-overview {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0E1A2B; /* A slightly lighter dark blue for overall background */
}

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

.page-index-latest-promotions-overview .hero-section {
  background: linear-gradient(135deg, #1A2E44, #0E1A2B);
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #FFD700;
}

.page-index-latest-promotions-overview .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-overview .hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0E0E0;
}

.page-index-latest-promotions-overview .section-title {
  font-size: 2.5em;
  text-align: center;
  color: #FFD700; /* Gold for section titles */
  margin-bottom: 20px;
  padding-top: 40px;
  position: relative;
}

.page-index-latest-promotions-overview .section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-index-latest-promotions-overview .highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-index-latest-promotions-overview .btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-index-latest-promotions-overview .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text on gold */
}

.page-index-latest-promotions-overview .btn-primary:hover {
  background-color: #E6C200;
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview .btn-secondary {
  background-color: #1A2E44; /* Dark blue button */
  color: #FFD700; /* Gold text on dark blue */
  border: 2px solid #FFD700;
}

.page-index-latest-promotions-overview .btn-secondary:hover {
  background-color: #2F4F6F;
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview .btn-outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin: 0 10px;
}

.page-index-latest-promotions-overview .btn-outline:hover {
  background-color: #FFD700;
  color: #1A2E44;
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview .promotions-intro, 
.page-index-latest-promotions-overview .promotion-categories, 
.page-index-latest-promotions-overview .how-to-claim, 
.page-index-latest-promotions-overview .responsible-gaming, 
.page-index-latest-promotions-overview .faq-section, 
.page-index-latest-promotions-overview .cta-final {
  padding: 60px 0;
  background-color: #1A2E44; /* Primary dark blue for sections */
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview .promotions-intro {
  background-color: #0E1A2B;
}

.page-index-latest-promotions-overview .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: center;
}

.page-index-latest-promotions-overview .feature-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview .feature-item:hover {
  transform: translateY(-5px);
}

.page-index-latest-promotions-overview .feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview .feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview .feature-item p {
  color: #CCCCCC;
}

.page-index-latest-promotions-overview .category-card {
  display: flex;
  flex-direction: column;
  background-color: #0E1A2B; /* Darker background for cards */
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.page-index-latest-promotions-overview .category-card:hover {
  transform: translateY(-8px);
}

.page-index-latest-promotions-overview .category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.page-index-latest-promotions-overview .card-content {
  padding: 30px;
}

.page-index-latest-promotions-overview .card-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-latest-promotions-overview .card-content p {
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview .card-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview .card-content ul li {
  background-color: #2F4F6F; /* A medium blue for list items */
  margin-bottom: 8px;
  padding: 10px 15px;
  border-radius: 5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.page-index-latest-promotions-overview .card-content ul li::before {
  content: '✔';
  color: #FFD700;
  margin-right: 10px;
  font-weight: bold;
}

.page-index-latest-promotions-overview .how-to-claim .steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-latest-promotions-overview .step-item {
  background-color: #0E1A2B;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview .step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  border-radius: 50%;
  background-color: #1A2E44;
  border: 3px solid #FFD700;
}

.page-index-latest-promotions-overview .step-item h3 {
  color: #FFD700;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview .step-item p {
  color: #CCCCCC;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview .text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-overview .text-link:hover {
  text-decoration: underline;
}

.page-index-latest-promotions-overview .responsible-gaming ul {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
}

.page-index-latest-promotions-overview .responsible-gaming ul li {
  background-color: #2F4F6F;
  margin-bottom: 10px;
  padding: 12px 20px;
  border-radius: 5px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
}

.page-index-latest-promotions-overview .responsible-gaming ul li::before {
  content: '⚠️';
  margin-right: 10px;
}

.page-index-latest-promotions-overview .faq-item {
  background-color: #0E1A2B;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview .faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview .faq-item p {
  color: #E0E0E0;
}

.page-index-latest-promotions-overview .cta-final {
  text-align: center;
  background-color: #0E1A2B;
}

.page-index-latest-promotions-overview .cta-final .btn {
  margin: 20px 15px;
}

@media (min-width: 768px) {
  .page-index-latest-promotions-overview .category-card {
    flex-direction: row;
  }
  .page-index-latest-promotions-overview .category-card:nth-child(even) {
    flex-direction: row-reverse;
  }
  .page-index-latest-promotions-overview .category-image {
    width: 40%;
    height: auto;
  }
  .page-index-latest-promotions-overview .card-content {
    width: 60%;
  }
}

@media (max-width: 767px) {
  .page-index-latest-promotions-overview .hero-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions-overview .hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions-overview .section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-overview .section-description {
    font-size: 0.9em;
  }
  .page-index-latest-promotions-overview .btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-index-latest-promotions-overview .cta-final .btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
  }
}