.page-game-lobby-poker-games {
  font-family: 'Arial', sans-serif;
  color: #1A237E; /* Dark text on light backgrounds */
  line-height: 1.7;
  background-color: #f8f8f8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-game-lobby-poker-games__hero {
  background-color: #1A237E; /* Dark indigo background */
  color: #FFFFFF; /* White text for contrast */
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-poker-games__hero-content {
  flex: 1;
  padding: 20px;
}

.page-game-lobby-poker-games__hero h1 {
  color: #FFD700; /* Gold heading for emphasis */
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-lobby-poker-games__hero p {
  font-size: 1.15em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #E0E0E0; /* Slightly off-white for body text */
}

.page-game-lobby-poker-games__hero-image {
  flex: 1;
  max-width: 100%;
}

.page-game-lobby-poker-games__hero-image img {
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.page-game-lobby-poker-games__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
  letter-spacing: 0.5px;
}

.page-game-lobby-poker-games__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A237E; /* Dark indigo text on gold */
}

.page-game-lobby-poker-games__btn--primary:hover {
  background-color: #e5c100; /* Darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-lobby-poker-games__btn--secondary {
  background-color: transparent;
  color: #1A237E; /* Dark indigo text on light background */
  border: 2px solid #1A237E;
}

.page-game-lobby-poker-games__btn--secondary:hover {
  background-color: #1A237E;
  color: #FFD700; /* Gold text on dark background */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 35, 126, 0.4);
}

.page-game-lobby-poker-games h2, 
.page-game-lobby-poker-games h3 {
  color: #1A237E;
  margin-top: 0;
  margin-bottom: 20px;
}

.page-game-lobby-poker-games__section-title {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
  color: #1A237E;
  font-weight: bold;
}

.page-game-lobby-poker-games__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #FFD700;
  border-radius: 3px;
}

.page-game-lobby-poker-games__variations,
.page-game-lobby-poker-games__why-choose,
.page-game-lobby-poker-games__strategy,
.page-game-lobby-poker-games__cta,
.page-game-lobby-poker-games__responsible-gambling {
  padding: 80px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

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

.page-game-lobby-poker-games__card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  padding: 35px;
  text-align: center;
  color: #1A237E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-lobby-poker-games__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.page-game-lobby-poker-games__card img {
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
}

.page-game-lobby-poker-games__card h3 {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
}

.page-game-lobby-poker-games__card p {
  font-size: 1em;
  color: #333333;
  margin-bottom: 25px;
}

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

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

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

.page-game-lobby-poker-games__icon {
  font-size: 3em;
  color: #FFD700; /* Gold icon */
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.page-game-lobby-poker-games__feature-item h3 {
  font-size: 1.4em;
  color: #1A237E;
  margin-bottom: 10px;
}

.page-game-lobby-poker-games__feature-item p {
  font-size: 0.95em;
  color: #555555;
}

.page-game-lobby-poker-games__image-full {
  margin-top: 60px;
  text-align: center;
}

.page-game-lobby-poker-games__image-full img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  max-width: 100%;
  height: auto;
}

.page-game-lobby-poker-games__strategy {
  background-color: #f0f4f7;
  border-radius: 15px;
  margin-top: 80px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

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

.page-game-lobby-poker-games__strategy-content img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.page-game-lobby-poker-games__strategy-text {
  text-align: left;
}

.page-game-lobby-poker-games__strategy-text p {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #333333;
}

.page-game-lobby-poker-games__strategy-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-lobby-poker-games__strategy-text li {
  background-color: #FFFFFF;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  color: #1A237E;
  font-size: 1em;
}

.page-game-lobby-poker-games__strategy-text li strong {
  color: #1A237E;
}

.page-game-lobby-poker-games__cta {
  background-color: #1A237E; /* Dark indigo background */
  color: #FFFFFF; /* White text */
  padding: 80px 5%;
  text-align: center;
  margin-top: 80px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-game-lobby-poker-games__cta h2 {
  color: #FFD700; /* Gold heading */
  font-size: 2.8em;
  margin-bottom: 25px;
}

.page-game-lobby-poker-games__cta p {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #E0E0E0;
}

.page-game-lobby-poker-games__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.page-game-lobby-poker-games__responsible-gambling {
  background-color: #e3e8ed; /* Slightly lighter background */
  padding: 80px 5%;
  text-align: center;
  color: #1A237E;
  margin-top: 80px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.page-game-lobby-poker-games__responsible-gambling h2 {
  color: #1A237E;
  font-size: 2.5em;
}

.page-game-lobby-poker-games__responsible-gambling p {
  font-size: 1.05em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-game-lobby-poker-games a:not(.page-game-lobby-poker-games__btn) {
  color: #1A237E; /* Default link color */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-lobby-poker-games a:not(.page-game-lobby-poker-games__btn):hover {
  color: #FFD700; /* Gold on hover */
}

@media (min-width: 768px) {
  .page-game-lobby-poker-games__hero {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 100px 5%;
  }
  .page-game-lobby-poker-games__hero-content {
    padding-right: 40px;
  }
  .page-game-lobby-poker-games__hero-image {
    max-width: 45%;
  }
  .page-game-lobby-poker-games__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-game-lobby-poker-games__features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-game-lobby-poker-games__strategy-content {
    flex-direction: row;
    text-align: left;
  }
  .page-game-lobby-poker-games__strategy-content img {
    flex: 1;
    max-width: 45%;
  }
  .page-game-lobby-poker-games__strategy-text {
    flex: 1;
  }
  .page-game-lobby-poker-games__cta-buttons {
    flex-direction: row;
    gap: 30px;
  }
}

@media (min-width: 1024px) {
  .page-game-lobby-poker-games__features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}