/* style/game-lobby-new-releases.css */
.page-game-lobby-new-releases {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #1A1A2E; /* Main dark background */
}

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

.page-game-lobby-new-releases__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Gradient background */
  position: relative;
  overflow: hidden;
}

.page-game-lobby-new-releases__hero-content {
  z-index: 1;
  max-width: 800px;
}

.page-game-lobby-new-releases__hero-title {
  font-size: 3.5em;
  color: #E9B824; /* Accent color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-lobby-new-releases__hero-subtitle {
  font-size: 1.5em;
  color: #F0F0F0;
  margin-bottom: 40px;
}

.page-game-lobby-new-releases__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;
  margin: 10px;
  cursor: pointer;
  border: none;
}

.page-game-lobby-new-releases__btn--primary {
  background-color: #E9B824; /* Accent color */
  color: #1A1A2E; /* Dark text for accent background */
}

.page-game-lobby-new-releases__btn--primary:hover {
  background-color: #f7d247;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(233, 184, 36, 0.4);
}

.page-game-lobby-new-releases__btn--secondary {
  background-color: transparent;
  color: #E9B824; /* Accent color text */
  border: 2px solid #E9B824;
}

.page-game-lobby-new-releases__btn--secondary:hover {
  background-color: rgba(233, 184, 36, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(233, 184, 36, 0.2);
}

.page-game-lobby-new-releases__hero-image-wrapper {
  margin-top: 40px;
  width: 100%;
  max-width: 900px;
}

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

.page-game-lobby-new-releases__introduction,
.page-game-lobby-new-releases__featured-games,
.page-game-lobby-new-releases__why-23win,
.page-game-lobby-new-releases__how-to-play,
.page-game-lobby-new-releases__mobile-app,
.page-game-lobby-new-releases__faq,
.page-game-lobby-new-releases__final-cta {
  padding: 60px 0;
}

.page-game-lobby-new-releases__section-title {
  font-size: 2.8em;
  color: #E9B824; /* Accent color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-game-lobby-new-releases__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #E9B824;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-lobby-new-releases__section-description {
  font-size: 1.2em;
  color: #C0C0C0;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-lobby-new-releases__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
  text-align: justify;
}

.page-game-lobby-new-releases__text-block strong {
  color: #E9B824;
}

.page-game-lobby-new-releases__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-lobby-new-releases__game-card {
  background-color: #2A2A4A; /* Slightly lighter dark background */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-new-releases__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.page-game-lobby-new-releases__game-thumbnail {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #E9B824;
}

.page-game-lobby-new-releases__game-title {
  font-size: 1.6em;
  color: #E9B824;
  margin-bottom: 10px;
}

.page-game-lobby-new-releases__game-description {
  font-size: 0.95em;
  color: #C0C0C0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-lobby-new-releases__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto;
}

.page-game-lobby-new-releases__why-23win {
  background-color: #1A1A2E;
}

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

.page-game-lobby-new-releases__why-item {
  background-color: #2A2A4A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.0s ease;
}

.page-game-lobby-new-releases__why-item:hover {
  transform: translateY(-5px);
}

.page-game-lobby-new-releases__why-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #E9B824);
}

.page-game-lobby-new-releases__why-title {
  font-size: 1.8em;
  color: #E9B824;
  margin-bottom: 15px;
}

.page-game-lobby-new-releases__why-item p {
  color: #C0C0C0;
  font-size: 1em;
}

.page-game-lobby-new-releases__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(233, 184, 36, 0.2);
}

.page-game-lobby-new-releases__cta-text {
  font-size: 1.3em;
  color: #F0F0F0;
  margin-bottom: 25px;
  font-weight: 500;
}

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

.page-game-lobby-new-releases__step-card {
  background-color: #2A2A4A;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-game-lobby-new-releases__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #E9B824;
  margin-bottom: 15px;
  background-color: #1A1A2E;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #E9B824;
}

.page-game-lobby-new-releases__step-title {
  font-size: 1.7em;
  color: #E9B824;
  margin-bottom: 10px;
}

.page-game-lobby-new-releases__step-card p {
  color: #C0C0C0;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-lobby-new-releases__process-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 50px auto 0;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-game-lobby-new-releases__mobile-app {
  background: linear-gradient(135deg, #1A1A2E, #3a3a5e);
}

.page-game-lobby-new-releases__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-game-lobby-new-releases__app-text {
  max-width: 600px;
  text-align: center;
}

.page-game-lobby-new-releases__app-text p {
  font-size: 1.1em;
  color: #E0E0E0;
  margin-bottom: 20px;
}

.page-game-lobby-new-releases__app-image-wrapper {
  max-width: 400px;
  width: 100%;
}

.page-game-lobby-new-releases__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 3px solid #E9B824;
}

.page-game-lobby-new-releases__faq-item {
  background-color: #2A2A4A;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-new-releases__faq-question {
  font-size: 1.4em;
  color: #E9B824;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-new-releases__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #E9B824;
  transition: transform 0.3s ease;
}

.page-game-lobby-new-releases__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-lobby-new-releases__faq-answer {
  font-size: 1.05em;
  color: #C0C0C0;
  padding-top: 10px;
  border-top: 1px solid rgba(233, 184, 36, 0.1);
  display: none; /* Hidden by default */
}

.page-game-lobby-new-releases__faq-answer.active {
  display: block;
}

.page-game-lobby-new-releases__final-cta {
  background-color: #2A2A4A;
  text-align: center;
}

.page-game-lobby-new-releases__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-game-lobby-new-releases__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 40px;
  }

  .page-game-lobby-new-releases__hero-content {
    text-align: left;
    margin-right: 40px;
  }

  .page-game-lobby-new-releases__hero-image-wrapper {
    margin-top: 0;
    max-width: 50%;
  }

  .page-game-lobby-new-releases__app-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }

  .page-game-lobby-new-releases__app-text {
    text-align: left;
    margin-right: 40px;
  }

  .page-game-lobby-new-releases__app-image-wrapper {
    max-width: 350px;
  }
}

@media (max-width: 767px) {
  .page-game-lobby-new-releases__hero-title {
    font-size: 2.5em;
  }

  .page-game-lobby-new-releases__hero-subtitle {
    font-size: 1.2em;
  }

  .page-game-lobby-new-releases__section-title {
    font-size: 2em;
  }

  .page-game-lobby-new-releases__section-description {
    font-size: 1em;
  }

  .page-game-lobby-new-releases__btn {
    display: block;
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-game-lobby-new-releases__game-card,
  .page-game-lobby-new-releases__why-item,
  .page-game-lobby-new-releases__step-card {
    padding: 20px;
  }

  .page-game-lobby-new-releases__faq-question {
    font-size: 1.2em;
  }
}