.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); /* Ensures content clears fixed header */
}

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

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000; /* Main color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.page-poker__btn--primary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
  border: 2px solid #000000;
}

.page-poker__btn--primary:hover {
  background-color: #333333;
  color: #FCBC45; /* Login button color for hover */
}

.page-poker__btn--secondary {
  background-color: transparent;
  color: #000000; /* Main color */
  border: 2px solid #000000;
}

.page-poker__btn--secondary:hover {
  background-color: #000000;
  color: #FCBC45; /* Login button color for hover */
}

.page-poker__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-poker__btn--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

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

.page-poker__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  box-sizing: border-box;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-poker__hero-actions .page-poker__btn {
  margin: 10px;
}

.page-poker__hero-actions .page-poker__btn--primary {
  background-color: #FCBC45; /* Login color for highlight */
  color: #000000;
  border-color: #FCBC45;
}

.page-poker__hero-actions .page-poker__btn--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__hero-actions .page-poker__btn--secondary {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-poker__hero-actions .page-poker__btn--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* About Section */
.page-poker__about-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__bonuses-section,
.page-poker__strategy-section,
.page-poker__mobile-section,
.page-poker__responsible-gaming-section,
.page-poker__community-section,
.page-poker__faq-section,
.page-poker__cta-final-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

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

.page-poker__feature-card:hover {
  transform: translateY(-10px);
}

.page-poker__feature-icon {
  width: 100%; /* Ensure images are not tiny */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

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

.page-poker__feature-description {
  font-size: 1em;
  color: #555555;
}

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

.page-poker__game-card {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-10px);
}

.page-poker__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

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

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

/* Strategy Section */
.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-poker__strategy-card {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

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

.page-poker__strategy-description {
  font-size: 0.95em;
  color: #555555;
}

/* Mobile Section */
.page-poker__mobile-content {
  flex: 1;
  min-width: 300px;
}

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

.page-poker__mobile-mockup {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.page-poker__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

/* Final CTA Section */
.page-poker__cta-final-section {
  background-color: #000000; /* Dark background */
  color: #FFFFFF; /* Light text */
  text-align: center;
  padding: 100px 0;
}

.page-poker__cta-final-section .page-poker__section-title,
.page-poker__cta-final-section .page-poker__section-intro {
  color: #FFFFFF;
}

.page-poker__cta-actions .page-poker__btn {
  margin: 15px;
}

.page-poker__cta-actions .page-poker__btn--primary {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-poker__cta-actions .page-poker__btn--primary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__cta-actions .page-poker__btn--secondary {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-poker__cta-actions .page-poker__btn--secondary:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__container--flex {
    flex-direction: column;
  }
  .page-poker__mobile-content, .page-poker__mobile-image-wrapper {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions .page-poker__btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid, .page-poker__game-grid, .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-mockup {
    max-width: 300px;
  }
  /* Ensure all images in .page-poker are responsive and not tiny */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-icon, .page-poker__game-image {
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px;
  }
  .page-poker__cta-final-section {
    padding: 60px 0;
  }
  .page-poker__cta-actions .page-poker__btn {
    width: 90%;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__btn--large {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-poker__faq-item {
    padding: 15px;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
}