.page-game-lobby-poker-games {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for main text on dark background */
  background-color: #0F1A25; /* Darker background */
  line-height: 1.6;
}

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

.page-game-lobby-poker-games .hero-section {
  background: linear-gradient(135deg, #1A2B3C 0%, #0F1A25 70%);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap-reverse;
  gap: 40px;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

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

.page-game-lobby-poker-games .hero-content {
  max-width: 600px;
  text-align: left;
  z-index: 1;
  padding: 20px;
}

.page-game-lobby-poker-games .hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-poker-games .hero-description {
  font-size: 1.3em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-game-lobby-poker-games .hero-actions {
  display: flex;
  gap: 20px;
}

.page-game-lobby-poker-games .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;
  cursor: pointer;
  border: none;
  text-align: center;
}

.page-game-lobby-poker-games .btn-primary {
  background-color: #FFD700; /* Gold for primary action */
  color: #1A2B3C; /* Dark blue for text */
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-poker-games .btn-primary:hover {
  background-color: #E5C100;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-poker-games .btn-secondary {
  background-color: #1A2B3C; /* Dark blue for secondary action */
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-lobby-poker-games .btn-secondary:hover {
  background-color: #2F4F6F;
  transform: translateY(-2px);
}

.page-game-lobby-poker-games .hero-image-container {
  flex-shrink: 0;
  z-index: 1;
}

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

.page-game-lobby-poker-games .section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-game-lobby-poker-games .section-intro {
  font-size: 1.2em;
  color: #A0A0A0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

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

.page-game-lobby-poker-games .about-poker-section,
.page-game-lobby-poker-games .game-types-section,
.page-game-lobby-poker-games .promotions-section,
.page-game-lobby-poker-games .how-to-play-section,
.page-game-lobby-poker-games .app-download-section,
.page-game-lobby-poker-games .faq-section,
.page-game-lobby-poker-games .cta-final-section {
  padding: 80px 0;
  background-color: #1A2B3C; /* Main section background */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-game-lobby-poker-games .about-poker-section {
  background-color: #0F1A25;
  padding-top: 40px;
}

.page-game-lobby-poker-games .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-game-lobby-poker-games .feature-item {
  background-color: #1A2B3C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-game-lobby-poker-games .feature-item:hover {
  transform: translateY(-10px);
}

.page-game-lobby-poker-games .feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-game-lobby-poker-games .feature-item h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-poker-games .feature-item p {
  color: #B0B0B0;
  font-size: 1em;
}

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

.page-game-lobby-poker-games .game-card {
  background-color: #0F1A25;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-lobby-poker-games .game-card:hover {
  transform: translateY(-10px);
}

.page-game-lobby-poker-games .game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-lobby-poker-games .game-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-game-lobby-poker-games .game-card p {
  color: #B0B0B0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-game-lobby-poker-games .game-card .btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  margin-bottom: 20px;
  background-color: #FFD700;
  color: #1A2B3C;
}

.page-game-lobby-poker-games .game-card .btn-small:hover {
  background-color: #E5C100;
}

.page-game-lobby-poker-games .promotions-section {
  background-color: #0F1A25;
}

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

.page-game-lobby-poker-games .promotion-card {
  background-color: #1A2B3C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-game-lobby-poker-games .promotion-card:hover {
  transform: translateY(-10px);
}

.page-game-lobby-poker-games .promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-lobby-poker-games .promotion-card h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin: 20px 0 10px;
}

.page-game-lobby-poker-games .promotion-card p {
  color: #B0B0B0;
  padding: 0 20px 20px;
  font-size: 0.95em;
}

.page-game-lobby-poker-games .promotion-card .btn-primary {
  margin-bottom: 20px;
}

.page-game-lobby-poker-games .how-to-play-section {
  background-color: #1A2B3C;
}

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

.page-game-lobby-poker-games .step-item {
  background-color: #0F1A25;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-top: 60px;
}

.page-game-lobby-poker-games .step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFD700;
  color: #1A2B3C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  border: 4px solid #1A2B3C;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-game-lobby-poker-games .step-item h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-poker-games .step-item p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-game-lobby-poker-games .cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-game-lobby-poker-games .cta-bottom p {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 30px;
}

.page-game-lobby-poker-games .app-download-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  background-color: #0F1A25;
  padding: 100px 0;
}

.page-game-lobby-poker-games .app-content {
  max-width: 500px;
  text-align: left;
}

.page-game-lobby-poker-games .app-content .section-title {
  text-align: left;
  margin-top: 0;
}

.page-game-lobby-poker-games .app-content p {
  color: #B0B0B0;
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-game-lobby-poker-games .download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-game-lobby-poker-games .btn-download {
  background-color: #1A2B3C;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 12px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1em;
}

.page-game-lobby-poker-games .btn-download img {
  width: 24px;
  height: 24px;
  filter: invert(80%) sepia(100%) saturate(2000%) hue-rotate(30deg) brightness(100%) contrast(100%); /* Gold effect */
}

.page-game-lobby-poker-games .btn-download:hover {
  background-color: #2F4F6F;
  transform: translateY(-2px);
}

.page-game-lobby-poker-games .app-image-container {
  flex-shrink: 0;
}

.page-game-lobby-poker-games .app-mockup-image {
  max-width: 350px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.page-game-lobby-poker-games .faq-section {
  background-color: #1A2B3C;
}

.page-game-lobby-poker-games .faq-items {
  margin-top: 40px;
}

.page-game-lobby-poker-games .faq-item {
  background-color: #0F1A25;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-game-lobby-poker-games .faq-item p {
  color: #B0B0B0;
  font-size: 1em;
  display: block; /* Ensure content is visible by default or add JS for toggle */
}

.page-game-lobby-poker-games .cta-final-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #1A2B3C, #0F1A25);
  border-radius: 0;
  margin-bottom: 0;
}

.page-game-lobby-poker-games .cta-final-section .section-title {
  margin-top: 0;
}

.page-game-lobby-poker-games .btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 40px;
}

.page-game-lobby-poker-games .contact-info {
  margin-top: 30px;
  font-size: 1.1em;
  color: #C0C0C0;
}

.page-game-lobby-poker-games .contact-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-game-lobby-poker-games .contact-link:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-lobby-poker-games .hero-section {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-game-lobby-poker-games .hero-content {
    text-align: center;
  }

  .page-game-lobby-poker-games .hero-actions {
    justify-content: center;
  }

  .page-game-lobby-poker-games .hero-title {
    font-size: 2.8em;
  }

  .page-game-lobby-poker-games .hero-description {
    font-size: 1.1em;
  }

  .page-game-lobby-poker-games .app-download-section {
    flex-direction: column;
    text-align: center;
  }

  .page-game-lobby-poker-games .app-content {
    text-align: center;
  }

  .page-game-lobby-poker-games .app-content .section-title {
    text-align: center;
  }

  .page-game-lobby-poker-games .download-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-game-lobby-poker-games .hero-section {
    padding: 80px 0 40px;
  }

  .page-game-lobby-poker-games .hero-title {
    font-size: 2.2em;
  }

  .page-game-lobby-poker-games .section-title {
    font-size: 2em;
  }

  .page-game-lobby-poker-games .section-intro {
    font-size: 1em;
  }

  .page-game-lobby-poker-games .btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-lobby-poker-games .app-mockup-image {
    max-width: 280px;
  }

  .page-game-lobby-poker-games .about-poker-section,
  .page-game-lobby-poker-games .game-types-section,
  .page-game-lobby-poker-games .promotions-section,
  .page-game-lobby-poker-games .how-to-play-section,
  .page-game-lobby-poker-games .app-download-section,
  .page-game-lobby-poker-games .faq-section,
  .page-game-lobby-poker-games .cta-final-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-poker-games .hero-actions {
    flex-direction: column;
  }

  .page-game-lobby-poker-games .btn {
    width: 100%;
  }

  .page-game-lobby-poker-games .download-buttons {
    flex-direction: column;
  }
}