/* style/game-lobby-slots-features.css */
.page-game-lobby-slots-features {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text on dark background */
  background-color: #0A2463; /* Main dark blue background */
  line-height: 1.6;
}

.page-game-lobby-slots-features__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.page-game-lobby-slots-features__section:nth-of-type(even) {
  background-color: rgba(227, 181, 5, 0.1); /* Light gold tint */
}

.page-game-lobby-slots-features__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #E3B505; /* Auxiliary gold for titles */
  font-weight: bold;
  line-height: 1.2;
}

.page-game-lobby-slots-features__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #D3D3D3;
}

.page-game-lobby-slots-features__highlight {
  color: #E3B505;
}

/* Hero Section */
.page-game-lobby-slots-features__hero-section {
  background: linear-gradient(135deg, #0A2463 0%, #1A3A70 100%);
  padding: 100px 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #F8F8F8;
}

.page-game-lobby-slots-features__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,geometric,gradient]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-lobby-slots-features__hero-section > .page-game-lobby-slots-features__container {
  position: relative;
  z-index: 1;
}

.page-game-lobby-slots-features__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.1;
  font-weight: 700;
  color: #FFFFFF;
}

.page-game-lobby-slots-features__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #D3D3D3;
}

.page-game-lobby-slots-features__hero-cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.page-game-lobby-slots-features__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-lobby-slots-features__btn--primary {
  background-color: #E3B505;
  color: #0A2463;
}

.page-game-lobby-slots-features__btn--primary:hover {
  background-color: #F5DB9C;
  transform: translateY(-3px);
}

.page-game-lobby-slots-features__btn--secondary {
  background-color: transparent;
  color: #E3B505;
  border: 2px solid #E3B505;
}

.page-game-lobby-slots-features__btn--secondary:hover {
  background-color: #E3B505;
  color: #0A2463;
  transform: translateY(-3px);
}

.page-game-lobby-slots-features__hero-image-wrapper {
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
}

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

/* Why Choose Section */
.page-game-lobby-slots-features__why-choose {
  background-color: #0A2463;
}

.page-game-lobby-slots-features__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slots-features__feature-item {
  background-color: #1A3A70;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(227, 181, 5, 0.3);
}

.page-game-lobby-slots-features__feature-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby-slots-features__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.5));
}

.page-game-lobby-slots-features__feature-title {
  font-size: 1.6em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__feature-description {
  font-size: 1em;
  color: #D3D3D3;
}

/* Game Categories Section */
.page-game-lobby-slots-features__game-categories {
  background-color: #0A2463;
}

.page-game-lobby-slots-features__game-category-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  text-align: left;
}

.page-game-lobby-slots-features__game-category-item--reversed {
  flex-direction: row-reverse;
}

.page-game-lobby-slots-features__game-category-content {
  flex: 1;
  min-width: 300px;
}

.page-game-lobby-slots-features__game-category-image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-game-lobby-slots-features__game-category-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 2px solid #E3B505;
}

.page-game-lobby-slots-features__game-category-title {
  font-size: 2.2em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__game-category-description {
  font-size: 1.1em;
  color: #D3D3D3;
  margin-bottom: 20px;
}

.page-game-lobby-slots-features__game-category-subtitle {
  font-size: 1.5em;
  color: #F8F8F8;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-lobby-slots-features__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #D3D3D3;
}

.page-game-lobby-slots-features__list li::before {
  content: '✔';
  color: #E3B505;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-game-lobby-slots-features__list-strong {
  color: #E3B505;
}

.page-game-lobby-slots-features__btn--play, .page-game-lobby-slots-features__btn--explore {
  background-color: #E3B505;
  color: #0A2463;
  padding: 12px 30px;
  font-size: 1em;
  border-radius: 6px;
}

.page-game-lobby-slots-features__btn--play:hover, .page-game-lobby-slots-features__btn--explore:hover {
  background-color: #F5DB9C;
  transform: translateY(-3px);
}

.page-game-lobby-slots-features__other-games {
  margin-top: 60px;
  text-align: center;
}

/* Offers Section */
.page-game-lobby-slots-features__offers {
  background-color: #0A2463;
}

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

.page-game-lobby-slots-features__offer-item {
  background-color: #1A3A70;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(227, 181, 5, 0.3);
}

.page-game-lobby-slots-features__offer-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby-slots-features__offer-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.5));
}

.page-game-lobby-slots-features__offer-title {
  font-size: 1.8em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__offer-description {
  font-size: 1em;
  color: #D3D3D3;
}

.page-game-lobby-slots-features__btn--center {
  margin: 50px auto 0;
  display: block;
  width: fit-content;
}

.page-game-lobby-slots-features__promotion-banner {
  width: 100%;
  max-width: 900px;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #E3B505;
}

/* Safety and Support Section */
.page-game-lobby-slots-features__safety-support {
  background-color: #0A2463;
}

.page-game-lobby-slots-features__safety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slots-features__safety-item {
  background-color: #1A3A70;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(227, 181, 5, 0.3);
}

.page-game-lobby-slots-features__safety-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby-slots-features__safety-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.5));
}

.page-game-lobby-slots-features__safety-title {
  font-size: 1.6em;
  color: #E3B505;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__safety-text {
  font-size: 1em;
  color: #D3D3D3;
}

.page-game-lobby-slots-features__safety-image {
  width: 100%;
  max-width: 800px;
  margin-top: 60px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 2px solid #E3B505;
}

/* Get Started Section */
.page-game-lobby-slots-features__get-started {
  background-color: rgba(227, 181, 5, 0.1);
}

.page-game-lobby-slots-features__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-slots-features__step-item {
  background-color: #1A3A70;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(227, 181, 5, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-slots-features__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #E3B505;
  margin-bottom: 15px;
  display: block;
}

.page-game-lobby-slots-features__step-title {
  font-size: 1.7em;
  color: #F8F8F8;
  margin-bottom: 15px;
}

.page-game-lobby-slots-features__step-description {
  font-size: 1em;
  color: #D3D3D3;
  flex-grow: 1;
}

.page-game-lobby-slots-features__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: 20px;
  background-color: #E3B505;
  color: #0A2463;
}

.page-game-lobby-slots-features__btn--small:hover {
  background-color: #F5DB9C;
}

/* Conclusion Section */
.page-game-lobby-slots-features__conclusion {
  background-color: #0A2463;
}

.page-game-lobby-slots-features__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
  margin-top: 60px;
  background-color: #E3B505;
  color: #0A2463;
}

.page-game-lobby-slots-features__btn--large:hover {
  background-color: #F5DB9C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-slots-features__hero-title {
    font-size: 3em;
  }

  .page-game-lobby-slots-features__section-title {
    font-size: 2.2em;
  }

  .page-game-lobby-slots-features__game-category-item {
    flex-direction: column;
    text-align: center;
  }

  .page-game-lobby-slots-features__game-category-item--reversed {
    flex-direction: column;
  }

  .page-game-lobby-slots-features__game-category-content {
    order: 2; /* Ensure content is below image on small screens for reversed */
  }

  .page-game-lobby-slots-features__game-category-image-wrapper {
    order: 1;
    margin-bottom: 30px;
  }

  .page-game-lobby-slots-features__list {
    text-align: left;
  }

  .page-game-lobby-slots-features__btn--play, .page-game-lobby-slots-features__btn--explore {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-slots-features__hero-title {
    font-size: 2.5em;
  }

  .page-game-lobby-slots-features__hero-description {
    font-size: 1.1em;
  }

  .page-game-lobby-slots-features__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-lobby-slots-features__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-slots-features__section {
    padding: 60px 0;
  }

  .page-game-lobby-slots-features__section-title {
    font-size: 1.8em;
  }

  .page-game-lobby-slots-features__feature-title, .page-game-lobby-slots-features__offer-title, .page-game-lobby-slots-features__safety-title {
    font-size: 1.4em;
  }

  .page-game-lobby-slots-features__game-category-title {
    font-size: 1.8em;
  }

  .page-game-lobby-slots-features__game-category-subtitle {
    font-size: 1.3em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-slots-features__hero-title {
    font-size: 2em;
  }

  .page-game-lobby-slots-features__hero-description {
    font-size: 1em;
  }

  .page-game-lobby-slots-features__section-title {
    font-size: 1.5em;
  }

  .page-game-lobby-slots-features__btn--large {
    font-size: 1em;
    padding: 15px 30px;
  }
}