.page-poker {
  color: #FFFFFF; /* Light text for dark background */
  background-color: #000000; /* Main dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
  text-align: center;
  background-color: #000000;
}

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

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

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

.page-poker__hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #FFFFFF;
}

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

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

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

.page-poker__btn--register:hover {
  background-color: #e0e0e0;
}

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

.page-poker__btn--login:hover {
  background-color: #e6a83e;
}

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

.page-poker__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #FFFFFF;
}

.page-poker__game-selection-section,
.page-poker__tournaments-section,
.page-poker__security-features-section,
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #000000;
}

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

.page-poker__game-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(252, 188, 69, 0.2);
}

.page-poker__game-card-image {
  width: 100%;
  max-width: 400px;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__game-card-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FCBC45;
}

.page-poker__game-card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #e0e0e0;
}

.page-poker__game-card-btn {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: background-color 0.3s ease;
}

.page-poker__game-card-btn:hover {
  background-color: #e6a83e;
}

.page-poker__tournament-features,
.page-poker__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__feature-item,
.page-poker__security-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-poker__feature-icon,
.page-poker__security-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__feature-title,
.page-poker__security-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-poker__feature-text,
.page-poker__security-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-poker__btn--join-tournaments {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-poker__btn--join-tournaments:hover {
  background-color: #e6a83e;
}

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

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

.page-poker__cta-description {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333333;
}

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

.page-poker__btn--sign-up {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__btn--sign-up:hover {
  background-color: #333333;
}

.page-poker__btn--promos {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__btn--promos:hover {
  background-color: #e0e0e0;
}

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

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px);
  }
  .page-poker__hero-section {
    padding: 60px 0 40px;
  }
  .page-poker__hero-title {
    font-size: 2.2rem;
  }
  .page-poker__hero-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 2rem;
  }
  .page-poker__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .page-poker__game-cards,
  .page-poker__tournament-features,
  .page-poker__security-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-poker__game-card-image,
  .page-poker__feature-icon,
  .page-poker__security-icon {
    max-width: 250px;
    height: auto;
  }
  .page-poker__cta-title {
    font-size: 2rem;
  }
  .page-poker__cta-description {
    font-size: 1rem;
  }
  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__game-card-image, .page-poker__feature-icon, .page-poker__security-icon, .page-poker__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__container img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8rem;
  }
  .page-poker__section-title {
    font-size: 1.6rem;
  }
  .page-poker__cta-title {
    font-size: 1.8rem;
  }
  .page-poker__btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-poker__game-card-title {
    font-size: 1.5rem;
  }
  .page-poker__feature-title,
  .page-poker__security-title {
    font-size: 1.4rem;
  }
}