/* style/game-lobby-slot-games.css */
.page-game-lobby-slot-games {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark background */
}

.page-game-lobby-slot-games__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-game-lobby-slot-games__hero-section {
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5C 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-game-lobby-slot-games__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(10, 25, 47, 0) 70%);
  opacity: 0.3;
  animation: page-game-lobby-slot-games__hero-pulse 10s infinite alternate;
  z-index: 0;
}

@keyframes page-game-lobby-slot-games__hero-pulse {
  0% { transform: scale(1); opacity: 0.2; }
  100% { transform: scale(1.2); opacity: 0.4; }
}

.page-game-lobby-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-slot-games__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #E0E0E0; /* Lighter gray for description */
  position: relative;
  z-index: 1;
}

.page-game-lobby-slot-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
  border: none;
}

.page-game-lobby-slot-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text on gold */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slot-games__btn--primary:hover {
  background-color: #E0B000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-slot-games__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
  box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2);
}

.page-game-lobby-slot-games__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-slot-games__btn--link {
  color: #FFD700;
  text-decoration: underline;
  background: none;
  padding: 0;
  font-size: 1em;
}

.page-game-lobby-slot-games__btn--link:hover {
  color: #E0B000;
}

.page-game-lobby-slot-games__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-lobby-slot-games__section {
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-slot-games__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-game-lobby-slot-games__section-subtitle {
  font-size: 1.1em;
  color: #B0B0B0;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* Features Section */
.page-game-lobby-slot-games__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slot-games__feature-item {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-slot-games__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-game-lobby-slot-games__feature-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-slot-games__feature-text {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
}

/* Game Types Section */
.page-game-lobby-slot-games__game-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slot-games__game-type-card {
  background-color: #1A2F4A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-slot-games__game-type-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games__game-type-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-game-lobby-slot-games__game-type-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-game-lobby-slot-games__game-type-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #C0C0C0;
  padding: 0 15px 20px;
}

.page-game-lobby-slot-games__cta-center {
  margin-top: 60px;
}

/* Guide Section */
.page-game-lobby-slot-games__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-game-lobby-slot-games__guide-step-item {
  background-color: #1A2F4A;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  position: relative;
  padding-top: 70px; /* Space for step number */
}

.page-game-lobby-slot-games__step-number {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 45px;
  height: 45px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
}

.page-game-lobby-slot-games__guide-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-slot-games__guide-text {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-game-lobby-slot-games__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slot-games__promo-item {
  background-color: #1A2F4A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-slot-games__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-slot-games__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-game-lobby-slot-games__promo-heading {
  font-size: 1.4em;
  color: #FFD700;
  margin: 20px 15px 10px;
}

.page-game-lobby-slot-games__promo-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #C0C0C0;
  padding: 0 15px 20px;
}

/* Providers Section */
.page-game-lobby-slot-games__provider-list {
  list-style: none;
  padding: 0;
  margin: 50px auto 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  max-width: 900px;
}

.page-game-lobby-slot-games__provider-list li {
  background-color: #FFD700;
  color: #0A192F;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-game-lobby-slot-games__provider-list li:hover {
  background-color: #E0B000;
  transform: translateY(-3px);
}

.page-game-lobby-slot-games__provider-description {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  max-width: 800px;
  margin: 0 auto;
}

/* Mobile Section */
.page-game-lobby-slot-games__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 40px;
}

.page-game-lobby-slot-games__mobile-text-content {
  flex: 1;
  min-width: 300px;
}

.page-game-lobby-slot-games__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-game-lobby-slot-games__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsible Gambling Section */
.page-game-lobby-slot-games__section--responsible-gambling {
  background-color: #1A2F4A;
}

/* FAQ Section */
.page-game-lobby-slot-games__faq-list {
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-slot-games__faq-item {
  background-color: #0F2038;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-slot-games__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-slot-games__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-game-lobby-slot-games__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-lobby-slot-games__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-game-lobby-slot-games__faq-answer.active {
  max-height: 500px; /* Sufficiently large to show content */
  opacity: 1;
}

/* Final CTA Section */
.page-game-lobby-slot-games__cta-final {
  background: linear-gradient(90deg, #0A192F, #1A3A5C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-slot-games__cta-final-title {
  font-size: 3em;
  margin-bottom: 25px;
  color: #FFD700;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-slot-games__cta-final-description {
  font-size: 1.3em;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-game-lobby-slot-games__hero-title {
    font-size: 3em;
  }
  .page-game-lobby-slot-games__section-title {
    font-size: 2em;
  }
  .page-game-lobby-slot-games__cta-final-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-slot-games__hero-title {
    font-size: 2.5em;
  }
  .page-game-lobby-slot-games__hero-description,
  .page-game-lobby-slot-games__section-subtitle,
  .page-game-lobby-slot-games__cta-final-description {
    font-size: 1em;
  }
  .page-game-lobby-slot-games__feature-grid,
  .page-game-lobby-slot-games__game-type-grid,
  .page-game-lobby-slot-games__guide-steps,
  .page-game-lobby-slot-games__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-slot-games__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-game-lobby-slot-games__mobile-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-game-lobby-slot-games__section {
    padding: 60px 0;
  }
  .page-game-lobby-slot-games__hero-section {
    padding: 80px 0;
  }
  .page-game-lobby-slot-games__cta-final {
    padding: 80px 0;
  }
  .page-game-lobby-slot-games__hero-section::before {
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-slot-games__hero-title {
    font-size: 2em;
  }
  .page-game-lobby-slot-games__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-slot-games__cta-final-title {
    font-size: 2em;
  }
  .page-game-lobby-slot-games__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}