.page-poker {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2342, #051426);
}

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

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

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

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

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

.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;
  min-width: 200px; /* Ensure buttons are large enough */
  text-align: center;
}

.page-poker__button--primary {
  background-color: #E5B80B;
  color: #0A2342;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #E5B80B;
  color: #0A2342;
  transform: translateY(-2px);
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #E5B80B;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-poker__about-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__bonuses-section, .page-poker__get-started-section, .page-poker__responsible-gambling-section, .page-poker__faq-section, .page-poker__final-cta-section {
  padding: 60px 0;
  background-color: #0A2342; /* Main dark blue background */
  border-bottom: 1px solid rgba(229, 184, 11, 0.1);
}

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

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

.page-poker__feature-item, .page-poker__game-card, .page-poker__tournament-item, .page-poker__bonus-card, .page-poker__step-item {
  background-color: rgba(229, 184, 11, 0.05); /* Subtle golden tint */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-item:hover, .page-poker__game-card:hover, .page-poker__tournament-item:hover, .page-poker__bonus-card:hover, .page-poker__step-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-poker__feature-icon {
  width: 250px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 25px;
  border-radius: 8px;
  border: 2px solid #E5B80B;
}

.page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__bonus-title, .page-poker__step-title {
  font-size: 1.8em;
  color: #E5B80B;
  margin-bottom: 15px;
}

.page-poker__feature-description, .page-poker__game-description, .page-poker__tournament-description, .page-poker__bonus-description, .page-poker__step-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 2px solid #E5B80B;
}

.page-poker__button--play {
  background-color: #0A2342;
  color: #E5B80B;
  border: 1px solid #E5B80B;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: auto;
}

.page-poker__button--play:hover {
  background-color: #E5B80B;
  color: #0A2342;
}

.page-poker__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #E5B80B;
  margin-bottom: 15px;
  background-color: rgba(229, 184, 11, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #E5B80B;
}

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
}

.page-poker__responsible-item {
  background-color: rgba(229, 184, 11, 0.08);
  padding: 15px 25px;
  margin-bottom: 15px;
  border-left: 5px solid #E5B80B;
  border-radius: 5px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-poker__responsible-outro {
  text-align: center;
  font-size: 1.1em;
  color: #cccccc;
  margin-top: 30px;
}

.page-poker__text-link {
  color: #E5B80B;
  text-decoration: none;
}

.page-poker__text-link:hover {
  text-decoration: underline;
}

.page-poker__faq-items {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background-color: rgba(229, 184, 11, 0.05);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  border: 1px solid rgba(229, 184, 11, 0.2);
}

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

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

.page-poker__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-poker__final-cta-section {
  background-color: #0A2342;
  padding: 80px 0;
}

.page-poker__final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__bonus-title, .page-poker__step-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    min-width: unset;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__feature-item, .page-poker__game-card, .page-poker__tournament-item, .page-poker__bonus-card, .page-poker__step-item {
    padding: 20px;
  }
  .page-poker__feature-icon, .page-poker__game-image {
    width: 100%;
    height: auto; /* Ensure images scale responsively */
    max-width: 100%;
  }
  .page-poker__features-grid, .page-poker__game-cards, .page-poker__tournament-grid, .page-poker__bonus-cards, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__final-cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__hero-section img,
  .page-poker__about-section img,
  .page-poker__games-section img,
  .page-poker__tournaments-section img,
  .page-poker__bonuses-section img,
  .page-poker__get-started-section img,
  .page-poker__responsible-gambling-section img,
  .page-poker__faq-section img,
  .page-poker__final-cta-section img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all content area images are at least 200px wide for mobile, or scale */
  .page-poker img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon):not(.shared-footer__game-provider-icon) {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__feature-title, .page-poker__game-title, .page-poker__tournament-title, .page-poker__bonus-title, .page-poker__step-title {
    font-size: 1.3em;
  }
  .page-poker__step-number {
    width: 60px;
    height: 60px;
    font-size: 2.2em;
  }
}