.page-poker {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #FFFFFF; /* Default light background */
  color: #333333; /* Dark text for light 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;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 20px 40px; /* Adjusted padding to prevent double offset */
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  overflow: hidden;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

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

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

.page-poker__hero-actions {
  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;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-poker__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-poker__button--play, .page-poker__button--download, .page-poker__button--join-tournaments, .page-poker__button--claim-bonus {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--play:hover, .page-poker__button--download:hover, .page-poker__button--join-tournaments:hover, .page-poker__button--claim-bonus:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-poker__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__button--learn-more:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-poker__why-choose-section, .page-poker__getting-started-section, .page-poker__tournaments-section, .page-poker__strategy-section, .page-poker__promotions-section, .page-poker__faq-section, .page-poker__conclusion-section {
  padding: 60px 0;
}

.page-poker__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 25px;
  color: #000000;
}

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

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

.page-poker__feature-card, .page-poker__step-card, .page-poker__tournament-feature-card, .page-poker__strategy-card, .page-poker__promo-card {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__feature-card:hover, .page-poker__step-card:hover, .page-poker__tournament-feature-card:hover, .page-poker__strategy-card:hover, .page-poker__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

.page-poker__feature-title, .page-poker__step-title, .page-poker__tournament-feature-title, .page-poker__strategy-title, .page-poker__promo-title {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #000000;
}

.page-poker__feature-description, .page-poker__step-description, .page-poker__tournament-feature-description, .page-poker__strategy-description, .page-poker__promo-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__step-description a, .page-poker__promo-description a, .page-poker__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__step-description a:hover, .page-poker__promo-description a:hover, .page-poker__faq-answer a:hover {
  text-decoration: underline;
}

.page-poker__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-poker__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
}

.page-poker__conclusion-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__conclusion-section .page-poker__section-title {
  color: #FFFFFF;
}

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

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

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

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid, .page-poker__steps-grid, .page-poker__tournament-features-grid, .page-poker__strategy-grid, .page-poker__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-title, .page-poker__step-title, .page-poker__tournament-feature-title, .page-poker__strategy-title, .page-poker__promo-title {
    font-size: 1.5em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  /* Mobile content image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-section {
    padding: 60px 15px 30px;
  }
  .page-poker__why-choose-section, .page-poker__getting-started-section, .page-poker__tournaments-section, .page-poker__strategy-section, .page-poker__promotions-section, .page-poker__faq-section, .page-poker__conclusion-section {
    padding: 40px 0;
  }
  .page-poker__conclusion-actions {
    flex-direction: column;
  }
}