.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

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

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

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

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

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

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

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

.page-poker__hero-image {
  width: 100%;
  height: auto;
  max-width: 1200px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-poker__about-section {
  background-color: #FFFFFF;
  padding: 60px 0;
}

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

.page-poker__about-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__about-text {
  flex: 2;
  min-width: 300px;
}

.page-poker__about-text p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444444;
}

.page-poker__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-poker__button--learn-more:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-poker__games-section {
  background-color: #F8F8F8;
  padding: 60px 0;
}

.page-poker__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-poker__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__game-image {
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__game-title {
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000;
}

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #666666;
}

.page-poker__button--play-game {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-poker__button--play-game:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-poker__strategy-section {
  padding: 60px 0;
}

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

.page-poker__strategy-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__strategy-card-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-poker__strategy-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-poker__strategy-card-title a:hover {
  text-decoration: underline;
}

.page-poker__strategy-card-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #666666;
}

.page-poker__button--view-details {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-poker__button--view-details:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-poker__view-all-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-poker__button--view-all {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 15px 30px;
  font-size: 1.1em;
}

.page-poker__button--view-all:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-poker__promotions-section {
  background-color: #F8F8F8;
  padding: 60px 0;
}

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

.page-poker__promo-image {
  flex: 1;
  min-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__promo-text {
  flex: 2;
  min-width: 300px;
}

.page-poker__promo-text p {
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444444;
}

.page-poker__button--claim-bonus {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 12px 25px;
  font-size: 1em;
}

.page-poker__button--claim-bonus:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-poker__cta-section {
  background-color: #000000; /* Main brand color for CTA background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-poker__cta-title {
  font-size: 3em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-poker__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

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

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

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

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

.page-poker__button--download-app:hover {
  background-color: #E0A535;
  transform: translateY(-2px);
}

.page-poker__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: calc(var(--header-offset, 120px) + 40px) 20px 40px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions, .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title, .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__about-content, .page-poker__promo-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-poker__about-image, .page-poker__promo-image {
    width: 100%;
    min-width: 200px;
  }
  .page-poker__game-grid, .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-image, .page-poker__strategy-image, .page-poker__cta-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size on mobile */
    min-height: 200px; /* Ensure min size on mobile */
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title, .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__container {
    padding: 20px 15px;
  }
}