.page-poker {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures 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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  background-color: #0A2463;
  color: #ffffff;
  padding: 60px 20px;
  overflow: hidden;
}

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

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

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

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

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

.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;
  cursor: pointer;
}

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

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

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

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

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

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

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

.page-poker__why-us-section,
.page-poker__getting-started-section,
.page-poker__promotions-section,
.page-poker__strategies-section,
.page-poker__responsible-gaming-section,
.page-poker__community-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 0;
}

.page-poker__why-us-section,
.page-poker__strategies-section {
  background-color: #f9f9f9;
}

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

.page-poker__feature-card,
.page-poker__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-card:hover,
.page-poker__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-card img,
.page-poker__promo-card img,
.page-poker__strategy-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
  object-fit: cover;
}

.page-poker__feature-title,
.page-poker__promo-title,
.page-poker__step-title,
.page-poker__strategy-title,
.page-poker__community-title,
.page-poker__faq-question {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-poker__feature-description,
.page-poker__promo-description,
.page-poker__step-description,
.page-poker__strategy-description,
.page-poker__community-description,
.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-poker__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
  text-align: center;
}

.page-poker__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__step-item .page-poker__button {
  margin-top: 25px;
}

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

.page-poker__promo-card .page-poker__button {
  margin-top: auto; /* Push button to bottom */
  align-self: center;
}

.page-poker__strategy-grid {
  margin-top: 40px;
  margin-bottom: 50px;
}

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

.page-poker__strategy-item:not(:last-child) {
  margin-bottom: 20px;
}

.page-poker__strategy-image {
  text-align: center;
  margin-top: 50px;
}

.page-poker__responsible-gaming-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

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

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

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  font-size: 1.1em;
}

.page-poker__responsible-list li {
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
  padding: 15px 25px;
  border-radius: 8px;
  text-align: left;
  position: relative;
  padding-left: 40px;
}

.page-poker__responsible-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 15px;
  top: 15px;
  font-weight: bold;
}

.page-poker__community-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 50px;
}

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

.page-poker__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  display: none;
  font-size: 1em;
  color: #666666;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 15px;
}

.page-poker__faq-answer.active {
  display: block;
}

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

.page-poker__cta-section .page-poker__section-title {
  color: #FFD700;
  font-size: 3em;
}

.page-poker__cta-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__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
    padding: 40px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-cta-group {
    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;
  }
  .page-poker__features-grid,
  .page-poker__steps-list,
  .page-poker__promo-cards,
  .page-poker__strategy-grid,
  .page-poker__community-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-poker__feature-card,
  .page-poker__promo-card,
  .page-poker__step-item,
  .page-poker__strategy-item {
    padding: 25px;
  }
  .page-poker__feature-title,
  .page-poker__promo-title,
  .page-poker__step-title,
  .page-poker__strategy-title,
  .page-poker__community-title,
  .page-poker__faq-question {
    font-size: 1.5em;
  }
  .page-poker__community-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__cta-section .page-poker__section-title {
    font-size: 2.5em;
  }
  /* Ensure images in content area are responsive and do not overflow */
  .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.95em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__feature-title,
  .page-poker__promo-title,
  .page-poker__step-title,
  .page-poker__strategy-title,
  .page-poker__community-title,
  .page-poker__faq-question {
    font-size: 1.3em;
  }
  .page-poker__cta-section .page-poker__section-title {
    font-size: 2em;
  }
}