.page-poker {
  color: #333333; /* Default text color for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
}

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

.page-poker__hero-section {
  background-color: #0A2463; /* Main brand color */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  z-index: 2;
  max-width: 800px;
  margin-bottom: 40px;
}

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

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

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

.page-poker__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  white-space: nowrap;
}

.page-poker__btn--primary {
  background-color: #FFD700; /* Accent color for primary button */
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

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

.page-poker__btn--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-poker__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0.2;
  z-index: 1;
}

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background-color: #FFD700;
  border-radius: 3px;
}

.page-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-poker__content-image {
  display: block;
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__overview-section,
.page-poker__tournaments-section,
.page-poker__bonuses-section,
.page-poker__getting-started-section,
.page-poker__cta-section {
  padding: 60px 0;
}

.page-poker__section--dark-bg {
  background-color: #f5f5f5;
  color: #333333;
}

.page-poker__section--dark-bg .page-poker__section-title {
  color: #0A2463;
}

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

.page-poker__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-poker__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

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

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

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

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

.page-poker__feature-item:hover {
  transform: translateY(-5px);
}

.page-poker__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min size for content images */
  min-height: 200px; /* Enforce min size for content images */
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-poker__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-poker__steps-list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 20px;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-poker__list-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-poker__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__cta-section .page-poker__text-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.2em;
}

.page-poker__btn--large {
  padding: 18px 40px;
  font-size: 1.3em;
  border-width: 3px;
}

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

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
  }
  .page-poker__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__overview-section,
  .page-poker__tournaments-section,
  .page-poker__bonuses-section,
  .page-poker__getting-started-section,
  .page-poker__cta-section {
    padding: 40px 0;
  }
  /* Mobile content area images must be responsive and not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size for content images */
    min-height: 200px; /* Ensure min size for content images */
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker {
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__text-content {
    font-size: 0.95em;
  }
  .page-poker__card,
  .page-poker__feature-item,
  .page-poker__steps-list li {
    padding: 20px;
  }
  .page-poker__list-title {
    font-size: 1.2em;
  }
  .page-poker__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

/* Ensure no image filters are applied */
.page-poker img {
  filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Ensure all images within .page-poker are at least 200x200px */
.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 !important;
  min-height: 200px !important;
}

/* Specific overrides for feature icons to ensure they meet minimum size */
.page-poker__feature-icon {
  width: 200px !important;
  height: 200px !important;
  object-fit: contain; /* Adjust as needed, 'cover' or 'contain' */
  margin: 0 auto 20px auto;
}