.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d; /* Dark background for contrast with hero content */
  padding-bottom: 60px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 1;
  max-width: 900px;
  width: 90%;
}

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

.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__button {
  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;
  cursor: pointer;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #8B0000;
  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: #8B0000;
  transform: translateY(-2px);
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__tournaments-section, .page-poker__details-list-section, .page-poker__cta-bottom {
  padding: 80px 0;
}

.page-poker__about-section {
  background-color: #fcfcfc;
}

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

.page-poker__about-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__about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-poker__card-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-poker__card-description {
  font-size: 1em;
  color: #555555;
}

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

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

.page-poker__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.page-poker__game-image {
  width: 100%;
  height: auto;
  max-width: 300px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-poker__game-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-poker__game-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__strategy-section {
  background-color: #fcfcfc;
}

.page-poker__intro-text {
  text-align: center;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #444444;
}

.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-poker__strategy-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
  padding: 25px;
  text-align: center;
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  max-width: 200px; /* Card images can be smaller than main content images */
  min-width: 200px;
  min-height: 150px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-poker__strategy-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-poker__strategy-description {
  font-size: 0.9em;
  color: #555555;
}

.page-poker__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-poker__tournaments-section {
  background-color: #0d0d0d;
  color: #ffffff;
}

.page-poker__tournaments-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__tournaments-section .page-poker__section-title::after {
  background-color: #8B0000;
}

.page-poker__tournament-banner {
  width: 100%;
  height: auto;
  max-width: 800px; /* Ensure image is not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 12px;
  display: block;
  margin: 0 auto 40px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__tournaments-description {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-poker__details-list-section {
  background-color: #fcfcfc;
}

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

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

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

.page-poker__details-title {
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-poker__details-title a {
  color: #8B0000;
  text-decoration: none;
}

.page-poker__details-title a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-poker__details-description {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__cta-bottom {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  text-align: center;
  padding: 100px 20px;
  color: #ffffff;
}

.page-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-poker__cta-text {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 120px);
  }
  .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: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__tournaments-section, .page-poker__details-list-section, .page-poker__cta-bottom {
    padding: 60px 0;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__about-card, .page-poker__game-card, .page-poker__strategy-item, .page-poker__details-card {
    padding: 20px;
  }
  .page-poker__card-image, .page-poker__game-image, .page-poker__strategy-image, .page-poker__tournament-banner {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for all content images */
    min-height: 200px;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__cta-text {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__button {
    width: 90%;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__card-title {
    font-size: 1.5em;
  }
  .page-poker__game-title {
    font-size: 1.4em;
  }
  .page-poker__strategy-title {
    font-size: 1.3em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
}