.page-poker {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #000000; /* Ensure consistency with body background if not already set by shared */
}

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

.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  text-align: center;
  padding: var(--header-offset, 120px) 20px 60px; /* PC and mobile header offset */
  background-color: #000000; /* Dark background */
  overflow: hidden;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-poker__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6; /* Slightly dim the image to make text more readable */
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark overlay for text contrast */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-poker__btn--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
}

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

.page-poker__btn--secondary {
  background-color: #FFFFFF; /* Register color for secondary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-poker__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-poker__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-poker__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-poker__about-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__features-section,
.page-poker__strategy-section,
.page-poker__cta-final-section {
  padding: 80px 0;
  background-color: #000000;
}

.page-poker__games-section,
.page-poker__features-section {
  background-color: #1a1a1a; /* Slightly lighter dark background for contrast */
}

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

.page-poker__game-card,
.page-poker__feature-card {
  background-color: #0d0d0d;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__game-card img,
.page-poker__feature-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 400px; /* Explicit width for display area */
  height: 300px; /* Explicit height for display area */
}

.page-poker__feature-card img {
  width: 200px; /* Explicit width for display area */
   /* Explicit height for display area */
  border-radius: 50%; /* Example: circular feature icons if desired, but still content images */
}

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

.page-poker__game-description,
.page-poker__feature-description {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__tournament-list,
.page-poker__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-poker__tournament-item,
.page-poker__strategy-item {
  background-color: #0d0d0d;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__tournament-heading,
.page-poker__strategy-heading {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-poker__tournament-description,
.page-poker__strategy-description {
  font-size: 1em;
  color: #f0f0f0;
}

.page-poker__cta-bottom,
.page-poker__cta-final-section {
  text-align: center;
  margin-top: 60px;
}

.page-poker__cta-final-section .page-poker__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@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 {
    min-height: 450px;
    padding-top: var(--header-offset, 80px);
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__game-grid,
  .page-poker__features-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-card img,
  .page-poker__feature-card img {
    max-width: 100%;
    height: auto;
    /* Ensure content area images are not styled smaller than 200px */
    min-width: 200px; 
    min- /* Adjusted min-height for aspect ratio, still >200 area */
  }
  .page-poker__text-block {
    text-align: left;
  }
  /* Ensure no horizontal scrolling */
  .page-poker {
    overflow-x: hidden;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  /* For all img elements within .page-poker */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__hero-content {
    padding: 15px;
  }
}