.page-poker {
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure space below fixed header */
  padding-bottom: 60px;
}

.page-poker__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim image for text readability */
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  max-width: 80%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

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

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

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

.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;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-poker__button--center {
  display: block;
  margin: 40px auto 20px auto;
  width: fit-content;
}

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

.page-poker__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-poker__section-text {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: left;
}

.page-poker__section-text strong {
  color: #FFD700;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__strategy-item,
.page-poker__bonus-card {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px; /* Ensure cards are not too small */
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__strategy-item:hover,
.page-poker__bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__strategy-title,
.page-poker__bonus-title,
.page-poker__info-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-poker__feature-description,
.page-poker__game-description,
.page-poker__strategy-description,
.page-poker__bonus-description,
.page-poker__info-description {
  font-size: 1em;
  color: #cccccc;
  line-height: 1.7;
}

.page-poker__game-image,
.page-poker__tournament-image,
.page-poker__mobile-image,
.page-poker__strategy-image,
.page-poker__security-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
  min-width: 200px; /* Minimum display width */
  min-height: 200px; /* Minimum display height */
}

.page-poker__tournament-info,
.page-poker__security-info,
.page-poker__mobile-features {
  text-align: left;
  margin-top: 40px;
}

.page-poker__tournament-info h3,
.page-poker__security-info h3,
.page-poker__mobile-features h3 {
  margin-top: 25px;
  font-size: 1.5em;
  color: #FFD700;
}

.page-poker__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
    padding-bottom: 40px;
  }
  .page-poker__hero-content {
    max-width: 90%;
    padding: 15px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__section {
    padding: 40px 15px;
  }
  .page-poker__section-title {
    font-size: 2em;
    margin-bottom: 25px;
  }
  .page-poker__section-text {
    font-size: 0.95em;
  }
  .page-poker__features-grid,
  .page-poker__game-showcase,
  .page-poker__strategy-grid,
  .page-poker__bonus-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__strategy-item,
  .page-poker__bonus-card {
    padding: 25px;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__strategy-title,
  .page-poker__bonus-title,
  .page-poker__info-title {
    font-size: 1.5em;
  }
  .page-poker__game-image, .page-poker__tournament-image, .page-poker__mobile-image, .page-poker__strategy-image, .page-poker__security-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__cta-actions {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.6em;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__strategy-title,
  .page-poker__bonus-title,
  .page-poker__info-title {
    font-size: 1.3em;
  }
  .page-poker__button {
    width: 100%;
  }
}