.page-slots-bonus-rounds-free-spins {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-slots-bonus-rounds-free-spins__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slots-bonus-rounds-free-spins__hero {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 450px;
}

.page-slots-bonus-rounds-free-spins__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-slots-bonus-rounds-free-spins__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slots-bonus-rounds-free-spins__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-slots-bonus-rounds-free-spins__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-slots-bonus-rounds-free-spins__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-slots-bonus-rounds-free-spins__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-slots-bonus-rounds-free-spins__btn--primary {
  background-color: #ffc107;
  color: #007bff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-bonus-rounds-free-spins__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-slots-bonus-rounds-free-spins__btn--secondary {
  background-color: #007bff;
  color: #fff;
  border: 2px solid #fff;
}

.page-slots-bonus-rounds-free-spins__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #ffc107;
  transform: translateY(-2px);
}

.page-slots-bonus-rounds-free-spins__section {
  padding: 60px 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-slots-bonus-rounds-free-spins__section--intro {
  background-color: #f1f7fe;
  padding-top: 40px;
}

.page-slots-bonus-rounds-free-spins__section:nth-of-type(even) {
  background-color: #f8f9fa;
}

.page-slots-bonus-rounds-free-spins__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-slots-bonus-rounds-free-spins__sub-title {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-slots-bonus-rounds-free-spins__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-slots-bonus-rounds-free-spins__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-slots-bonus-rounds-free-spins__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-slots-bonus-rounds-free-spins__image-left,
.page-slots-bonus-rounds-free-spins__image-right {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-slots-bonus-rounds-free-spins__image-left .page-slots-bonus-rounds-free-spins__feature-image {
  order: 1;
}

.page-slots-bonus-rounds-free-spins__image-left .page-slots-bonus-rounds-free-spins__content-right {
  order: 2;
  flex: 1;
}

.page-slots-bonus-rounds-free-spins__image-right .page-slots-bonus-rounds-free-spins__feature-image {
  order: 2;
}

.page-slots-bonus-rounds-free-spins__image-right .page-slots-bonus-rounds-free-spins__content-left {
  order: 1;
  flex: 1;
}

.page-slots-bonus-rounds-free-spins__feature-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-slots-bonus-rounds-free-spins__faq-item {
  background-color: #f1f7fe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-slots-bonus-rounds-free-spins__faq-question {
  font-size: 1.25em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-bonus-rounds-free-spins__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-slots-bonus-rounds-free-spins__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-bonus-rounds-free-spins__faq-answer {
  font-size: 1.05em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #e9ecef;
  margin-top: 10px;
}

.page-slots-bonus-rounds-free-spins__faq-question.active + .page-slots-bonus-rounds-free-spins__faq-answer {
  display: block;
}

.page-slots-bonus-rounds-free-spins__section--cta {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.page-slots-bonus-rounds-free-spins__cta-content {
  position: relative;
  z-index: 2;
}

.page-slots-bonus-rounds-free-spins__cta-image {
  position: absolute;
  bottom: -20px;
  right: -50px;
  width: 300px;
  height: auto;
  opacity: 0.3;
  transform: rotate(15deg);
  z-index: 1;
}

@media (max-width: 992px) {
  .page-slots-bonus-rounds-free-spins__hero-title {
    font-size: 2.5em;
  }
  .page-slots-bonus-rounds-free-spins__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-bonus-rounds-free-spins__section-title {
    font-size: 2em;
  }
  .page-slots-bonus-rounds-free-spins__sub-title {
    font-size: 1.5em;
  }
  .page-slots-bonus-rounds-free-spins__image-left,
  .page-slots-bonus-rounds-free-spins__image-right {
    flex-direction: column;
    gap: 30px;
  }
  .page-slots-bonus-rounds-free-spins__image-left .page-slots-bonus-rounds-free-spins__feature-image,
  .page-slots-bonus-rounds-free-spins__image-left .page-slots-bonus-rounds-free-spins__content-right,
  .page-slots-bonus-rounds-free-spins__image-right .page-slots-bonus-rounds-free-spins__feature-image,
  .page-slots-bonus-rounds-free-spins__image-right .page-slots-bonus-rounds-free-spins__content-left {
    order: unset;
  }
  .page-slots-bonus-rounds-free-spins__feature-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-slots-bonus-rounds-free-spins__hero {
    padding: 80px 0;
  }
  .page-slots-bonus-rounds-free-spins__hero-title {
    font-size: 2em;
  }
  .page-slots-bonus-rounds-free-spins__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-bonus-rounds-free-spins__section {
    padding: 40px 0;
  }
  .page-slots-bonus-rounds-free-spins__section-title {
    font-size: 1.8em;
  }
  .page-slots-bonus-rounds-free-spins__sub-title {
    font-size: 1.3em;
  }
  .page-slots-bonus-rounds-free-spins__text-block,
  .page-slots-bonus-rounds-free-spins__list li,
  .page-slots-bonus-rounds-free-spins__faq-item {
    font-size: 0.95em;
  }
  .page-slots-bonus-rounds-free-spins__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slots-bonus-rounds-free-spins__cta-image {
    width: 200px;
    right: -30px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  .page-slots-bonus-rounds-free-spins__hero {
    padding: 60px 0;
  }
  .page-slots-bonus-rounds-free-spins__hero-title {
    font-size: 1.8em;
  }
  .page-slots-bonus-rounds-free-spins__hero-subtitle {
    font-size: 0.9em;
  }
  .page-slots-bonus-rounds-free-spins__section-title {
    font-size: 1.5em;
  }
  .page-slots-bonus-rounds-free-spins__sub-title {
    font-size: 1.2em;
  }
  .page-slots-bonus-rounds-free-spins__cta-image {
    display: none;
  }
}