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

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

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

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

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

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

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

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

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

.page-poker__about-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__strategy-section,
.page-poker__cta-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-poker__about-section {
  background-color: #f8f8f8;
}

.page-poker__about-container,
.page-poker__games-container,
.page-poker__tournaments-container,
.page-poker__strategy-container,
.page-poker__cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-poker__about-title,
.page-poker__games-title,
.page-poker__tournaments-title,
.page-poker__strategy-title,
.page-poker__cta-title {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #000000;
}

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

.page-poker__about-text {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
}

.page-poker__about-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-poker__games-intro,
.page-poker__tournaments-intro,
.page-poker__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #555555;
}

.page-poker__game-cards {
  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 8px 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__game-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

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

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

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

.page-poker__tournaments-title {
  color: #FCBC45;
}

.page-poker__tournaments-intro {
  color: #f0f0f0;
}

.page-poker__tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-poker__tournament-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__tournament-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__tournament-name {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

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

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

.page-poker__button--view-promo {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-poker__button--view-promo:hover {
  background-color: #f0f0f0;
}

.page-poker__button--join-tourney {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
}

.page-poker__button--join-tourney:hover {
  background-color: #e0a538;
}

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

.page-poker__strategy-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-poker__strategy-image {
  flex: 1;
  max-width: 500px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-text-block {
  flex: 1;
}

.page-poker__strategy-text {
  font-size: 1.1em;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__strategy-list-item {
  font-size: 1em;
  line-height: 1.8;
  color: #666666;
  position: relative;
  padding-left: 25px;
}

.page-poker__strategy-list-item::before {
  content: '✓';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-poker__cta-section {
  background-color: #000000;
  color: #ffffff;
  padding-bottom: 100px;
}

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

.page-poker__cta-description {
  color: #f0f0f0;
}

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

.page-poker__button--register-cta {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

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

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

.page-poker__button--download-app:hover {
  background-color: #e0a538;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__about-title,
  .page-poker__games-title,
  .page-poker__tournaments-title,
  .page-poker__strategy-title,
  .page-poker__cta-title {
    font-size: 2.2em;
  }
  .page-poker__about-content,
  .page-poker__strategy-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-poker__about-image,
  .page-poker__strategy-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 80px);
    padding-bottom: 60px;
  }
  .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;
    margin: 0 auto;
  }
  .page-poker__about-section,
  .page-poker__games-section,
  .page-poker__tournaments-section,
  .page-poker__strategy-section,
  .page-poker__cta-section {
    padding: 60px 15px;
  }
  .page-poker__about-title,
  .page-poker__games-title,
  .page-poker__tournaments-title,
  .page-poker__strategy-title,
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__game-card,
  .page-poker__tournament-card {
    padding: 20px;
  }
  .page-poker__game-name,
  .page-poker__tournament-name {
    font-size: 1.5em;
  }
  .page-poker__tournaments-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure content area images do not overflow on mobile */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__about-title,
  .page-poker__games-title,
  .page-poker__tournaments-title,
  .page-poker__strategy-title,
  .page-poker__cta-title {
    font-size: 1.5em;
  }
}