.page-poker {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  color: #333333; /* Dark text for default light body 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;
  background-color: #1A202C; /* Auxiliary color as background for hero text */
  padding-bottom: 60px;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.4; /* Slightly dim the image to make text pop */
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 0;
  max-height: 700px; /* Limit hero image height */
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 80px 20px;
  color: #ffffff; /* Light text for dark hero background */
}

.page-poker__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Main color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  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;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Main color */
  color: #1A202C; /* Auxiliary color for text */
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C; /* Auxiliary color for text */
  transform: translateY(-2px);
}

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

.page-poker__button--text {
  background: none;
  border: none;
  color: #1A202C; /* Dark text for light background */
  padding: 0;
  text-decoration: underline;
  font-size: 1em;
}

.page-poker__button--text:hover {
  color: #FFD700;
}

.page-poker__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #1A202C; /* Auxiliary color for titles */
  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 60px auto;
  color: #555555;
}

.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__promo-section, .page-poker__mobile-section, .page-poker__responsible-gaming-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 60px 0;
}

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

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__strategy-card, .page-poker__promo-card, .page-poker__responsible-feature-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-card:hover, .page-poker__game-card:hover, .page-poker__strategy-card:hover, .page-poker__promo-card:hover, .page-poker__responsible-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon, .page-poker__game-image, .page-poker__strategy-image, .page-poker__promo-image, .page-poker__responsible-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__feature-icon {
  max-width: 150px;
  max-height: 150px;
}

.page-poker__feature-title, .page-poker__game-title, .page-poker__strategy-title, .page-poker__promo-title, .page-poker__responsible-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-poker__feature-description, .page-poker__game-description, .page-poker__strategy-description, .page-poker__promo-description, .page-poker__responsible-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__game-card .page-poker__button--small, .page-poker__promo-card .page-poker__button--small {
  margin-top: auto;
}

.page-poker__promo-section {
  background-color: #f0f4f7;
}

.page-poker__cta-promo {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #1A202C;
  color: #ffffff;
  border-radius: 12px;
}

.page-poker__cta-promo .page-poker__cta-text {
  font-size: 1.4em;
  margin-bottom: 25px;
  color: #FFD700;
}

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

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

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

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

.page-poker__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__mobile-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

.page-poker__mobile-feature-item::before {
  content: '✔';
  color: #FFD700; /* Main color for checkmark */
  margin-right: 10px;
  font-size: 1.2em;
  font-weight: bold;
}

.page-poker__responsible-gaming-section {
  background-color: #f9f9f9;
}

.page-poker__responsible-icon {
  max-width: 100px;
  max-height: 100px;
}

.page-poker__cta-responsible {
  text-align: center;
  margin-top: 40px;
}

.page-poker__faq-section {
  background-color: #ffffff;
}

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

.page-poker__faq-item {
  background-color: #f0f4f7;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border-left: 5px solid #FFD700; /* Main color accent */
}

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

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

.page-poker__cta-faq {
  text-align: center;
  margin-top: 40px;
}

.page-poker__cta-section {
  background: linear-gradient(135deg, #1A202C, #3a475a); /* Dark gradient background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Main color */
}

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

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

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-bottom: 40px;
  }
  .page-poker__hero-content {
    padding: 60px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title, .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__strategy-grid, .page-poker__promo-cards-grid, .page-poker__responsible-features-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-layout {
    flex-direction: column;
  }
  .page-poker__mobile-content, .page-poker__mobile-image-wrapper {
    min-width: unset;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
  /* Ensure all images in content areas are responsive and not smaller than 200px */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-icon, .page-poker__game-image, .page-poker__strategy-image, .page-poker__promo-image, .page-poker__responsible-icon, .page-poker__mobile-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title, .page-poker__cta-title {
    font-size: 1.5em;
  }
  .page-poker__hero-content {
    padding: 40px 10px;
  }
}