/* style/slots-games-video-slots.css */
.page-slots-games-video-slots {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text */
  background-color: #0A192F; /* Deep tech blue for main background */
  line-height: 1.6;
}

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

.page-slots-games-video-slots__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1a2a47 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-video-slots__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Luxury gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-slots-games-video-slots__hero-title .highlight {
  color: #FFD700;
}

.page-slots-games-video-slots__hero-subtitle {
  font-size: 1.3em;
  color: #C0C0C0; /* Lighter gray for subtitle */
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-slots-games-video-slots__hero-subtitle .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-slots-games-video-slots__btn--primary {
  background-color: #FFD700; /* Luxury gold */
  color: #0A192F; /* Deep tech blue */
}

.page-slots-games-video-slots__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-slots-games-video-slots__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Luxury gold */
  border: 2px solid #FFD700;
}

.page-slots-games-video-slots__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-slots-games-video-slots__btn--tertiary {
  background-color: #1a2a47; /* Darker blue */
  color: #FFD700;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
}

.page-slots-games-video-slots__btn--tertiary:hover {
  background-color: #2c426e;
  color: #FFD700;
}

.page-slots-games-video-slots__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A192F;
}

.page-slots-games-video-slots__btn--small:hover {
  background-color: #e6c200;
}

.page-slots-games-video-slots__btn--inline {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #0A192F;
  margin-top: 15px;
}

.page-slots-games-video-slots__btn--inline:hover {
  background-color: #e6c200;
}

.page-slots-games-video-slots__brand-name {
  color: #0A192F;
}

.page-slots-games-video-slots__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Luxury gold */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-slots-games-video-slots__section-description {
  font-size: 1.1em;
  color: #C0C0C0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

.page-slots-games-video-slots__section-description .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__about-section,
.page-slots-games-video-slots__features-section,
.page-slots-games-video-slots__how-to-play-section,
.page-slots-games-video-slots__promo-section,
.page-slots-games-video-slots__safety-section,
.page-slots-games-video-slots__faq-section,
.page-slots-games-video-slots__cta-bottom {
  padding: 60px 0;
}

.page-slots-games-video-slots__about-section {
  background-color: #1a2a47; /* Darker blue background */
}

.page-slots-games-video-slots__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-slots-games-video-slots__text-content p {
  margin-bottom: 20px;
  font-size: 1.05em;
  color: #E0E0E0;
}

.page-slots-games-video-slots__text-content .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__image-wrapper {
  text-align: center;
}

.page-slots-games-video-slots__img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-slots-games-video-slots__feature-card {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-slots-games-video-slots__feature-card:hover {
  transform: translateY(-5px);
  background-color: #2c426e;
}

.page-slots-games-video-slots__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

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

.page-slots-games-video-slots__feature-card p {
  color: #C0C0C0;
}

.page-slots-games-video-slots__feature-card .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__how-to-play-section {
  background-color: #0A192F;
}

.page-slots-games-video-slots__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-slots-games-video-slots__step-card {
  background-color: #1a2a47;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-video-slots__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #0A192F;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.page-slots-games-video-slots__step-card p {
  color: #C0C0C0;
}

.page-slots-games-video-slots__step-card .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__promo-section {
  background-color: #1a2a47;
}

.page-slots-games-video-slots__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-slots-games-video-slots__promo-card {
  background-color: #0A192F;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-slots-games-video-slots__promo-img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-slots-games-video-slots__promo-card p {
  color: #C0C0C0;
  margin-bottom: 20px;
}

.page-slots-games-video-slots__promo-card .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__promo-cta {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-slots-games-video-slots__promo-cta p {
  font-size: 1.2em;
  color: #E0E0E0;
  margin-bottom: 30px;
}

.page-slots-games-video-slots__safety-section {
  background-color: #0A192F;
}

.page-slots-games-video-slots__safety-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-slots-games-video-slots__safety-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-slots-games-video-slots__safety-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-slots-games-video-slots__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  filter: drop-shadow(0 0 3px #FFD700);
}

.page-slots-games-video-slots__faq-section {
  background-color: #1a2a47;
}

.page-slots-games-video-slots__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-games-video-slots__faq-item {
  background-color: #0A192F;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-slots-games-video-slots__faq-question {
  color: #FFD700;
  font-size: 1.3em;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-slots-games-video-slots__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-slots-games-video-slots__faq-item.active .page-slots-games-video-slots__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-slots-games-video-slots__faq-answer {
  padding: 0 25px 20px 25px;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-slots-games-video-slots__faq-item.active .page-slots-games-video-slots__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-slots-games-video-slots__faq-answer p {
  margin-bottom: 15px;
}

.page-slots-games-video-slots__faq-answer .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__cta-bottom {
  background: linear-gradient(135deg, #1a2a47 0%, #0A192F 100%);
  text-align: center;
  padding: 80px 0;
}

.page-slots-games-video-slots__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-slots-games-video-slots__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-slots-games-video-slots__cta-description .strong {
  color: #FFD700;
  font-weight: bold;
}

.page-slots-games-video-slots__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 2.8em;
  }
  .page-slots-games-video-slots__section-title,
  .page-slots-games-video-slots__cta-title {
    font-size: 2em;
  }
  .page-slots-games-video-slots__content-grid,
  .page-slots-games-video-slots__safety-content {
    grid-template-columns: 1fr;
  }
  .page-slots-games-video-slots__image-wrapper {
    order: -1; /* Image above text on mobile */
  }
}

@media (max-width: 768px) {
  .page-slots-games-video-slots__hero-section {
    padding: 80px 0;
  }
  .page-slots-games-video-slots__hero-title {
    font-size: 2.2em;
  }
  .page-slots-games-video-slots__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-video-slots__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-video-slots__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-slots-games-video-slots__section-title,
  .page-slots-games-video-slots__cta-title {
    font-size: 1.8em;
  }
  .page-slots-games-video-slots__section-description,
  .page-slots-games-video-slots__cta-description {
    font-size: 0.95em;
  }
  .page-slots-games-video-slots__features-grid,
  .page-slots-games-video-slots__steps-grid,
  .page-slots-games-video-slots__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-video-slots__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-slots-games-video-slots__hero-title {
    font-size: 1.8em;
  }
  .page-slots-games-video-slots__section-title,
  .page-slots-games-video-slots__cta-title {
    font-size: 1.5em;
  }
  .page-slots-games-video-slots__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games-video-slots__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-slots-games-video-slots__faq-answer {
    padding: 0 20px 15px 20px;
  }
}