.page-slots-video {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

.page-slots-video__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-slots-video__hero {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-video__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-slots-video__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-slots-video__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-slots-video__btn--primary {
  background-color: #ffc107;
  color: #000000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-slots-video__btn--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  margin-left: 15px;
}

.page-slots-video__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-slots-video__hero-image {
  max-width: 90%;
  height: auto;
  margin-top: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-slots-video__section {
  padding: 60px 0;
}

.page-slots-video__section--light {
  background-color: #ffffff;
}

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

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

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

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

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

.page-slots-video__feature-item:hover {
  transform: translateY(-5px);
}

.page-slots-video__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-slots-video__list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-slots-video__list li {
  margin-bottom: 10px;
}

.page-slots-video__numbered-list {
  list-style: decimal inside;
  margin-left: 20px;
  margin-bottom: 30px;
  font-size: 1.1em;
}

.page-slots-video__numbered-list li {
  margin-bottom: 15px;
}

.page-slots-video__link-inline {
  color: #007bff;
  text-decoration: underline;
}

.page-slots-video__link-inline:hover {
  color: #0056b3;
}

.page-slots-video__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-video__image-center {
  display: block;
  margin: 30px auto;
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-slots-video__cta-buttons {
  text-align: center;
  margin-top: 40px;
}

.page-slots-video__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-slots-video__cta-final {
  background: linear-gradient(45deg, #0056b3 0%, #007bff 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-slots-video__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-slots-video__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-slots-video__hero-title {
    font-size: 2.5em;
  }

  .page-slots-video__hero-description,
  .page-slots-video__text-block,
  .page-slots-video__list,
  .page-slots-video__numbered-list li {
    font-size: 1em;
  }

  .page-slots-video__section-title {
    font-size: 2em;
  }

  .page-slots-video__sub-title {
    font-size: 1.5em;
  }

  .page-slots-video__features-grid {
    grid-template-columns: 1fr;
  }

  .page-slots-video__btn {
    padding: 10px 20px;
    font-size: 1em;
    margin-left: 0;
    margin-top: 10px;
  }

  .page-slots-video__btn--secondary {
    margin-left: 0;
  }

  .page-slots-video__cta-title {
    font-size: 2.2em;
  }

  .page-slots-video__cta-description {
    font-size: 1.1em;
  }

  .page-slots-video__image-center {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-slots-video__hero,
  .page-slots-video__section,
  .page-slots-video__cta-final {
    padding: 40px 0;
  }

  .page-slots-video__hero-title {
    font-size: 2em;
  }

  .page-slots-video__section-title {
    font-size: 1.8em;
  }

  .page-slots-video__btn--large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}