.page-slot-games-free-play-zone {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #0A192F;
}

.page-slot-games-free-play-zone__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-slot-games-free-play-zone__hero {
  position: relative;
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  overflow: hidden;
}

.page-slot-games-free-play-zone__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-slot-games-free-play-zone__main-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-slot-games-free-play-zone__subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-slot-games-free-play-zone__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-slot-games-free-play-zone__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-slot-games-free-play-zone__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-slot-games-free-play-zone__section:last-of-type {
  border-bottom: none;
}

.page-slot-games-free-play-zone__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-slot-games-free-play-zone__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #C0C0C0;
}

.page-slot-games-free-play-zone__intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-slot-games-free-play-zone__intro-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-slot-games-free-play-zone__intro-text {
    order: 1; /* Text first on desktop */
  }
  .page-slot-games-free-play-zone__intro-image-wrapper {
    order: 2; /* Image second on desktop */
  }
  .page-slot-games-free-play-zone__responsible-text {
    order: 2; /* Text second on desktop for responsible gaming */
  }
  .page-slot-games-free-play-zone__responsible-image-wrapper {
    order: 1; /* Image first on desktop for responsible gaming */
  }
}

.page-slot-games-free-play-zone__intro-text p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-slot-games-free-play-zone__intro-image-wrapper,
.page-slot-games-free-play-zone__how-to-play-image-wrapper,
.page-slot-games-free-play-zone__responsible-image-wrapper {
  text-align: center;
}

.page-slot-games-free-play-zone__intro-image,
.page-slot-games-free-play-zone__how-to-play-image,
.page-slot-games-free-play-zone__responsible-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-slot-games-free-play-zone__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-slot-games-free-play-zone__step {
  background-color: #1a2b40;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slot-games-free-play-zone__step:hover {
  transform: translateY(-5px);
}

.page-slot-games-free-play-zone__step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A192F;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-slot-games-free-play-zone__step-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-free-play-zone__step p {
  color: #C0C0C0;
}

.page-slot-games-free-play-zone__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slot-games-free-play-zone__game-category {
  background-color: #1a2b40;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slot-games-free-play-zone__game-category:hover {
  transform: translateY(-5px);
}

.page-slot-games-free-play-zone__game-category-image {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-slot-games-free-play-zone__game-category-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-free-play-zone__game-category p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-slot-games-free-play-zone__description--more-games {
  margin-top: 40px;
  font-style: italic;
}

.page-slot-games-free-play-zone__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-slot-games-free-play-zone__benefit-list li {
  background-color: #1a2b40;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-slot-games-free-play-zone__benefit-list li:hover {
  transform: translateY(-5px);
}

.page-slot-games-free-play-zone__benefit-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-left: 35px;
}

.page-slot-games-free-play-zone__benefit-title::before {
  content: '✔';
  color: #FFD700;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
}

.page-slot-games-free-play-zone__benefit-list li p {
  color: #C0C0C0;
}

.page-slot-games-free-play-zone__responsible-gaming .page-slot-games-free-play-zone__responsible-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .page-slot-games-free-play-zone__responsible-gaming .page-slot-games-free-play-zone__responsible-content {
    grid-template-columns: 1fr 1fr;
  }
}

.page-slot-games-free-play-zone__responsible-text p {
  margin-bottom: 15px;
  color: #E0E0E0;
}

.page-slot-games-free-play-zone__faq-item {
  background-color: #1a2b40;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-slot-games-free-play-zone__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-slot-games-free-play-zone__faq-answer {
  color: #C0C0C0;
}

.page-slot-games-free-play-zone__cta {
  background-color: #0A192F;
  text-align: center;
  padding: 80px 0;
}

.page-slot-games-free-play-zone__cta-content {
  background-color: #1a2b40;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-slot-games-free-play-zone__cta .page-slot-games-free-play-zone__section-title {
  color: #FFD700;
  margin-bottom: 25px;
}

.page-slot-games-free-play-zone__cta .page-slot-games-free-play-zone__description {
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-slot-games-free-play-zone__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 15px 20px 15px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slot-games-free-play-zone__btn--primary {
  background-color: #FFD700;
  color: #0A192F;
}

.page-slot-games-free-play-zone__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slot-games-free-play-zone__btn--secondary {
  background-color: #0A192F;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slot-games-free-play-zone__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-slot-games-free-play-zone__btn--tertiary {
  background-color: transparent;
  color: #E0E0E0;
  border: 2px solid #E0E0E0;
}

.page-slot-games-free-play-zone__btn--tertiary:hover {
  background-color: #E0E0E0;
  color: #0A192F;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slot-games-free-play-zone__main-title {
    font-size: 2.8em;
  }
  .page-slot-games-free-play-zone__subtitle {
    font-size: 1.3em;
  }
  .page-slot-games-free-play-zone__section-title {
    font-size: 2em;
  }
  .page-slot-games-free-play-zone__description {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-slot-games-free-play-zone__hero {
    padding: 80px 0;
    min-height: 400px;
  }
  .page-slot-games-free-play-zone__main-title {
    font-size: 2.2em;
  }
  .page-slot-games-free-play-zone__subtitle {
    font-size: 1.1em;
  }
  .page-slot-games-free-play-zone__section {
    padding: 40px 0;
  }
  .page-slot-games-free-play-zone__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-slot-games-free-play-zone__steps-grid,
  .page-slot-games-free-play-zone__game-categories,
  .page-slot-games-free-play-zone__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-slot-games-free-play-zone__cta-content {
    padding: 30px;
  }
  .page-slot-games-free-play-zone__btn {
    padding: 12px 25px;
    font-size: 1em;
    margin: 0 10px 15px 10px;
  }
}

@media (max-width: 480px) {
  .page-slot-games-free-play-zone__main-title {
    font-size: 1.8em;
  }
  .page-slot-games-free-play-zone__subtitle {
    font-size: 0.95em;
  }
  .page-slot-games-free-play-zone__section-title {
    font-size: 1.5em;
  }
  .page-slot-games-free-play-zone__btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-slot-games-free-play-zone__game-category-image {
    height: 150px;
  }
}