.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  padding-bottom: 60px;
  text-align: center;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #000000;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.page-poker__hero-description {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-poker__button--register:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

.page-poker__button--login:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  margin-top: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-poker__game-variety-section,
.page-poker__how-to-play-section,
.page-poker__bonuses-section,
.page-poker__mobile-app-section,
.page-poker__security-section,
.page-poker__faq-section,
.page-poker__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

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

.page-poker__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__game-card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__game-card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__game-card-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-poker__game-card-button {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__game-card-button:hover {
  background-color: #e0a53b;
}

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

.page-poker__step-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__step-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-poker__step-button {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__step-button:hover {
  background-color: #333333;
}

.page-poker__bonuses-section,
.page-poker__mobile-app-section {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 80px;
  flex-wrap: wrap;
}

.page-poker__bonuses-content,
.page-poker__mobile-app-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__bonuses-image,
.page-poker__mobile-app-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__bonus-list li,
.page-poker__app-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FCBC45" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #333333;
}

.page-poker__button--claim-bonus,
.page-poker__button--download,
.page-poker__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--claim-bonus:hover,
.page-poker__button--download:hover,
.page-poker__button--join-now:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-poker__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__feature-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__feature-icon {
  width: 100px;
  height: auto;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 150px;
}

.page-poker__feature-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__feature-description {
  color: #555555;
  margin-bottom: 15px;
}

.page-poker__feature-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__feature-link:hover {
  color: #FCBC45;
}

.page-poker__faq-list {
  margin-top: 40px;
}

.page-poker__faq-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

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

.page-poker__faq-answer {
  color: #555555;
  margin-bottom: 10px;
}

.page-poker__faq-link {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__faq-link:hover {
  color: #FCBC45;
}

.page-poker__cta-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #f0f0f0;
  margin-top: 60px;
  border-radius: 12px;
}

.page-poker__cta-section .page-poker__section-title {
  margin-top: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__bonuses-section,
  .page-poker__mobile-app-section {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__bonuses-image,
  .page-poker__mobile-app-image {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 30px;
  }
  .page-poker__bonus-list,
  .page-poker__app-features {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on mobile */
    padding-bottom: 40px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__game-cards,
  .page-poker__steps,
  .page-poker__security-features {
    grid-template-columns: 1fr;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__game-card-image,
  .page-poker__bonuses-image,
  .page-poker__mobile-app-image,
  .page-poker__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 150px;
  }
  /* Enforce max-width: 100%; height: auto; for all images within .page-poker */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__game-card-title,
  .page-poker__step-title,
  .page-poker__feature-title,
  .page-poker__faq-question {
    font-size: 1.4em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}