.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 below fixed header */
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #1A2B4C; /* Midnight Blue */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-poker__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1em;
  cursor: pointer;
  text-align: center;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A2B4C; /* Midnight Blue */
  border: 2px solid #FFD700;
}

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #1A2B4C; /* Midnight Blue */
  border: 2px solid #1A2B4C;
}

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

.page-poker__button--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-poker__button--large {
  padding: 15px 40px;
  font-size: 1.2em;
}

/* Hero Section */
.page-poker__hero-section {
  background-color: #1A2B4C; /* Midnight Blue */
  color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.page-poker__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker__hero-content {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  text-align: left;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-align: left;
  max-width: none;
}

.page-poker__hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.page-poker__hero-image {
  flex: 1;
  min-width: 400px;
  text-align: right;
}

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

/* About Section */
.page-poker__about-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

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

.page-poker__feature-card:hover {
  transform: translateY(-5px);
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #1A2B4C; /* Midnight Blue */
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  color: #666666;
  text-align: center;
}

.page-poker__image-full-width {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-poker__game-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
}

.page-poker__game-card img {
  max-width: 100%;
  height: auto;
  display: block;
  border-bottom: 3px solid #FFD700; /* Gold */
}

.page-poker__game-title {
  font-size: 1.8em;
  color: #1A2B4C; /* Midnight Blue */
  margin: 20px 0 10px;
}

.page-poker__game-description {
  font-size: 1em;
  color: #666666;
  padding: 0 20px 20px;
  text-align: center;
}

.page-poker__game-card .page-poker__button {
  margin-bottom: 20px;
}

.page-poker__center-action {
  text-align: center;
  margin-top: 40px;
}

/* Strategy Section */
.page-poker__strategy-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-poker__article-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-poker__article-card:hover {
  transform: translateY(-5px);
}

.page-poker__article-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-poker__article-title a {
  color: #1A2B4C; /* Midnight Blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker__article-title a:hover {
  color: #FFD700; /* Gold */
}

.page-poker__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  text-align: left;
}

/* Bonuses Section */
.page-poker__bonuses-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-poker__bonus-card {
  background-color: #1A2B4C; /* Midnight Blue */
  color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: transform 0.3s ease;
  border-bottom: 5px solid #FFD700; /* Gold accent */
}

.page-poker__bonus-card:hover {
  transform: translateY(-5px);
}

.page-poker__bonus-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
}

.page-poker__bonus-description {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 25px;
  text-align: center;
}

.page-poker__bonus-card .page-poker__button--small {
  background-color: #FFD700;
  color: #1A2B4C;
  border-color: #FFD700;
}

.page-poker__bonus-card .page-poker__button--small:hover {
  background-color: #e5c100;
}

/* Mobile Section */
.page-poker__mobile-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.page-poker__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-poker__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-poker__mobile-details {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.page-poker__mobile-subtitle {
  font-size: 2em;
  color: #1A2B4C; /* Midnight Blue */
  margin-bottom: 20px;
}

.page-poker__mobile-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__mobile-details li {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-poker__mobile-details li::before {
  content: '✔';
  color: #FFD700; /* Gold */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* CTA Section */
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #1A2B4C; /* Midnight Blue */
  color: #ffffff;
  text-align: center;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FFD700; /* Gold */
}

.page-poker__cta-section .page-poker__text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-poker__hero-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .page-poker__hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 40px;
  }

  .page-poker__hero-description {
    text-align: center;
  }

  .page-poker__hero-actions {
    justify-content: center;
  }

  .page-poker__hero-image {
    min-width: unset;
    text-align: center;
    margin-bottom: 40px;
  }

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

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

  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__strategy-articles,
  .page-poker__bonus-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__mobile-content {
    flex-direction: column;
  }

  .page-poker__mobile-image {
    order: 2;
  }

  .page-poker__mobile-details {
    order: 1;
    text-align: center;
  }

  .page-poker__mobile-details li {
    text-align: left;
  }

  /* Ensure all content images in mobile are responsive and not smaller than 200px */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
  
  .page-poker__hero-image img,
  .page-poker__image-full-width,
  .page-poker__game-card img,
  .page-poker__mobile-image {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .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__button {
    width: 100%;
  }

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