/* style/game-lobby-featured-card-games.css */
.page-game-lobby-featured-card-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark background */
  background-color: #0A1931; /* Primary dark blue background */
}

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

.page-game-lobby-featured-card-games .highlight {
  color: #FFD700; /* Accent gold for highlights */
}

.page-game-lobby-featured-card-games .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-game-lobby-featured-card-games .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  margin-right: 15px;
}

.page-game-lobby-featured-card-games .btn-primary:hover {
  background-color: #e6c200;
}

.page-game-lobby-featured-card-games .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text on dark background */
  border: 2px solid #FFD700;
}

.page-game-lobby-featured-card-games .btn-secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-game-lobby-featured-card-games .btn-tertiary {
  background-color: #1A2E4E; /* Slightly lighter dark blue */
  color: #FFD700;
  padding: 8px 15px;
  font-size: 0.9em;
  border: 1px solid #FFD700;
}

.page-game-lobby-featured-card-games .btn-tertiary:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-game-lobby-featured-card-games .section-title {
  font-size: 2.5em;
  color: #FFFFFF; /* White for main titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
}

.page-game-lobby-featured-card-games .section-title .highlight {
  color: #FFD700;
}

/* Hero Section */
.page-game-lobby-featured-card-games .hero-section {
  background: linear-gradient(135deg, #0A1931, #1A2E4E);
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-game-lobby-featured-card-games .hero-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-game-lobby-featured-card-games .hero-content {
  flex: 1;
  max-width: 600px;
}

.page-game-lobby-featured-card-games .hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-lobby-featured-card-games .hero-description {
  font-size: 1.2em;
  color: #B0B0B0;
  margin-bottom: 30px;
}

.page-game-lobby-featured-card-games .hero-buttons .btn {
  font-size: 1.1em;
  padding: 15px 30px;
}

.page-game-lobby-featured-card-games .hero-image-wrapper {
  flex: 1;
  max-width: 500px;
  text-align: center;
}

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

/* Introduction Section */
.page-game-lobby-featured-card-games .introduction-section {
  padding: 80px 0;
  background-color: #0A1931;
  text-align: center;
}

.page-game-lobby-featured-card-games .introduction-section p {
  max-width: 900px;
  margin: 0 auto 20px auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #D0D0D0;
}

/* Featured Games Section */
.page-game-lobby-featured-card-games .featured-games-section {
  padding: 80px 0;
  background-color: #11223F; /* Slightly lighter dark blue for contrast */
}

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

.page-game-lobby-featured-card-games .game-card {
  background-color: #0A1931;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-lobby-featured-card-games .game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-game-lobby-featured-card-games .game-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-game-lobby-featured-card-games .game-description {
  font-size: 1em;
  color: #C0C0C0;
  line-height: 1.6;
  padding: 0 15px 20px 15px;
  flex-grow: 1;
}

/* Why iwin Section */
.page-game-lobby-featured-card-games .why-iwin-section {
  padding: 80px 0;
  background-color: #0A1931;
}

.page-game-lobby-featured-card-games .advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-game-lobby-featured-card-games .advantage-item {
  background-color: #1A2E4E;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-game-lobby-featured-card-games .advantage-item h3 {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-lobby-featured-card-games .advantage-item p {
  font-size: 1em;
  color: #D0D0D0;
  line-height: 1.7;
}

/* Game Strategy Section */
.page-game-lobby-featured-card-games .game-strategy-section {
  padding: 80px 0;
  background-color: #11223F;
}

.page-game-lobby-featured-card-games .game-strategy-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
  line-height: 1.8;
  color: #D0D0D0;
  text-align: center;
}

.page-game-lobby-featured-card-games .strategy-list {
  max-width: 900px;
  margin: 0 auto;
  list-style-type: decimal;
  color: #E0E0E0;
  font-size: 1.1em;
  line-height: 1.8;
  padding-left: 20px;
}

.page-game-lobby-featured-card-games .strategy-list li {
  margin-bottom: 15px;
  color: #C0C0C0;
}

.page-game-lobby-featured-card-games .strategy-list li strong {
  color: #FFD700;
}

/* CTA Section */
.page-game-lobby-featured-card-games .cta-section {
  background-color: #0A1931;
  padding: 80px 0;
  text-align: center;
}

.page-game-lobby-featured-card-games .cta-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-game-lobby-featured-card-games .cta-description {
  font-size: 1.3em;
  color: #B0B0B0;
  margin-bottom: 40px;
}

.page-game-lobby-featured-card-games .cta-buttons .btn {
  font-size: 1.2em;
  padding: 18px 35px;
}

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

  .page-game-lobby-featured-card-games .hero-content,
  .page-game-lobby-featured-card-games .hero-image-wrapper {
    max-width: 100%;
  }

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

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

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

  .page-game-lobby-featured-card-games .game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-game-lobby-featured-card-games .advantages-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .page-game-lobby-featured-card-games .cta-title {
    font-size: 2.2em;
  }

  .page-game-lobby-featured-card-games .cta-description {
    font-size: 1.1em;
  }
}

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

  .page-game-lobby-featured-card-games .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-game-lobby-featured-card-games .btn-primary {
    margin-right: 0;
  }

  .page-game-lobby-featured-card-games .section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-lobby-featured-card-games .game-grid,
  .page-game-lobby-featured-card-games .advantages-grid {
    gap: 20px;
  }

  .page-game-lobby-featured-card-games .advantage-item {
    padding: 25px;
  }

  .page-game-lobby-featured-card-games .strategy-list {
    font-size: 1em;
  }

  .page-game-lobby-featured-card-games .cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-game-lobby-featured-card-games .hero-title {
    font-size: 2.5em;
  }

  .page-game-lobby-featured-card-games .hero-description {
    font-size: 1em;
  }

  .page-game-lobby-featured-card-games .hero-buttons .btn {
    font-size: 1em;
    padding: 12px 20px;
  }

  .page-game-lobby-featured-card-games .section-title {
    font-size: 1.6em;
    padding-top: 40px;
  }

  .page-game-lobby-featured-card-games .game-card,
  .page-game-lobby-featured-card-games .advantage-item {
    padding: 20px;
  }

  .page-game-lobby-featured-card-games .cta-title {
    font-size: 1.6em;
  }

  .page-game-lobby-featured-card-games .cta-buttons .btn {
    font-size: 1em;
    padding: 15px 25px;
  }
}