.page-game-lobby-latest-slot-games {
  font-family: 'Arial', sans-serif;
  color: #FFFFFF; /* White text for contrast on dark background */
  background-color: #0A1931; /* Deep blue primary background */
  line-height: 1.6;
}

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

.page-game-lobby-latest-slot-games__hero {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a66 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-game-lobby-latest-slot-games__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-game-lobby-latest-slot-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-latest-slot-games__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

.page-game-lobby-latest-slot-games__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
}

.page-game-lobby-latest-slot-games__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-lobby-latest-slot-games__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold CTA button */
  color: #0A1931; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  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-game-lobby-latest-slot-games__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-game-lobby-latest-slot-games__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
  padding-top: 60px;
}

.page-game-lobby-latest-slot-games__introduction,
.page-game-lobby-latest-slot-games__why-iwin,
.page-game-lobby-latest-slot-games__promotions,
.page-game-lobby-latest-slot-games__how-to-play,
.page-game-lobby-latest-slot-games__tips,
.page-game-lobby-latest-slot-games__mobile-app,
.page-game-lobby-latest-slot-games__faq,
.page-game-lobby-latest-slot-games__call-to-action {
  padding: 60px 0;
}

.page-game-lobby-latest-slot-games__introduction p,
.page-game-lobby-latest-slot-games__promotions p,
.page-game-lobby-latest-slot-games__tips p,
.page-game-lobby-latest-slot-games__call-to-action p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #E0E0E0;
}

.page-game-lobby-latest-slot-games__featured-games {
  background-color: #0d213f; /* Slightly lighter dark blue for section background */
  padding: 80px 0;
}

.page-game-lobby-latest-slot-games__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-game-lobby-latest-slot-games__game-card {
  background-color: #1a3a66; /* Even lighter dark blue for card background */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-lobby-latest-slot-games__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-game-lobby-latest-slot-games__game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-latest-slot-games__game-description {
  font-size: 1em;
  color: #CCCCCC;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-lobby-latest-slot-games__game-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #E0E0E0;
}

.page-game-lobby-latest-slot-games__game-features li {
  margin-bottom: 5px;
}

.page-game-lobby-latest-slot-games__game-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-lobby-latest-slot-games__game-button:hover {
  background-color: #e6c200;
}

.page-game-lobby-latest-slot-games__why-iwin {
  background-color: #0A1931;
}

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

.page-game-lobby-latest-slot-games__feature-item {
  background-color: #1a3a66;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-latest-slot-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: invert(80%) sepia(80%) saturate(1000%) hue-rotate(0deg) brightness(1.2) contrast(1.2); /* Make icons gold */
}

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

.page-game-lobby-latest-slot-games__feature-item p {
  color: #CCCCCC;
  font-size: 0.95em;
  text-align: center;
}

.page-game-lobby-latest-slot-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-game-lobby-latest-slot-games__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-game-lobby-latest-slot-games__promotions {
  background-color: #0d213f;
}

.page-game-lobby-latest-slot-games__promo-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  color: #E0E0E0;
}

.page-game-lobby-latest-slot-games__promo-list li {
  background-color: #1a3a66;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 1.1em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-latest-slot-games__how-to-play {
  background-color: #0A1931;
}

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

.page-game-lobby-latest-slot-games__step-item {
  background-color: #1a3a66;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
}

.page-game-lobby-latest-slot-games__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #0A1931;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-latest-slot-games__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-latest-slot-games__step-item p {
  color: #CCCCCC;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-game-lobby-latest-slot-games__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A1931;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-game-lobby-latest-slot-games__step-button:hover {
  background-color: #e6c200;
}

.page-game-lobby-latest-slot-games__tips {
  background-color: #0d213f;
}

.page-game-lobby-latest-slot-games__tip-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 30px auto;
  color: #E0E0E0;
}

.page-game-lobby-latest-slot-games__tip-list li {
  background-color: #1a3a66;
  margin-bottom: 15px;
  padding: 15px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  font-size: 1.1em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-latest-slot-games__mobile-app {
  background-color: #0A1931;
}

.page-game-lobby-latest-slot-games__mobile-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  text-align: center;
}

.page-game-lobby-latest-slot-games__mobile-content {
  max-width: 600px;
}

.page-game-lobby-latest-slot-games__mobile-app .page-game-lobby-latest-slot-games__section-title {
  text-align: center;
}

.page-game-lobby-latest-slot-games__mobile-app p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 25px;
}

.page-game-lobby-latest-slot-games__mobile-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  color: #E0E0E0;
  font-size: 1em;
}

.page-game-lobby-latest-slot-games__mobile-benefits li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-game-lobby-latest-slot-games__mobile-benefits li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.page-game-lobby-latest-slot-games__mobile-image-wrapper {
  max-width: 400px;
  width: 100%;
}

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

.page-game-lobby-latest-slot-games__faq {
  background-color: #0d213f;
}

.page-game-lobby-latest-slot-games__accordion {
  max-width: 800px;
  margin: 40px auto;
}

.page-game-lobby-latest-slot-games__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #1a3a66;
  border-radius: 10px;
  overflow: hidden;
}

.page-game-lobby-latest-slot-games__accordion-header {
  background-color: #1a3a66;
  color: #FFD700;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-game-lobby-latest-slot-games__accordion-header:hover {
  background-color: #2a4c7e;
}

.page-game-lobby-latest-slot-games__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-game-lobby-latest-slot-games__accordion-body {
  padding: 0 25px;
  background-color: #0A1931;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-game-lobby-latest-slot-games__accordion-body p {
  color: #CCCCCC;
  font-size: 1em;
  padding-bottom: 15px;
  text-align: left;
  margin: 0;
}

.page-game-lobby-latest-slot-games__call-to-action {
  background-color: #0A1931;
  text-align: center;
  padding-bottom: 80px;
}

.page-game-lobby-latest-slot-games__cta-button--final {
  background-color: #FFD700;
  color: #0A1931;
  font-size: 1.3em;
  padding: 18px 45px;
  border-radius: 50px;
}

.page-game-lobby-latest-slot-games__cta-button--final:hover {
  background-color: #e6c200;
}

.page-game-lobby-latest-slot-games .highlight {
  color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-lobby-latest-slot-games__hero-title {
    font-size: 2.5em;
  }

  .page-game-lobby-latest-slot-games__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-lobby-latest-slot-games__section-title {
    font-size: 2em;
  }

  .page-game-lobby-latest-slot-games__game-card,
  .page-game-lobby-latest-slot-games__feature-item,
  .page-game-lobby-latest-slot-games__step-item {
    padding: 20px;
  }

  .page-game-lobby-latest-slot-games__game-title {
    font-size: 1.5em;
  }

  .page-game-lobby-latest-slot-games__mobile-flex {
    flex-direction: column;
  }
}

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

  .page-game-lobby-latest-slot-games__hero-subtitle {
    font-size: 1em;
  }

  .page-game-lobby-latest-slot-games__cta-button,
  .page-game-lobby-latest-slot-games__cta-button--large,
  .page-game-lobby-latest-slot-games__cta-button--final {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-latest-slot-games__section-title {
    font-size: 1.8em;
  }

  .page-game-lobby-latest-slot-games__game-grid,
  .page-game-lobby-latest-slot-games__features-grid,
  .page-game-lobby-latest-slot-games__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-game-lobby-latest-slot-games__promo-list li,
  .page-game-lobby-latest-slot-games__tip-list li {
    font-size: 0.95em;
    padding: 12px 20px;
  }

  .page-game-lobby-latest-slot-games__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
}