.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #007bff; /* Primary color for hero background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  overflow: hidden;
}

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

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

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-poker__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #007bff; /* Primary color for text */
}

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

.page-poker__btn--secondary {
  background-color: #ffffff;
  color: #007bff; /* Primary color */
  border: 2px solid #007bff;
}

.page-poker__btn--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-poker__btn--download {
  background-color: #28a745;
  color: #ffffff;
}

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

.page-poker__btn--link {
  background: none;
  color: #007bff;
  padding: 0;
  text-decoration: underline;
  font-weight: normal;
}

.page-poker__btn--link:hover {
  color: #0056b3;
  text-decoration: none;
}

.page-poker__why-us-section,
.page-poker__game-types-section,
.page-poker__get-started-section,
.page-poker__strategy-section,
.page-poker__tournaments-section,
.page-poker__security-section,
.page-poker__promotions-section,
.page-poker__support-section,
.page-poker__responsible-gaming-section,
.page-poker__final-cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-poker__why-us-section,
.page-poker__get-started-section,
.page-poker__security-section,
.page-poker__promotions-section,
.page-poker__responsible-gaming-section {
  background-color: #f8f9fa; /* Light background for alternating sections */
}

.page-poker__why-us-title,
.page-poker__game-types-title,
.page-poker__get-started-title,
.page-poker__strategy-title,
.page-poker__tournaments-title,
.page-poker__security-title,
.page-poker__promotions-title,
.page-poker__support-title,
.page-poker__responsible-gaming-title,
.page-poker__final-cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #007bff; /* Primary color for section titles */
  font-weight: bold;
}

.page-poker__why-us-intro,
.page-poker__game-types-intro,
.page-poker__get-started-intro,
.page-poker__strategy-intro,
.page-poker__tournaments-intro,
.page-poker__security-intro,
.page-poker__promotions-intro,
.page-poker__support-intro,
.page-poker__responsible-gaming-intro,
.page-poker__final-cta-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__features-grid,
.page-poker__game-types-grid,
.page-poker__steps-grid,
.page-poker__tournament-grid,
.page-poker__promo-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__step-card,
.page-poker__tournament-card,
.page-poker__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__step-card:hover,
.page-poker__tournament-card:hover,
.page-poker__promo-card:hover {
  transform: translateY(-5px);
}

.page-poker__feature-title,
.page-poker__game-card-title,
.page-poker__step-title,
.page-poker__tournament-card-title,
.page-poker__promo-card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-poker__feature-description,
.page-poker__game-card-description,
.page-poker__step-description,
.page-poker__tournament-card-description,
.page-poker__promo-card-description {
  font-size: 1em;
  color: #555555;
}

.page-poker__game-image,
.page-poker__step-image,
.page-poker__tournament-image,
.page-poker__promo-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
  min-height: 200px; /* Ensure images are not small */
}

.page-poker__strategy-content,
.page-poker__security-content,
.page-poker__support-content,
.page-poker__responsible-gaming-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  text-align: left;
  margin-top: 40px;
}

.page-poker__strategy-image,
.page-poker__security-image,
.page-poker__support-image,
.page-poker__responsible-gaming-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  min-height: 200px; /* Ensure images are not small */
}

.page-poker__strategy-text,
.page-poker__security-list,
.page-poker__support-list,
.page-poker__responsible-gaming-list {
  flex: 2;
  min-width: 300px;
}

.page-poker__strategy-subtitle {
  font-size: 1.8em;
  color: #007bff;
  margin-top: 25px;
  margin-bottom: 10px;
}

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

.page-poker__security-list,
.page-poker__support-list,
.page-poker__responsible-gaming-list {
  list-style: none;
  padding: 0;
}

.page-poker__security-list-item,
.page-poker__support-list-item,
.page-poker__responsible-gaming-list-item {
  background-color: #ffffff;
  border-left: 5px solid #ffc107; /* Auxiliary color for accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #333333;
}

.page-poker__security-list-item strong,
.page-poker__support-list-item strong,
.page-poker__responsible-gaming-list-item strong {
  color: #007bff;
}

.page-poker__cta-area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-poker__final-cta-section {
  background-color: #007bff; /* Primary color for final CTA */
  color: #ffffff;
  padding: 80px 20px;
}

.page-poker__final-cta-title {
  color: #ffc107; /* Auxiliary color */
  font-size: 3em;
  margin-bottom: 25px;
}

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

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

  .page-poker__why-us-title,
  .page-poker__game-types-title,
  .page-poker__get-started-title,
  .page-poker__strategy-title,
  .page-poker__tournaments-title,
  .page-poker__security-title,
  .page-poker__promotions-title,
  .page-poker__support-title,
  .page-poker__responsible-gaming-title,
  .page-poker__final-cta-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-bottom: 60px;
  }

  .page-poker__hero-title {
    font-size: 2.5em;
  }

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

  .page-poker__hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .page-poker__btn {
    width: 80%;
  }

  .page-poker__why-us-section,
  .page-poker__game-types-section,
  .page-poker__get-started-section,
  .page-poker__strategy-section,
  .page-poker__tournaments-section,
  .page-poker__security-section,
  .page-poker__promotions-section,
  .page-poker__support-section,
  .page-poker__responsible-gaming-section,
  .page-poker__final-cta-section {
    padding: 40px 15px;
  }

  .page-poker__why-us-title,
  .page-poker__game-types-title,
  .page-poker__get-started-title,
  .page-poker__strategy-title,
  .page-poker__tournaments-title,
  .page-poker__security-title,
  .page-poker__promotions-title,
  .page-poker__support-title,
  .page-poker__responsible-gaming-title,
  .page-poker__final-cta-title {
    font-size: 1.8em;
  }

  .page-poker__strategy-content,
  .page-poker__security-content,
  .page-poker__support-content,
  .page-poker__responsible-gaming-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-poker__strategy-image,
  .page-poker__security-image,
  .page-poker__support-image,
  .page-poker__responsible-gaming-image {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .page-poker__strategy-text,
  .page-poker__security-list,
  .page-poker__support-list,
  .page-poker__responsible-gaming-list {
    width: 100%;
    text-align: center;
  }
  
  .page-poker__security-list-item,
  .page-poker__support-list-item,
  .page-poker__responsible-gaming-list-item {
    text-align: left;
  }

  .page-poker__final-cta-title {
    font-size: 2.2em;
  }

  /* Ensure all content area images are responsive and don't overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

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

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

  .page-poker__why-us-title,
  .page-poker__game-types-title,
  .page-poker__get-started-title,
  .page-poker__strategy-title,
  .page-poker__tournaments-title,
  .page-poker__security-title,
  .page-poker__promotions-title,
  .page-poker__support-title,
  .page-poker__responsible-gaming-title,
  .page-poker__final-cta-title {
    font-size: 1.5em;
  }

  .page-poker__features-grid,
  .page-poker__game-types-grid,
  .page-poker__steps-grid,
  .page-poker__tournament-grid,
  .page-poker__promo-grid {
    gap: 20px;
  }

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