.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
  padding: 0;
  margin-bottom: 60px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-poker__hero-container {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 90%;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-poker__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}

.page-poker__button--register {
  background-color: #000000;
  color: #FFFFFF; /* Register text color */
  border: 2px solid #FFFFFF;
}

.page-poker__button--register:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__button--login {
  background-color: #FCBC45; /* Login button background color */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__mobile-section, .page-poker__promotions-section, .page-poker__security-section, .page-poker__get-started-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 60px 0;
}

.page-poker__about-section {
  background-color: #f8f8f8;
}

.page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__strategy-grid, .page-poker__promo-cards-grid, .page-poker__security-grid, .page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-poker__feature-card, .page-poker__game-card, .page-poker__strategy-item, .page-poker__promo-card, .page-poker__security-item, .page-poker__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__feature-card:hover, .page-poker__game-card:hover, .page-poker__strategy-item:hover, .page-poker__promo-card:hover, .page-poker__security-item:hover, .page-poker__step-card:hover {
  transform: translateY(-10px);
}

.page-poker__feature-title, .page-poker__game-card-title, .page-poker__strategy-title, .page-poker__promo-card-title, .page-poker__security-title, .page-poker__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__feature-text, .page-poker__game-card-text, .page-poker__strategy-text, .page-poker__promo-card-text, .page-poker__security-text, .page-poker__step-text {
  color: #555555;
  font-size: 1em;
}

.page-poker__game-card-image, .page-poker__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__button--play, .page-poker__button--learn, .page-poker__button--claim, .page-poker__button--deposit, .page-poker__button--register-step, .page-poker__button--play-step {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
  border: none;
}

.page-poker__button--play:hover, .page-poker__button--learn:hover, .page-poker__button--claim:hover, .page-poker__button--deposit:hover, .page-poker__button--register-step:hover, .page-poker__button--play-step:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
  display: inline-block;
}

.page-poker__link:hover {
  text-decoration: underline;
}

.page-poker__link-inline {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__link-inline:hover {
  text-decoration: underline;
}

.page-poker__mobile-section {
  background-color: #f8f8f8;
}

.page-poker__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-poker__mobile-text-content {
  flex: 1;
  min-width: 300px;
}

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

.page-poker__mobile-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-poker__mobile-subtitle {
  font-size: 2em;
  color: #000000;
  margin-bottom: 20px;
}

.page-poker__mobile-description {
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__mobile-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__mobile-features li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-poker__list-icon {
  color: #FCBC45;
  margin-right: 10px;
}

.page-poker__button--download, .page-poker__button--play-browser {
  background-color: #000000;
  color: #FFFFFF;
  margin-right: 15px;
  margin-bottom: 10px; /* For mobile stacking */
  border: none;
}

.page-poker__button--download:hover, .page-poker__button--play-browser:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__promo-cta {
  text-align: center;
  font-size: 1.2em;
  margin-top: 40px;
  color: #333333;
}

.page-poker__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__faq-answer {
  color: #555555;
}

.page-poker__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-poker__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-poker__button--join-now:hover {
  background-color: transparent;
  color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__mobile-content {
    flex-direction: column;
  }
  .page-poker__mobile-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__strategy-grid, .page-poker__promo-cards-grid, .page-poker__security-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-subtitle {
    font-size: 1.8em;
  }
  .page-poker__mobile-description {
    font-size: 0.95em;
  }
  .page-poker__button--download, .page-poker__button--play-browser {
    margin-right: 0;
    width: 100%;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  /* Mobile content area images must not cause horizontal scroll */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.6em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__button {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__feature-title, .page-poker__game-card-title, .page-poker__strategy-title, .page-poker__promo-card-title, .page-poker__security-title, .page-poker__step-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__button--join-now {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}