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

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content clears fixed header */
  background-color: #1A237E; /* Primary dark blue background */
  color: #ffffff;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden; /* For image positioning */
}

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

.page-poker__hero-title {
  font-size: 3.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFC107; /* Gold accent color for title */
  line-height: 1.2;
}

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

.page-poker__hero-buttons {
  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.3s ease;
  border: 2px solid transparent;
}

.page-poker__button--primary {
  background-color: #FFC107; /* Gold primary button */
  color: #1A237E;
}

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFC107;
  border-color: #FFC107;
}

.page-poker__button--secondary:hover {
  background-color: #FFC107;
  color: #1A237E;
  transform: translateY(-3px);
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2; /* Subtle background image */
}

.page-poker__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no color filters */
}

.page-poker__section {
  padding: 80px 20px;
  background-color: #ffffff;
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #1A237E; /* Primary dark blue for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-poker__why-choose-us .page-poker__section-title,
.page-poker__why-choose-us .page-poker__section-description {
  color: #1A237E;
}

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

.page-poker__feature-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #eeeeee;
}

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

.page-poker__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: 150px; /* Adjusted for aspect ratio, still >=200px wide */
  object-fit: contain;
  margin-bottom: 20px;
  filter: none; /* Ensure no color filters */
}

.page-poker__feature-title {
  font-size: 1.6em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__feature-text {
  font-size: 1em;
  color: #666666;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no color filters */
}

.page-poker__game-title {
  font-size: 1.8em;
  color: #1A237E;
  padding: 20px 25px 10px;
  font-weight: bold;
}

.page-poker__game-text {
  font-size: 1em;
  color: #666666;
  padding: 0 25px 25px;
}

.page-poker__tournaments {
  background-color: #f0f4f7;
}

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

.page-poker__tournament-details {
  flex: 1;
  min-width: 300px;
}

.page-poker__tournament-image {
  flex: 1;
  min-width: 400px;
  text-align: center;
}

.page-poker__tournament-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  filter: none; /* Ensure no color filters */
}

.page-poker__sub-title {
  font-size: 1.8em;
  color: #1A237E;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

.page-poker__bonuses {
  background-color: #ffffff;
}

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

.page-poker__bonus-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #eeeeee;
}

.page-poker__bonus-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no color filters */
}

.page-poker__bonus-title {
  font-size: 1.6em;
  color: #1A237E;
  padding: 20px 25px 10px;
  font-weight: bold;
}

.page-poker__bonus-text {
  font-size: 1em;
  color: #666666;
  padding: 0 25px 25px;
}

.page-poker__bonuses-cta {
  text-align: center;
  margin-top: 50px;
}

.page-poker__getting-started {
  background-color: #f0f4f7;
}

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

.page-poker__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #eeeeee;
}

.page-poker__step-title {
  font-size: 1.5em;
  color: #1A237E;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__step-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

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

.page-poker__getting-started-image {
    text-align: center;
}

.page-poker__getting-started-image img {
    width: 800px; /* Example fixed width for larger screens */
    height: 600px; /* Example fixed height for larger screens */
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    filter: none; /* Ensure no color filters */
}

.page-poker__responsible-gaming {
  background-color: #1A237E;
  color: #ffffff;
  text-align: center;
}

.page-poker__responsible-gaming .page-poker__section-title {
  color: #FFC107;
}

.page-poker__responsible-gaming .page-poker__section-description {
  color: #f0f0f0;
}

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

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

.page-poker__faq-item {
  border-bottom: 1px solid #eeeeee;
  padding: 20px 0;
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #1A237E;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.2em;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
  padding-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

.page-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-poker__cta-final {
  background-color: #f0f4f7;
  text-align: center;
  padding-bottom: 100px;
}

.page-poker__cta-final .page-poker__section-title {
  color: #1A237E;
}

.page-poker__cta-final .page-poker__section-description {
  color: #555555;
}

.page-poker__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__tournament-info,
  .page-poker__steps-grid {
    flex-direction: column;
  }
  .page-poker__tournament-image {
    order: -1; /* Image above text on smaller screens */
  }
  .page-poker__getting-started-image img {
      width: 100%; /* Adjust for smaller screens */
      height: auto;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px); /* Adjust padding for mobile header */
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description {
    font-size: 1em;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__bonus-card,
  .page-poker__step-card {
    padding: 20px;
  }
  .page-poker__feature-icon {
      width: 200px; /* Ensure minimum size */
      height: 150px;
  }
  .page-poker__game-image,
  .page-poker__bonus-image {
    height: 180px;
  }
  /* Crucial: Ensure all content images in .page-poker are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size on mobile */
    min- /* Enforce minimum size on mobile */
    object-fit: cover;
    filter: none; /* Ensure no color filters */
  }
  .page-poker__getting-started-image img {
      min-width: 200px; /* Enforce minimum size on mobile */
      min- /* Enforce minimum size on mobile */
  }
  .page-poker__tournament-image img {
      min-width: 200px; /* Enforce minimum size on mobile */
      min- /* Enforce minimum size on mobile */
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.6em;
  }
  .page-poker__button {
    width: 95%;
  }
  .page-poker__getting-started-image img {
      width: 100%; /* Ensure full width on very small screens */
      height: auto;
  }
}