/* style/game-lobby-sports.css */
.page-game-lobby-sports {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-game-lobby-sports__section {
  padding: 60px 0;
  text-align: center;
}

.page-game-lobby-sports__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-game-lobby-sports__section-title {
  font-size: 2.5em;
  color: #0056B3;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-game-lobby-sports__hero-section {
  background: linear-gradient(135deg, #0056B3, #003a7a);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-sports__hero-section .page-game-lobby-sports__container {
  position: relative;
  z-index: 1;
}

.page-game-lobby-sports__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-game-lobby-sports__hero-description {
  font-size: 1.3em;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-game-lobby-sports__hero-actions .page-game-lobby-sports__btn {
  margin: 0 10px;
}

/* Buttons */
.page-game-lobby-sports__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-lobby-sports__btn--primary {
  background-color: #FFC107;
  color: #0056B3;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-sports__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-game-lobby-sports__btn--secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #FFC107;
}

.page-game-lobby-sports__btn--secondary:hover {
  background-color: #FFC107;
  color: #0056B3;
  transform: translateY(-2px);
}

.page-game-lobby-sports__btn--link {
  background-color: transparent;
  color: #0056B3;
  border: 1px solid #0056B3;
  padding: 8px 20px;
  font-size: 1em;
  border-radius: 25px;
}

.page-game-lobby-sports__btn--link:hover {
  background-color: #0056B3;
  color: #fff;
}

.page-game-lobby-sports__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
  border-radius: 20px;
  background-color: #0056B3;
  color: #fff;
}

.page-game-lobby-sports__btn--small:hover {
  background-color: #003a7a;
  transform: translateY(-1px);
}

/* Why Shbet Section */
.page-game-lobby-sports__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-lobby-sports__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-lobby-sports__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-sports__feature-item h3 {
  color: #0056B3;
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-game-lobby-sports__feature-item p {
  color: #666;
  font-size: 0.95em;
}

.page-game-lobby-sports__feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* Sports Types Section */
.page-game-lobby-sports__sport-category {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  padding: 30px;
  text-align: left;
}

.page-game-lobby-sports__sport-category:last-child {
  margin-bottom: 0;
}

.page-game-lobby-sports__sport-title {
  font-size: 2em;
  color: #0056B3;
  margin-bottom: 20px;
  text-align: center;
}

.page-game-lobby-sports__sport-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.page-game-lobby-sports__sport-category p {
  font-size: 1em;
  color: #444;
  margin-bottom: 25px;
}

.page-game-lobby-sports__sport-category .page-game-lobby-sports__btn--link {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* Live Betting Section */
.page-game-lobby-sports__full-width-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Promotions Section */
.page-game-lobby-sports__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-game-lobby-sports__promo-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

.page-game-lobby-sports__list-icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
  object-fit: contain;
}

/* How to Start Section */
.page-game-lobby-sports__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-game-lobby-sports__steps-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-sports__steps-list li h3 {
  color: #0056B3;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-game-lobby-sports__steps-list li p {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Mobile App Section */
.page-game-lobby-sports__app-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.page-game-lobby-sports__app-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

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

.page-game-lobby-sports__app-image-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
}

.page-game-lobby-sports__app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsible Gambling Section */
.page-game-lobby-sports__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-game-lobby-sports__responsible-list li {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333;
  display: flex;
  align-items: center;
}

/* FAQ Section */
.page-game-lobby-sports__faq-item {
  background-color: #fff;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.page-game-lobby-sports__faq-item h3 {
  color: #0056B3;
  font-size: 1.4em;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-lobby-sports__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-game-lobby-sports__faq-item.active h3::after {
  content: '-';
  transform: rotate(180deg);
}

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

.page-game-lobby-sports__faq-item.active .page-game-lobby-sports__faq-answer {
  max-height: 200px; /* Adjust based on content */
  opacity: 1;
  margin-top: 15px;
}

/* CTA Section */
.page-game-lobby-sports__cta-section {
  background: linear-gradient(45deg, #0056B3, #003a7a);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-sports__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-game-lobby-sports__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-lobby-sports__hero-title {
    font-size: 2.8em;
  }
  .page-game-lobby-sports__section-title {
    font-size: 2em;
  }
  .page-game-lobby-sports__features-grid,
  .page-game-lobby-sports__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-game-lobby-sports__app-content {
    flex-direction: column-reverse; /* image on top for mobile */
  }
  .page-game-lobby-sports__app-text,
  .page-game-lobby-sports__app-image-wrapper {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-sports__hero-title {
    font-size: 2.2em;
  }
  .page-game-lobby-sports__hero-description {
    font-size: 1.1em;
  }
  .page-game-lobby-sports__hero-actions .page-game-lobby-sports__btn {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  .page-game-lobby-sports__section-title {
    font-size: 1.8em;
  }
  .page-game-lobby-sports__section-description {
    font-size: 1em;
  }
  .page-game-lobby-sports__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-game-lobby-sports__sport-title {
    font-size: 1.8em;
  }
  .page-game-lobby-sports__cta-title {
    font-size: 2.2em;
  }
  .page-game-lobby-sports__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-sports__hero-title {
    font-size: 1.8em;
  }
  .page-game-lobby-sports__section-title {
    font-size: 1.6em;
  }
  .page-game-lobby-sports__features-grid,
  .page-game-lobby-sports__steps-list {
    grid-template-columns: 1fr;
  }
  .page-game-lobby-sports__cta-title {
    font-size: 1.8em;
  }
  .page-game-lobby-sports__promo-list li,
  .page-game-lobby-sports__responsible-list li {
    font-size: 0.95em;
    padding: 15px;
  }
  .page-game-lobby-sports__faq-item h3 {
    font-size: 1.2em;
  }
}