.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: var(--secondary-color); /* Matches #FFFFFF */
  color: #000000; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px; /* Add some space below content */
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability, no color change */
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFFFFF;
}

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  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,
.page-poker__button--play,
.page-poker__button--tournaments,
.page-poker__button--promo,
.page-poker__button--login-cta {
  background-color: #FCBC45;
  color: #000000;
}

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

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

.page-poker__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
  text-align: justify;
}

.page-poker__about-section,
.page-poker__features-section,
.page-poker__tournaments-section,
.page-poker__cta-section,
.page-poker__faq-section {
  padding: 60px 0;
}

.page-poker__image-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-poker__image-text-item {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__content-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__button--download {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-poker__button--download:hover {
  background-color: #333333;
}

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

.page-poker__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__button--promo,
.page-poker__button--learn {
  margin-top: 15px;
}

.page-poker__tournament-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.page-poker__tournament-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-poker__tournament-description {
  font-size: 0.95em;
  color: #666666;
}

.page-poker__call-to-action {
  text-align: center;
  margin-top: 50px;
}

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

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

.page-poker__button--register-cta:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  border-color: #FCBC45;
}

.page-poker__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__main-title {
    font-size: 3em;
  }

  .page-poker__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__main-title {
    font-size: 2.5em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__button {
    width: 80%;
    max-width: 300px;
  }

  .page-poker__section-title {
    font-size: 2em;
  }

  .page-poker__image-text-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__feature-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__tournament-list {
    grid-template-columns: 1fr;
  }

  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__hero-section .page-poker__hero-image,
  .page-poker__image-text-item .page-poker__content-image,
  .page-poker__feature-card .page-poker__feature-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size for content images */
    min-height: 200px;
  }
  
  .page-poker__container {
    padding: 0 15px;
  }
  
  .page-poker__hero-content {
    padding: 80px 15px;
  }
  
  .page-poker__about-section,
  .page-poker__features-section,
  .page-poker__tournaments-section,
  .page-poker__cta-section,
  .page-poker__faq-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-poker__main-title {
    font-size: 2em;
  }

  .page-poker__hero-description {
    font-size: 0.9em;
  }

  .page-poker__button {
    width: 90%;
  }

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

  .page-poker__sub-title {
    font-size: 1.5em;
  }

  .page-poker__card-title {
    font-size: 1.4em;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
  }
}