.page-online-games-poker {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark backgrounds */
  line-height: 1.6;
}

.page-online-games-poker__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-online-games-poker__hero {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #0A203C;
}

.page-online-games-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the background image */
}

.page-online-games-poker__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 32, 60, 0.8), rgba(255, 215, 0, 0.2));
  z-index: 2;
}

.page-online-games-poker__hero-content {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 800px;
}

.page-online-games-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-online-games-poker__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-online-games-poker__hero-actions .page-online-games-poker__button {
  margin: 0 10px;
}

/* General Section Styling */
.page-online-games-poker__section {
  padding: 80px 0;
  background-color: #0A203C;
  color: #E0E0E0;
}

.page-online-games-poker__section:nth-of-type(even) {
  background-color: #0F2A4D; /* Slightly lighter dark background for contrast */
}

.page-online-games-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
}

.page-online-games-poker__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #B0B0B0;
}

/* Buttons */
.page-online-games-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-online-games-poker__button--primary {
  background-color: #FFD700;
  color: #0A203C;
}

.page-online-games-poker__button--primary:hover {
  background-color: #E0C000;
  transform: translateY(-2px);
}

.page-online-games-poker__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-online-games-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #0A203C;
  transform: translateY(-2px);
}

.page-online-games-poker__button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-online-games-poker__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

/* About Section */
.page-online-games-poker__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-online-games-poker__feature-item {
  text-align: center;
  padding: 30px;
  background-color: #1A3455; /* Darker blue for feature cards */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-online-games-poker__feature-item:hover {
  transform: translateY(-5px);
}

.page-online-games-poker__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(1.2); /* Make icons pop */
}

.page-online-games-poker__feature-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-online-games-poker__feature-item p {
  color: #B0B0B0;
  font-size: 0.95em;
}

/* Games Section */
.page-online-games-poker__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-online-games-poker__game-card {
  background-color: #1A3455;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-online-games-poker__game-card:hover {
  transform: translateY(-5px);
}

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

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

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

.page-online-games-poker__game-card .page-online-games-poker__button {
  margin-bottom: 20px;
}

/* Strategy Section */
.page-online-games-poker__strategy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-online-games-poker__strategy-text {
  flex: 1;
  min-width: 300px;
}

.page-online-games-poker__strategy-text h3 {
  color: #FFD700;
  font-size: 2em;
  margin-bottom: 15px;
}

.page-online-games-poker__strategy-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-online-games-poker__strategy-text ul li {
  background-color: #1A3455;
  padding: 10px 15px;
  margin-bottom: 8px;
  border-left: 4px solid #FFD700;
  border-radius: 4px;
  color: #E0E0E0;
}

.page-online-games-poker__strategy-text p {
  color: #B0B0B0;
  font-size: 1em;
}

.page-online-games-poker__strategy-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-online-games-poker__strategy-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* CTA Download Section */
.page-online-games-poker__cta-download {
  background-color: #0A203C;
}

.page-online-games-poker__cta-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px;
  background: linear-gradient(90deg, #0F2A4D, #1A3455);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-online-games-poker__cta-text {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-online-games-poker__cta-text .page-online-games-poker__section-title {
  text-align: left;
  font-size: 2.5em;
  margin-bottom: 15px;
}

.page-online-games-poker__cta-text p {
  text-align: left;
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #B0B0B0;
}

.page-online-games-poker__cta-image-wrapper {
  flex: 0 0 350px;
  text-align: center;
}

.page-online-games-poker__cta-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Register Section */
.page-online-games-poker__register {
  text-align: center;
}

.page-online-games-poker__steps {
  list-style: none;
  padding: 0;
  margin: 60px auto;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.page-online-games-poker__steps li {
  background-color: #1A3455;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: left;
  position: relative;
  counter-increment: step-counter;
}

.page-online-games-poker__steps li::before {
  content: "0" counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  opacity: 0.7;
  z-index: 0;
}

.page-online-games-poker__steps li strong {
  display: block;
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.page-online-games-poker__steps li p {
  color: #B0B0B0;
  position: relative;
  z-index: 1;
}

/* Promotions Section */
.page-online-games-poker__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-online-games-poker__promo-card {
  background-color: #1A3455;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-online-games-poker__promo-card:hover {
  transform: translateY(-5px);
}

.page-online-games-poker__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

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

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

.page-online-games-poker__promo-card .page-online-games-poker__button {
  margin-bottom: 20px;
}

.page-online-games-poker__promo-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #B0B0B0;
}

/* FAQ Section */
.page-online-games-poker__faq-item {
  background-color: #1A3455;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-online-games-poker__faq-item h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-online-games-poker__faq-item p {
  color: #E0E0E0;
  font-size: 1em;
}

.page-online-games-poker__faq-item a {
  color: #FFD700;
  text-decoration: none;
}

.page-online-games-poker__faq-item a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-online-games-poker__hero {
    height: 500px;
  }

  .page-online-games-poker__hero-title {
    font-size: 2.8em;
  }

  .page-online-games-poker__hero-subtitle {
    font-size: 1.2em;
  }

  .page-online-games-poker__section-title {
    font-size: 2.2em;
  }

  .page-online-games-poker__cta-content {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-online-games-poker__cta-text {
    text-align: center;
  }

  .page-online-games-poker__cta-text .page-online-games-poker__section-title {
    text-align: center;
  }

  .page-online-games-poker__cta-text p {
    text-align: center;
  }

  .page-online-games-poker__strategy-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-online-games-poker__hero {
    height: 400px;
  }

  .page-online-games-poker__hero-title {
    font-size: 2.2em;
  }

  .page-online-games-poker__hero-subtitle {
    font-size: 1em;
  }

  .page-online-games-poker__hero-actions .page-online-games-poker__button {
    display: block;
    margin: 10px auto;
  }

  .page-online-games-poker__section {
    padding: 60px 0;
  }

  .page-online-games-poker__section-title {
    font-size: 1.8em;
  }

  .page-online-games-poker__section-description {
    margin-bottom: 40px;
  }

  .page-online-games-poker__steps li {
    min-width: unset;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-online-games-poker__hero-title {
    font-size: 1.8em;
  }

  .page-online-games-poker__hero-subtitle {
    font-size: 0.9em;
  }

  .page-online-games-poker__button {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-online-games-poker__section-title {
    font-size: 1.5em;
  }

  .page-online-games-poker__steps li::before {
    font-size: 2em;
    top: -10px;
    left: 15px;
  }

  .page-online-games-poker__steps li strong {
    font-size: 1.3em;
  }
}

/* Ensure color contrast for all elements */
.page-online-games-poker h1, .page-online-games-poker h2, .page-online-games-poker h3 {
  color: #FFD700; /* Bright yellow on dark backgrounds */
}

.page-online-games-poker p, .page-online-games-poker li {
  color: #E0E0E0; /* Light grey on dark backgrounds */
}

.page-online-games-poker__button--primary {
  background-color: #FFD700;
  color: #0A203C; /* Dark text on bright background */
}

.page-online-games-poker__button--secondary {
  color: #FFD700; /* Bright text on transparent background with bright border */
  border-color: #FFD700;
}

.page-online-games-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #0A203C; /* Dark text on bright background */
}

.page-online-games-poker a {
  color: #FFD700; /* Links are bright on dark backgrounds */
}

.page-online-games-poker__feature-item, .page-online-games-poker__game-card, .page-online-games-poker__promo-card, .page-online-games-poker__faq-item, .page-online-games-poker__steps li {
  background-color: #1A3455; /* Slightly lighter dark blue for card backgrounds */
}

.page-online-games-poker__strategy-text ul li {
  background-color: #1A3455;
  border-left-color: #FFD700;
  color: #E0E0E0;
}