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

.page-poker__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px);
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* Light text on potentially dark image */
  padding: 20px;
  max-width: 800px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
}

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

.page-poker__hero-button {
  display: inline-block;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  font-size: 1.1em;
}

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

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

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

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

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

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

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

.page-poker__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-poker__about-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__bonuses-section, .page-poker__get-started-section, .page-poker__strategy-section, .page-poker__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__bonus-card, .page-poker__step-card, .page-poker__strategy-card {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 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__game-card:hover, .page-poker__bonus-card:hover, .page-poker__step-card:hover, .page-poker__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__feature-icon {
  width: 100%; /* Must be >= 200px */
  height: auto;
  max-width: 400px;
  margin: 0 auto 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-poker__game-image, .page-poker__bonus-image {
  width: 100%; /* Must be >= 200px */
  height: auto;
  max-width: 400px;
  margin: 0 auto 20px;
  border-radius: 5px;
  object-fit: cover;
}

.page-poker__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__card-text, .page-poker__card-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

.page-poker__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-poker__card-button:hover {
  background-color: #333333;
}

.page-poker__tournament-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 50px;
  max-width: 900px;
}

.page-poker__tournament-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-poker__list-title {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-poker__list-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
}

.page-poker__button {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

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

.page-poker__button--view-schedule {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--view-schedule:hover {
  background-color: #E0A83D;
}

.page-poker__step-card {
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-poker__step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__strategy-card {
  text-align: left;
  padding: 25px;
}

.page-poker__strategy-card .page-poker__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-poker__strategy-card .page-poker__card-description {
  font-size: 0.95em;
}

.page-poker__button--learn-more {
  background-color: #000000;
  color: #FFFFFF;
}

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

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

.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__section-text {
  color: #F0F0F0;
}

.page-poker__cta-button {
  background-color: #FCBC45;
  color: #000000;
  font-size: 1.3em;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__cta-button:hover {
  background-color: #E0A83D;
  transform: translateY(-3px);
}

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

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__hero-button {
    padding: 10px 20px;
    margin: 5px;
    font-size: 1em;
  }

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

  .page-poker__section-text {
    font-size: 1em;
  }

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

  .page-poker__feature-icon, .page-poker__game-image, .page-poker__bonus-image {
    max-width: 100%; /* Ensure images are responsive and not smaller than 200px */
    width: 100%;
    height: auto;
  }

  .page-poker__container {
    padding: 20px;
  }

  .page-poker__cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }

  /* Mobile content image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}