.page-poker {
  padding-top: var(--header-offset, 120px);
  color: #333333; /* Dark text for light body background */
  background-color: #f4f4f4; /* Light background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-poker__section {
  padding: 60px 0;
}

.page-poker__section--dark-background {
  background-color: #1A1A1A;
  color: #ffffff;
}

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

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

.page-poker__section-intro {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__section-text {
  font-size: 1.1em;
  text-align: center;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__section-text--light {
  color: #f0f0f0;
}

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin: 10px;
  min-width: 200px;
  text-align: center;
  font-size: 1.1em;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
}

.page-poker__button--light {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}