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

.page-promotions-free-spins-cashback-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-free-spins-cashback-hero-section {
  background: linear-gradient(135deg, #1A237E, #FFC107);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.page-promotions-free-spins-cashback-hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-promotions-free-spins-cashback-hero-section h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-free-spins-cashback-hero-section p {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #eee;
}

.page-promotions-free-spins-cashback-hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 0;
}

.page-promotions-free-spins-cashback-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-promotions-free-spins-cashback-hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-promotions-free-spins-cashback-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-promotions-free-spins-cashback-btn-primary {
  background-color: #FFC107;
  color: #1A237E;
}

.page-promotions-free-spins-cashback-btn-primary:hover {
  background-color: #e5ac00;
  transform: translateY(-2px);
}

.page-promotions-free-spins-cashback-btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.page-promotions-free-spins-cashback-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-promotions-free-spins-cashback-btn-small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 30px;
}

.page-promotions-free-spins-cashback-btn-large {
    padding: 18px 35px;
    font-size: 1.3em;
}

.page-promotions-free-spins-cashback-section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions-free-spins-cashback-section h2 {
  font-size: 2.5em;
  color: #1A237E;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-promotions-free-spins-cashback-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: #FFC107;
  border-radius: 2px;
}

.page-promotions-free-spins-cashback-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-promotions-free-spins-cashback-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse {
  flex-direction: row-reverse;
  text-align: right;
}

.page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse .page-promotions-free-spins-cashback-btn {
    margin-right: auto;
    margin-left: 0;
}

.page-promotions-free-spins-cashback-text-content {
  flex: 1;
}

.page-promotions-free-spins-cashback-text-content h2 {
    text-align: left;
    font-size: 2em;
}

.page-promotions-free-spins-cashback-text-content h2::after {
    left: 0;
    transform: translateX(0);
}

.page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse .page-promotions-free-spins-cashback-text-content h2 {
    text-align: right;
}

.page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse .page-promotions-free-spins-cashback-text-content h2::after {
    right: 0;
    left: auto;
    transform: translateX(0);
}

.page-promotions-free-spins-cashback-image-wrapper {
  flex: 1;
}

.page-promotions-free-spins-cashback-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-free-spins-cashback-text-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-free-spins-cashback-text-content ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #444;
}

.page-promotions-free-spins-cashback-text-content ul li::before {
  content: '✔';
  color: #FFC107;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

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

.page-promotions-free-spins-cashback-comparison-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-free-spins-cashback-comparison-card:hover {
  transform: translateY(-5px);
}

.page-promotions-free-spins-cashback-comparison-card h3 {
  font-size: 1.8em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-free-spins-cashback-comparison-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions-free-spins-cashback-comparison-card ul li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  color: #555;
}

.page-promotions-free-spins-cashback-comparison-card ul li::before {
  content: '•';
  color: #FFC107;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: -2px;
}

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

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

.page-promotions-free-spins-cashback-step-card:hover {
  transform: translateY(-5px);
}

.page-promotions-free-spins-cashback-step-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(255, 193, 7, 0.4));
}

.page-promotions-free-spins-cashback-step-card h3 {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-promotions-free-spins-cashback-note {
  font-style: italic;
  color: #777;
  margin-top: 40px;
}

.page-promotions-free-spins-cashback-responsible-image-wrapper {
    margin: 40px auto;
    max-width: 800px;
}

.page-promotions-free-spins-cashback-responsible-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-free-spins-cashback-conclusion .page-promotions-free-spins-cashback-btn {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-free-spins-cashback-hero-section h1 {
    font-size: 2.8em;
  }

  .page-promotions-free-spins-cashback-hero-section p {
    font-size: 1.1em;
  }

  .page-promotions-free-spins-cashback-section h2 {
    font-size: 2em;
  }

  .page-promotions-free-spins-cashback-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions-free-spins-cashback-content-wrapper .page-promotions-free-spins-cashback-text-content h2,
  .page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse .page-promotions-free-spins-cashback-text-content h2 {
    text-align: center;
  }

  .page-promotions-free-spins-cashback-content-wrapper .page-promotions-free-spins-cashback-text-content h2::after,
  .page-promotions-free-spins-cashback-content-wrapper.page-promotions-free-spins-cashback-reverse .page-promotions-free-spins-cashback-text-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }

  .page-promotions-free-spins-cashback-btn {
      margin: 10px auto;
  }

  .page-promotions-free-spins-cashback-hero-actions {
      flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-promotions-free-spins-cashback-hero-section {
    padding: 60px 0;
    min-height: 400px;
  }

  .page-promotions-free-spins-cashback-hero-section h1 {
    font-size: 2.2em;
  }

  .page-promotions-free-spins-cashback-hero-section p {
    font-size: 1em;
  }

  .page-promotions-free-spins-cashback-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-free-spins-cashback-section {
    padding: 40px 0;
  }

  .page-promotions-free-spins-cashback-section h2 {
    font-size: 1.8em;
  }
}

@media (max-width: 576px) {
  .page-promotions-free-spins-cashback-hero-section h1 {
    font-size: 1.8em;
  }

  .page-promotions-free-spins-cashback-hero-section p {
    font-size: 0.9em;
  }

  .page-promotions-free-spins-cashback-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promotions-free-spins-cashback-btn-large {
      padding: 15px 30px;
      font-size: 1.1em;
  }

  .page-promotions-free-spins-cashback-section h2 {
    font-size: 1.5em;
  }

  .page-promotions-free-spins-cashback-comparison-grid,
  .page-promotions-free-spins-cashback-steps-grid {
    grid-template-columns: 1fr;
  }
}