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

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: #000000; /* Dark background for hero text */
  color: #FFFFFF;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f0f0f0;
}

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

.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, transform 0.2s ease;
  white-space: nowrap;
}

.page-poker__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

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

.page-poker__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
}

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

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
  color: #555555;
}

.page-poker__overview-section,
.page-poker__details-section,
.page-poker__why-choose-section {
  padding: 80px 0;
}

.page-poker__overview-section {
  background-color: #f9f9f9;
}

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

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

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

.page-poker__feature-icon {
  width: 200px;
  height: auto;
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

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

.page-poker__feature-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-poker__feature-link:hover {
  color: #e0a53b;
  text-decoration: underline;
}

.page-poker__details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__detail-card {
  display: flex;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-poker__detail-image {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.page-poker__detail-content {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

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

.page-poker__detail-title a:hover {
  color: #FCBC45;
}

.page-poker__detail-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 25px;
}

.page-poker__why-choose-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__why-choose-section .page-poker__section-title {
  color: #FFFFFF;
}

.page-poker__why-choose-section .page-poker__section-intro {
  color: #f0f0f0;
}

.page-poker__why-choose-content {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.page-poker__text-block {
  flex: 1;
  font-size: 1.1em;
  line-height: 1.8;
}

.page-poker__text-block p {
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-poker__image-block {
  flex: 1;
  text-align: center;
}

.page-poker__why-choose-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__cta-section {
  text-align: center;
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-top: 80px;
}

.page-poker__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-poker__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

  .page-poker__detail-card {
    flex-direction: column;
  }

  .page-poker__detail-image,
  .page-poker__detail-content {
    width: 100%;
  }

  .page-poker__why-choose-content {
    flex-direction: column;
  }

  .page-poker__text-block,
  .page-poker__image-block {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
    min-height: 500px;
  }

  .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%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-poker__overview-section,
  .page-poker__details-section,
  .page-poker__why-choose-section {
    padding: 60px 0;
  }

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

  .page-poker__section-intro {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

  .page-poker__feature-card,
  .page-poker__detail-card {
    padding: 25px;
  }

  .page-poker__feature-icon {
    width: 200px;
    height: auto;
  }

  .page-poker__feature-title {
    font-size: 1.5em;
  }

  .page-poker__detail-title {
    font-size: 1.6em;
  }

  .page-poker__text-block p {
    font-size: 1em;
  }

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

  .page-poker__cta-description {
    font-size: 1.1em;
  }

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

  .page-poker__hero-image {
    width: 100%;
    height: 100%;
  }

  .page-poker__feature-icon,
  .page-poker__detail-image,
  .page-poker__why-choose-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
}