/* style/latest-promotions-freespin-deals.css */
.page-latest-promotions-freespin-deals {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* Default text color for dark background */
  background-color: #0A1931; /* Main background color */
  line-height: 1.6;
}

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

.page-latest-promotions-freespin-deals__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #203A60 100%); /* Dark gradient for hero */
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-latest-promotions-freespin-deals__hero-image-wrapper {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px; /* Adjust as needed */
  height: auto;
  opacity: 0.3; /* Subtle background image */
  z-index: 0;
}

.page-latest-promotions-freespin-deals__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-latest-promotions-freespin-deals__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-latest-promotions-freespin-deals__hero-subtitle {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-latest-promotions-freespin-deals__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  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;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-latest-promotions-freespin-deals__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-latest-promotions-freespin-deals__cta-button--secondary {
  background-color: #0A1931;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-latest-promotions-freespin-deals__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-latest-promotions-freespin-deals__section {
  padding: 60px 0;
  text-align: center;
  background-color: #122849; /* Slightly lighter dark blue for sections */
  margin-bottom: 20px;
}

.page-latest-promotions-freespin-deals__section:nth-child(even) {
  background-color: #0A1931;
}

.page-latest-promotions-freespin-deals__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-latest-promotions-freespin-deals__section-description {
  font-size: 1.1em;
  color: #CCCCCC;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-latest-promotions-freespin-deals__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-latest-promotions-freespin-deals__feature-item {
  background-color: #0A1931;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-latest-promotions-freespin-deals__feature-item:hover {
  transform: translateY(-5px);
}

.page-latest-promotions-freespin-deals__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-latest-promotions-freespin-deals__feature-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-latest-promotions-freespin-deals__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-latest-promotions-freespin-deals__list li {
  background-color: #0A1931;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-latest-promotions-freespin-deals__list-item-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-latest-promotions-freespin-deals__list li p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-latest-promotions-freespin-deals__steps-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 40px;
  counter-reset: step-counter;
}

.page-latest-promotions-freespin-deals__steps-list li {
  background-color: #0A1931;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 60px;
}

.page-latest-promotions-freespin-deals__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  background-color: #FFD700;
  color: #0A1931;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-latest-promotions-freespin-deals__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-latest-promotions-freespin-deals__steps-list li p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-latest-promotions-freespin-deals__steps-list li a {
  color: #FFD700;
  text-decoration: underline;
}

.page-latest-promotions-freespin-deals__steps-list li a:hover {
  color: #e6c200;
}

.page-latest-promotions-freespin-deals__list--tips li {
  background-color: #122849;
}

.page-latest-promotions-freespin-deals__section-image {
  max-width: 100%;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-latest-promotions-freespin-deals__cta-final {
  background: linear-gradient(135deg, #203A60 0%, #0A1931 100%);
  padding: 80px 0;
}

.page-latest-promotions-freespin-deals__button-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

.page-latest-promotions-freespin-deals .keyword {
  color: #90EE90; /* Light green for keywords */
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-latest-promotions-freespin-deals__hero-title {
    font-size: 2.5em;
  }

  .page-latest-promotions-freespin-deals__hero-subtitle {
    font-size: 1.2em;
  }

  .page-latest-promotions-freespin-deals__section-title {
    font-size: 2em;
  }

  .page-latest-promotions-freespin-deals__feature-item,
  .page-latest-promotions-freespin-deals__list li,
  .page-latest-promotions-freespin-deals__steps-list li {
    padding: 20px;
  }

  .page-latest-promotions-freespin-deals__steps-list li::before {
    top: 20px;
  }
}

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

  .page-latest-promotions-freespin-deals__hero-subtitle {
    font-size: 1em;
  }

  .page-latest-promotions-freespin-deals__section-title {
    font-size: 1.8em;
  }

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

  .page-latest-promotions-freespin-deals__button-group {
    flex-direction: column;
    gap: 15px;
  }
}