.page-poker {
  color: #333333; /* Default text color for 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;
  color: #ffffff;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #1A2E59;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.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;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #1A2E59;
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A2E59;
  transform: translateY(-2px);
}

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

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

.page-poker__button--link {
  background-color: transparent;
  color: #1A2E59;
  border: none;
  padding: 5px 0;
  text-decoration: underline;
  font-weight: normal;
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #1A2E59;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-poker__section-intro {
  font-size: 1.2em;
  color: #555555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__why-jilimk-section,
.page-poker__games-section,
.page-poker__strategy-section,
.page-poker__tournaments-section,
.page-poker__getting-started-section,
.page-poker__faq-section,
.page-poker__call-to-action-section {
  padding: 80px 0;
}

.page-poker__why-jilimk-section,
.page-poker__tournaments-section,
.page-poker__call-to-action-section {
  background-color: #f8f8f8;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__tournament-card,
.page-poker__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

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

.page-poker__feature-icon {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-poker__game-image,
.page-poker__tournament-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__strategy-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__strategy-heading {
  font-size: 1.5em;
  color: #1A2E59;
  margin-bottom: 10px;
}

.page-poker__strategy-text {
  font-size: 0.95em;
  color: #666666;
}

.page-poker__strategy-cta,
.page-poker__promo-cta {
  text-align: center;
  margin-top: 50px;
}

.page-poker__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #1A2E59;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

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

.page-poker__faq-answer p {
  margin-bottom: 10px;
}

.page-poker__call-to-action-section {
  text-align: center;
  background-color: #1A2E59;
  color: #ffffff;
}

.page-poker__call-to-action-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__call-to-action-section .page-poker__section-intro {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .page-poker__hero-content {
    padding: 80px 15px;
  }
  .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 {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-poker__why-jilimk-section,
  .page-poker__games-section,
  .page-poker__strategy-section,
  .page-poker__tournaments-section,
  .page-poker__getting-started-section,
  .page-poker__faq-section,
  .page-poker__call-to-action-section {
    padding: 60px 0;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__tournament-card,
  .page-poker__step-card {
    padding: 25px;
  }
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__tournament-image {
    height: 180px; /* Adjust height for smaller screens */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.9em;
  }
  .page-poker__hero-content {
    padding: 60px 10px;
  }
  .page-poker__button {
    padding: 12px 20px;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-poker__faq-answer {
    padding: 0 20px 15px;
  }
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__tournament-image {
    height: 150px; /* Further adjust height */
    min-width: 200px;
    min-height: 200px;
  }
}