.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 not hidden by fixed header */
}

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

.page-poker__hero-section {
  background-color: #000000; /* Main color for hero background */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

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

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

.page-poker__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.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.3s ease;
  white-space: nowrap;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #000000;
}

.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: #FFD700;
  color: #000000;
  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-intro {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-guide-section, .page-poker__promotions-section, .page-poker__cta-section {
  padding: 60px 0;
}

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px 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__game-card:hover, .page-poker__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon, .page-poker__game-image, .page-poker__promo-image {
  width: 100%; /* Ensure images fill card width */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__feature-title, .page-poker__game-title, .page-poker__promo-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-poker__button--tertiary {
  background-color: #000000;
  color: #FFD700;
  border: 2px solid #000000;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push to bottom */
}

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

.page-poker__button--play {
  background-color: #FFD700;
  color: #000000;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push to bottom */
}

.page-poker__button--play:hover {
  background-color: #e6c200;
}

.page-poker__strategy-guide-section {
  background-color: #f9f9f9;
}

.page-poker__strategy-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.page-poker__text-block {
  flex: 2;
  min-width: 300px;
}

.page-poker__text-block h3 {
  font-size: 1.8em;
  color: #000000;
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-poker__text-block p {
  color: #444444;
  margin-bottom: 15px;
}

.page-poker__image-block {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__button--view-all {
  background-color: #000000;
  color: #FFD700;
  border: 2px solid #000000;
  padding: 12px 25px;
  font-size: 1em;
  margin-top: 30px;
  display: inline-block;
}

.page-poker__button--view-all:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-poker__promotions-section {
  background-color: #000000;
  color: #ffffff;
}

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

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

.page-poker__promo-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-poker__promo-card .page-poker__promo-title {
  color: #FFD700;
}

.page-poker__promo-card .page-poker__promo-description {
  color: #cccccc;
}

.page-poker__button--claim {
  background-color: #FFD700;
  color: #000000;
  padding: 10px 20px;
  font-size: 0.9em;
  margin-top: auto; /* Push to bottom */
}

.page-poker__button--claim:hover {
  background-color: #e6c200;
}

.page-poker__all-promos-action {
  text-align: center;
  margin-top: 50px;
}

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

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

/* Responsive adjustments */
@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__button {
    width: 100%;
    max-width: 300px;
  }

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

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

  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__promo-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__strategy-content {
    flex-direction: column;
  }

  .page-poker__text-block, .page-poker__image-block {
    min-width: unset;
    width: 100%;
  }

  .page-poker__feature-icon, .page-poker__game-image, .page-poker__promo-image, .page-poker__strategy-image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@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.8em;
  }
  
  .page-poker__feature-icon, .page-poker__game-image, .page-poker__promo-image, .page-poker__strategy-image {
    min-width: 200px;
    min-height: 200px;
  }
}