.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  padding-bottom: 60px;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: 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%);
  z-index: 10;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  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: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-poker__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000;
}

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

.page-poker__button--login,
.page-poker__button--learn-more,
.page-poker__button--play-now,
.page-poker__button--view-schedule,
.page-poker__button--read-more,
.page-poker__button--claim-bonus,
.page-poker__button--view-promos,
.page-poker__button--learn-vip,
.page-poker__button--download-app,
.page-poker__button--faq-link,
.page-poker__button--final-cta {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

.page-poker__button--login:hover,
.page-poker__button--learn-more:hover,
.page-poker__button--play-now:hover,
.page-poker__button--view-schedule:hover,
.page-poker__button--read-more:hover,
.page-poker__button--claim-bonus:hover,
.page-poker__button--view-promos:hover,
.page-poker__button--learn-vip:hover,
.page-poker__button--download-app:hover,
.page-poker__button--faq-link:hover,
.page-poker__button--final-cta:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

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

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

.page-poker__overview-section,
.page-poker__game-variants-section,
.page-poker__tournaments-section,
.page-poker__strategy-guide-section,
.page-poker__bonuses-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Default light background */
}

.page-poker__game-variants-section,
.page-poker__tournaments-section,
.page-poker__bonuses-section,
.page-poker__strategy-guide-section {
  background-color: #f9f9f9;
}

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

.page-poker__variant-card,
.page-poker__tournament-card,
.page-poker__strategy-card,
.page-poker__bonus-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-poker__variant-image,
.page-poker__tournament-image,
.page-poker__strategy-image,
.page-poker__bonus-image,
.page-poker__mobile-app-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__variant-title,
.page-poker__tournament-title,
.page-poker__strategy-card-title,
.page-poker__bonus-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__variant-text,
.page-poker__tournament-text,
.page-poker__strategy-card-text,
.page-poker__bonus-text {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__mobile-app-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-poker__mobile-app-container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-poker__mobile-app-content {
  flex: 1;
  text-align: left;
}

.page-poker__mobile-app-section .page-poker__section-title {
  color: #FFFFFF;
  text-align: left;
}

.page-poker__mobile-app-section .page-poker__section-description {
  color: #f0f0f0;
  text-align: left;
  margin-left: 0;
}

.page-poker__mobile-app-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-poker__mobile-app-image {
  max-width: 400px;
  border: 5px solid #FCBC45;
  box-shadow: 0 0 20px rgba(252, 188, 69, 0.5);
}

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

.page-poker__faq-item {
  background-color: #f0f0f0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-poker__cta-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__cta-section .page-poker__section-description {
  color: #f0f0f0;
}

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

  .page-poker__section-title {
    font-size: 2em;
  }
}

@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;
    gap: 15px;
  }

  .page-poker__hero-content {
    max-width: 90%;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__section-description {
    font-size: 0.95em;
  }

  .page-poker__variants-grid,
  .page-poker__tournaments-grid,
  .page-poker__strategy-grid,
  .page-poker__bonuses-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__mobile-app-container {
    flex-direction: column;
    text-align: center;
  }

  .page-poker__mobile-app-section .page-poker__section-title,
  .page-poker__mobile-app-section .page-poker__section-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .page-poker__mobile-app-image {
    max-width: 250px;
  }

  .page-poker__hero-image,
  .page-poker__variant-image,
  .page-poker__tournament-image,
  .page-poker__strategy-image,
  .page-poker__bonus-image,
  .page-poker__mobile-app-image {
    max-width: 100%;
    height: auto;
  }

  .page-poker__overview-section img,
  .page-poker__game-variants-section img,
  .page-poker__tournaments-section img,
  .page-poker__strategy-guide-section img,
  .page-poker__bonuses-section img,
  .page-poker__mobile-app-section img,
  .page-poker__faq-section img,
  .page-poker__cta-section img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-poker__section-title {
    font-size: 1.5em;
  }

  .page-poker__section-description {
    font-size: 0.9em;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
  }
}