.page-poker {
  color: #333333; /* Dark text for light body background */
  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__section-title {
  font-size: 2.5em;
  color: #0A192F;
  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: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A192F;
  padding: 0;
  margin-bottom: 60px;
}

.page-poker__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 10;
  max-width: 90%;
}

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

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

.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;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  min-width: 200px; /* Ensure buttons are not too small */
  text-align: center;
}

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

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

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

.page-poker__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

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

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

.page-poker__why-choose-section,
.page-poker__get-started-section,
.page-poker__strategy-section,
.page-poker__promo-section,
.page-poker__responsible-gaming-section,
.page-poker__customer-support-section,
.page-poker__final-cta-section {
  padding: 80px 0;
  background-color: #ffffff; /* White background for content sections */
  margin-bottom: 0;
}

.page-poker__why-choose-section {
  background-color: #F8F8F8;
}

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

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

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

.page-poker__feature-icon,
.page-poker__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-poker__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 25px;
}

.page-poker__card-title {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-poker__strategy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.page-poker__column-title {
  font-size: 2em;
  color: #0A192F;
  margin-bottom: 30px;
  text-align: center;
}

.page-poker__strategy-list {
  list-style: none;
  padding: 0;
}

.page-poker__list-item {
  background-color: #F8F8F8;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.05em;
  color: #333333;
  line-height: 1.5;
}

.page-poker__list-item strong {
  color: #0A192F;
}

.page-poker__list-item a {
  color: #0A192F;
  text-decoration: underline;
}

.page-poker__list-item a:hover {
  color: #FFD700;
}

.page-poker__all-promos-cta {
  text-align: center;
  margin-top: 60px;
}

.page-poker__responsible-gaming-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto 60px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-poker__responsible-gaming-list .page-poker__list-item {
  background-color: #e9f5ff; /* Lighter blue for responsible gaming */
  border-left-color: #0A192F;
  text-align: left;
  padding: 18px 25px;
}

.page-poker__support-options {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__strategy-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    min-width: unset;
    width: 80%;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description {
    font-size: 0.95em;
  }
  .page-poker__features-grid,
  .page-poker__steps-grid,
  .page-poker__promos-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-card,
  .page-poker__step-card,
  .page-poker__promo-card {
    padding: 25px;
  }
  .page-poker__feature-icon,
  .page-poker__promo-image {
    height: 180px;
  }
  .page-poker__card-title {
    font-size: 1.3em;
  }
  .page-poker__card-text {
    font-size: 0.95em;
  }
  .page-poker__list-item {
    font-size: 0.9em;
  }
  .page-poker__support-options {
    flex-direction: column;
    gap: 15px;
  }
  /* Mobile content area images must not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image {
    max-height: 400px; /* Limit hero image height on mobile */
  }
  .page-poker__hero-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__section-description {
    font-size: 0.9em;
  }
  .page-poker__btn {
    width: 90%;
  }
  .page-poker__btn--large {
    font-size: 1.1em;
  }
}