.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); /* 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 section */
  padding: 0;
  text-align: center;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45;
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-poker__button--register:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-poker__button--login:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
}

.page-poker__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-poker__introduction-section, .page-poker__game-variants-section, .page-poker__strategy-guide-section, .page-poker__tournaments-section, .page-poker__bonuses-section, .page-poker__safety-section, .page-poker__cta-section {
  padding: 40px 0;
}

.page-poker__game-variants-section, .page-poker__bonuses-section {
  background-color: #f8f8f8;
}

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

.page-poker__variant-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);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  min-height: 200px; /* Ensure cards are not too small */
}

.page-poker__variant-card:hover, .page-poker__strategy-card:hover, .page-poker__bonus-card:hover {
  transform: translateY(-5px);
}

.page-poker__variant-image, .page-poker__bonus-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-poker__variant-title, .page-poker__bonus-title, .page-poker__strategy-card-title {
  font-size: 1.5em;
  color: #000000;
  margin: 20px 15px 10px;
}

.page-poker__variant-description, .page-poker__bonus-description, .page-poker__strategy-card-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-poker__button--explore, .page-poker__button--view-promo, .page-poker__button--all-promos, .page-poker__button--join-now, .page-poker__button--contact {
  background-color: #000000;
  color: #FCBC45;
  margin-top: 30px;
  border: 2px solid #000000;
}

.page-poker__button--explore:hover, .page-poker__button--view-promo:hover, .page-poker__button--all-promos:hover, .page-poker__button--join-now:hover, .page-poker__button--contact:hover {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--read-more, .page-poker__button--claim {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 15px;
  border: 2px solid #FCBC45;
  margin-bottom: 20px;
}

.page-poker__button--read-more:hover, .page-poker__button--claim:hover {
  background-color: #000000;
  color: #FCBC45;
}

.page-poker__tournaments-section .page-poker__text-content, .page-poker__safety-section .page-poker__text-content, .page-poker__cta-section .page-poker__text-content {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-poker__tournament-image, .page-poker__security-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

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

.page-poker__cta-section .page-poker__section-title::after {
  background-color: #FFFFFF;
}

.page-poker__cta-section .page-poker__text-content {
  color: #f0f0f0;
}

.page-poker__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.page-poker__button--join-now {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--join-now:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-poker__button--contact:hover {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

/* 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;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-container {
    min-height: 450px;
  }
  .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__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    margin-top: 40px;
  }
  .page-poker__text-content {
    font-size: 1em;
  }
  .page-poker__variants-grid, .page-poker__strategy-grid, .page-poker__bonuses-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__button--explore, .page-poker__button--view-promo, .page-poker__button--all-promos, .page-poker__button--join-now, .page-poker__button--contact {
    width: auto; /* Allow auto width for mobile buttons if they are inline-block */
    padding: 12px 25px;
  }
  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__cta-actions .page-poker__button {
    width: 80%;
    margin: 0 auto;
  }

  /* Ensure content area images are responsive and don't overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__variant-image, .page-poker__bonus-image {
    height: auto; /* Allow height to adjust */
    max-height: 250px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__hero-content {
    padding: 20px 10px;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
    margin-top: 30px;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__button--explore, .page-poker__button--view-promo, .page-poker__button--all-promos, .page-poker__button--join-now, .page-poker__button--contact {
    font-size: 1em;
  }
  .page-poker__cta-actions .page-poker__button {
    width: 90%;
  }
}