/* style/latest-promotions-free-spins.css */
.page-latest-promotions-free-spins {
  font-family: 'Arial', sans-serif;
  color: #003366; /* Main text color, dark blue */
  line-height: 1.6;
  background-color: #f8f8f8; /* Light background for readability */
}

.page-latest-promotions-free-spins__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-latest-promotions-free-spins__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-latest-promotions-free-spins__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 L 0 10" fill="none" stroke="%23002244" stroke-width="0.5"/></pattern><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
  opacity: 0.1;
  z-index: 0;
}

.page-latest-promotions-free-spins__hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.page-latest-promotions-free-spins__hero-image-wrapper {
  position: relative;
  z-index: 1;
  animation: floatImage 3s ease-in-out infinite;
}

.page-latest-promotions-free-spins__hero-image {
  max-width: 350px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

.page-latest-promotions-free-spins__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FFCC00; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-latest-promotions-free-spins__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-latest-promotions-free-spins__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text for contrast */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-latest-promotions-free-spins__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-latest-promotions-free-spins__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-latest-promotions-free-spins__section:last-of-type {
  border-bottom: none;
}

.page-latest-promotions-free-spins__section-title {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-latest-promotions-free-spins__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00;
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-latest-promotions-free-spins__text {
  font-size: 1.1em;
  color: #333333;
  margin-bottom: 20px;
  text-align: justify;
}

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

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

.page-latest-promotions-free-spins__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-latest-promotions-free-spins__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-latest-promotions-free-spins__item-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 10px;
}

.page-latest-promotions-free-spins__item-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-latest-promotions-free-spins__small-button {
  display: inline-block;
  background-color: #FFCC00;
  color: #003366;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-latest-promotions-free-spins__small-button:hover {
  background-color: #e6b800;
}

.page-latest-promotions-free-spins__offer-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-latest-promotions-free-spins__offer-card:hover {
  transform: translateY(-5px);
}

.page-latest-promotions-free-spins__offer-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-latest-promotions-free-spins__offer-details {
  padding: 30px;
  width: 60%;
}

.page-latest-promotions-free-spins__offer-title {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
}

.page-latest-promotions-free-spins__offer-description {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-latest-promotions-free-spins__offer-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-latest-promotions-free-spins__offer-list li {
  margin-bottom: 8px;
  color: #555555;
  font-size: 1em;
  position: relative;
  padding-left: 25px;
}

.page-latest-promotions-free-spins__offer-list li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-latest-promotions-free-spins__term-item {
  background-color: #e0eaf2; /* Lighter blue background */
  padding: 25px;
  border-radius: 10px;
  border-left: 5px solid #FFCC00; /* Gold accent */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-latest-promotions-free-spins__term-title {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-latest-promotions-free-spins__term-description {
  font-size: 0.95em;
  color: #333333;
}

.page-latest-promotions-free-spins__read-more {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #666666;
}

.page-latest-promotions-free-spins__tip-list {
  list-style: disc;
  margin: 30px 0 30px 20px;
  color: #333333;
}

.page-latest-promotions-free-spins__tip-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-latest-promotions-free-spins__tip-list li strong {
  color: #003366;
}

.page-latest-promotions-free-spins__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-latest-promotions-free-spins__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

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

.page-latest-promotions-free-spins__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-latest-promotions-free-spins__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-latest-promotions-free-spins__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-latest-promotions-free-spins__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-latest-promotions-free-spins__faq-answer.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-latest-promotions-free-spins__hero-section {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .page-latest-promotions-free-spins__hero-image-wrapper {
    margin-top: 40px;
  }

  .page-latest-promotions-free-spins__offer-card {
    flex-direction: column;
  }

  .page-latest-promotions-free-spins__offer-image,
  .page-latest-promotions-free-spins__offer-details {
    width: 100%;
  }

  .page-latest-promotions-free-spins__offer-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-latest-promotions-free-spins__main-title {
    font-size: 2.5em;
  }

  .page-latest-promotions-free-spins__subtitle {
    font-size: 1.1em;
  }

  .page-latest-promotions-free-spins__section-title {
    font-size: 2em;
  }

  .page-latest-promotions-free-spins__grid,
  .page-latest-promotions-free-spins__terms-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-latest-promotions-free-spins__main-title {
    font-size: 2em;
  }

  .page-latest-promotions-free-spins__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-latest-promotions-free-spins__section {
    padding: 40px 0;
  }

  .page-latest-promotions-free-spins__offer-details {
    padding: 20px;
  }

  .page-latest-promotions-free-spins__offer-title {
    font-size: 1.5em;
  }
}