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

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Main dark background for hero */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFFFFF; /* Light text on dark background */
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}

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

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

.page-poker__hero-description {
  font-size: 1.2em;
  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__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  min-width: 180px;
}

.page-poker__btn--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text on light button */
  border: 2px solid #FCBC45;
}

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

.page-poker__btn--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Light text on dark background */
  border: 2px solid #FFFFFF;
}

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

.page-poker__hero-image-container {
  width: 100%;
  max-width: 1600px;
  margin-top: 40px;
  z-index: 1;
}

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

.page-poker__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* White background for content */
}

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

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

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

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

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

.page-poker__feature-icon {
  width: 100%; /* Ensure images are responsive within cards */
  max-width: 400px; /* Max width for feature images */
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-poker__advantages-section {
  background-color: #000000; /* Dark background for this section */
  color: #FFFFFF;
  padding: 80px 0;
}

.page-poker__advantages-section .page-poker__section-title {
  color: #FCBC45; /* Highlight title with accent color */
}

.page-poker__advantages-section .page-poker__section-intro {
  color: #E0E0E0;
}

.page-poker__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-poker__advantage-item {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}

.page-poker__advantage-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-poker__advantage-heading {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__advantage-description {
  font-size: 1em;
  line-height: 1.7;
  color: #D0D0D0;
}

.page-poker__guide-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__article {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.page-poker__article-content {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

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

.page-poker__action-center {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 40px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    min-width: unset;
    width: 100%;
    max-width: 300px;
  }
  .page-poker__content-area {
    padding: 40px 15px;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__advantages-list {
    grid-template-columns: 1fr;
  }
  /* Mobile image overflow prevention */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-poker__article img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__feature-card,
  .page-poker__advantage-item,
  .page-poker__article {
    padding: 20px;
  }
}