.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); /* For desktop */
}

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

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

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

.page-poker__section:nth-child(even) {
  background-color: #f8f8f8;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0; /* Adjust padding as hero image handles visual space */
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  max-width: 900px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.2;
}

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

.page-poker__hero-actions {
  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.3s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

.page-poker__button--play {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 15px;
}

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

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

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

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

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

.page-poker__button--claim {
  background-color: #FCBC45;
  color: #000000;
  margin-left: 10px;
}

.page-poker__button--claim:hover {
  background-color: #e6a73c;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__promo-card,
.page-poker__step-card,
.page-poker__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-icon {
  width: 200px; /* Min size */
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__promo-title,
.page-poker__step-title,
.page-poker__faq-question {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-poker__feature-text,
.page-poker__game-text,
.page-poker__promo-text,
.page-poker__step-text,
.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-poker__feature-text a, .page-poker__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__feature-text a:hover, .page-poker__faq-answer a:hover {
  text-decoration: underline;
}

.page-poker__game-card {
  text-align: left;
  padding: 0; /* No internal padding, image takes full width */
  overflow: hidden;
}

.page-poker__game-image,
.page-poker__promo-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  min-height: 200px; /* Ensure images are not too small */
}

.page-poker__game-content,
.page-poker__promo-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-poker__step-card {
  padding: 40px 30px;
}

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

.page-poker__app-content {
  flex: 1;
  text-align: left;
}

.page-poker__app-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__app-image {
  width: 400px; /* Display size */
  height: 300px;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__app-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-poker__app-benefits li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-poker__app-benefits li::before {
  content: '✔️';
  position: absolute;
  left: 0;
  color: #FCBC45;
}

.page-poker__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-poker__faq-question {
  text-align: left;
  width: 100%;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #FCBC45;
}

.page-poker__faq-answer {
  text-align: left;
  margin-top: 10px;
  display: none; /* Initially hidden */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-poker__section {
    padding: 40px 0;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__hero-container {
    min-height: 400px;
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__features-grid, .page-poker__game-grid, .page-poker__promo-grid, .page-poker__steps-grid, .page-poker__faq-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__container--flex {
    flex-direction: column;
  }
  .page-poker__app-content {
    text-align: center;
  }
  .page-poker__app-benefits {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
  }
  .page-poker__app-image {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .page-poker__cta-actions {
    flex-direction: column;
  }
  /* Mobile content area images must be constrained */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-icon {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 150px;
  }
  .page-poker__game-image, .page-poker__promo-image {
    max-width: 100%;
    height: auto;
    min-height: 200px;
  }
  .page-poker__app-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-poker__faq-question::after {
    font-size: 1.5em;
    top: -5px;
  }
}

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