/* style/slots-games-mobile.css */
.page-slots-games-mobile {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-slots-games-mobile__hero-section {
  background: linear-gradient(135deg, #0D47A1 0%, #3069b8 100%); /* Dark blue gradient */
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-slots-games-mobile__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,gaming_pattern,light_texture]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-slots-games-mobile__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD600; /* Bright yellow for emphasis */
  position: relative;
  z-index: 1;
}

.page-slots-games-mobile__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-slots-games-mobile__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

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

.page-slots-games-mobile__btn--primary {
  background-color: #FFD600; /* Bright yellow */
  color: #0D47A1; /* Dark blue text */
}

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

.page-slots-games-mobile__btn--secondary {
  background-color: transparent;
  color: #FFD600; /* Bright yellow text */
  border: 2px solid #FFD600;
}

.page-slots-games-mobile__btn--secondary:hover {
  background-color: #FFD600;
  color: #0D47A1;
  transform: translateY(-3px);
}

.page-slots-games-mobile__section-title {
  font-size: 2.8em;
  color: #0D47A1;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.page-slots-games-mobile__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD600;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-slots-games-mobile__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -30px auto 60px;
  color: #555;
}

.page-slots-games-mobile__features-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

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

.page-slots-games-mobile__feature-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-slots-games-mobile__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-slots-games-mobile__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-slots-games-mobile__feature-title {
  font-size: 1.8em;
  color: #0D47A1;
  margin-bottom: 15px;
}

.page-slots-games-mobile__feature-description {
  font-size: 1em;
  color: #666;
}

.page-slots-games-mobile__game-showcase {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-slots-games-mobile__game-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-slots-games-mobile__game-card:hover {
  transform: translateY(-8px);
}

.page-slots-games-mobile__game-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD600;
}

.page-slots-games-mobile__game-title {
  font-size: 1.6em;
  color: #0D47A1;
  margin: 20px 0 10px;
}

.page-slots-games-mobile__game-desc {
  font-size: 0.95em;
  color: #555;
  padding: 0 20px 20px;
}

.page-slots-games-mobile__btn--play {
  background-color: #0D47A1;
  color: #FFD600;
  padding: 10px 25px;
  margin-bottom: 20px;
}

.page-slots-games-mobile__btn--play:hover {
  background-color: #0a3680;
  color: #FFFFFF;
}

.page-slots-games-mobile__how-to-start {
  padding: 80px 0;
  background-color: #EBF2F7; /* Lighter blue background */
}

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

.page-slots-games-mobile__step-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.page-slots-games-mobile__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD600;
  color: #0D47A1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2em;
  font-weight: bold;
  margin: -60px auto 20px;
  border: 4px solid #0D47A1;
}

.page-slots-games-mobile__step-item:nth-child(1) .page-slots-games-mobile__step-number { background-color: #FFD600; }
.page-slots-games-mobile__step-item:nth-child(2) .page-slots-games-mobile__step-number { background-color: #FFD600; }
.page-slots-games-mobile__step-item:nth-child(3) .page-slots-games-mobile__step-number { background-color: #FFD600; }

.page-slots-games-mobile__step-title {
  font-size: 1.8em;
  color: #0D47A1;
  margin-bottom: 15px;
}

.page-slots-games-mobile__step-description {
  font-size: 1em;
  color: #666;
}

.page-slots-games-mobile__cta-bottom {
  text-align: center;
}

.page-slots-games-mobile__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-slots-games-mobile__why-j9bet {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-slots-games-mobile__why-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-slots-games-mobile__why-text {
  flex: 2;
  min-width: 300px;
}

.page-slots-games-mobile__why-text p {
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #444;
}

.page-slots-games-mobile__why-image {
  flex: 1;
  min-width: 250px;
  text-align: center;
}

.page-slots-games-mobile__responsive-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-slots-games-mobile__faq-section {
  padding: 80px 0;
  background-color: #F8F8F8;
}

.page-slots-games-mobile__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-slots-games-mobile__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-slots-games-mobile__faq-question {
  font-size: 1.4em;
  color: #0D47A1;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-slots-games-mobile__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FFD600;
  font-weight: bold;
}

.page-slots-games-mobile__faq-question.active::after {
  content: '-';
}

.page-slots-games-mobile__faq-answer {
  font-size: 1em;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-slots-games-mobile__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

.page-slots-games-mobile__cta-final {
  background-color: #0D47A1;
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
}

.page-slots-games-mobile__cta-title {
  font-size: 3em;
  color: #FFD600;
  margin-bottom: 20px;
}

.page-slots-games-mobile__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-slots-games-mobile__btn--cta {
  background-color: #FFD600;
  color: #0D47A1;
  padding: 18px 40px;
  font-size: 1.3em;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-slots-games-mobile__hero-title {
    font-size: 3em;
  }
  .page-slots-games-mobile__section-title {
    font-size: 2.2em;
  }
  .page-slots-games-mobile__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-slots-games-mobile__hero-section {
    padding: 80px 0;
  }
  .page-slots-games-mobile__hero-title {
    font-size: 2.5em;
  }
  .page-slots-games-mobile__hero-subtitle {
    font-size: 1.1em;
  }
  .page-slots-games-mobile__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-slots-games-mobile__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-slots-games-mobile__section-title {
    font-size: 2em;
  }
  .page-slots-games-mobile__features-grid,
  .page-slots-games-mobile__game-grid,
  .page-slots-games-mobile__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-slots-games-mobile__why-content {
    flex-direction: column;
  }
  .page-slots-games-mobile__step-number {
    margin-top: 0;
  }
  .page-slots-games-mobile__cta-title {
    font-size: 2em;
  }
  .page-slots-games-mobile__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-slots-games-mobile__hero-title {
    font-size: 2em;
  }
  .page-slots-games-mobile__hero-subtitle {
    font-size: 1em;
  }
  .page-slots-games-mobile__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-slots-games-mobile__section-title {
    font-size: 1.8em;
  }
  .page-slots-games-mobile__feature-title,
  .page-slots-games-mobile__game-title,
  .page-slots-games-mobile__step-title,
  .page-slots-games-mobile__faq-question {
    font-size: 1.4em;
  }
  .page-slots-games-mobile__cta-title {
    font-size: 1.8em;
  }
  .page-slots-games-mobile__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}