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

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

.page-slots-video-slots__hero-section {
  background: linear-gradient(135deg, #0056B3 0%, #003a7a 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-video-slots__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-slots-video-slots__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-video-slots__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.page-slots-video-slots__hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-slots-video-slots__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.page-slots-video-slots__btn--primary {
  background-color: #FFD700;
  color: #0056B3;
  border: 2px solid #FFD700;
}

.page-slots-video-slots__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #003a7a;
}

.page-slots-video-slots__btn--secondary {
  background-color: #0056B3;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-slots-video-slots__btn--secondary:hover {
  background-color: #003a7a;
  border-color: #e6c200;
  color: #FFD700;
}

.page-slots-video-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-slots-video-slots__section {
  padding: 60px 0;
  text-align: center;
}

.page-slots-video-slots__section--dark {
  background-color: #0056B3;
  color: #ffffff;
}

.page-slots-video-slots__section--dark .page-slots-video-slots__section-title {
  color: #FFD700;
}

.page-slots-video-slots__section--gray {
  background-color: #f0f2f5;
}

.page-slots-video-slots__section-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #0056B3;
}

.page-slots-video-slots__section-content {
  padding: 0 20px;
}

.page-slots-video-slots__features-grid,
.page-slots-video-slots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-slots-video-slots__feature-item,
.page-slots-video-slots__promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-video-slots__feature-item:hover,
.page-slots-video-slots__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-slots-video-slots__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.page-slots-video-slots__feature-title,
.page-slots-video-slots__promo-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 15px;
}

.page-slots-video-slots__feature-description,
.page-slots-video-slots__promo-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
}

.page-slots-video-slots__promo-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-slots-video-slots__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: left;
}

.page-slots-video-slots__guide-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-slots-video-slots__guide-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-slots-video-slots__guide-item p {
  color: #e0e0e0;
}

.page-slots-video-slots__link {
  color: #FFD700;
  text-decoration: underline;
}

.page-slots-video-slots__link:hover {
  color: #e6c200;
}

.page-slots-video-slots__mobile-app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-slots-video-slots__mobile-app-text {
  text-align: left;
  max-width: 600px;
}

.page-slots-video-slots__mobile-app-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

.page-slots-video-slots__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slots-video-slots__faq {
  margin-top: 40px;
  text-align: left;
}

.page-slots-video-slots__faq-item {
  background-color: #ffffff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-video-slots__faq-question {
  font-size: 1.3em;
  color: #0056B3;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-video-slots__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-slots-video-slots__faq-question.active::after {
  content: '-';
}

.page-slots-video-slots__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-slots-video-slots__faq-answer.active {
  display: block;
}

.page-slots-video-slots__cta-section {
  background: linear-gradient(45deg, #003a7a 0%, #0056B3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-slots-video-slots__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-video-slots__cta-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-slots-video-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-video-slots__hero-subtitle {
    font-size: 1.2em;
  }
  .page-slots-video-slots__section-title {
    font-size: 2em;
  }
  .page-slots-video-slots__mobile-app-content {
    flex-direction: column;
  }
  .page-slots-video-slots__mobile-app-image {
    max-width: 80%;
  }
  .page-slots-video-slots__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-slots-video-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-video-slots__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-video-slots__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-slots-video-slots__section {
    padding: 40px 0;
  }
  .page-slots-video-slots__section-title {
    font-size: 1.8em;
  }
  .page-slots-video-slots__features-grid,
  .page-slots-video-slots__promo-grid,
  .page-slots-video-slots__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-slots-video-slots__cta-title {
    font-size: 2em;
  }
  .page-slots-video-slots__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-slots-video-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-video-slots__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-video-slots__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-slots-video-slots__section-title {
    font-size: 1.5em;
  }
  .page-slots-video-slots__feature-icon {
    width: 60px;
    height: 60px;
  }
  .page-slots-video-slots__feature-title,
  .page-slots-video-slots__promo-title {
    font-size: 1.3em;
  }
  .page-slots-video-slots__cta-title {
    font-size: 1.8em;
  }
  .page-slots-video-slots__cta-description {
    font-size: 1em;
  }
}