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

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

.page-poker__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-poker__container--center {
  text-align: center;
}

.page-poker__hero-section {
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF;
}

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

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

.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;
  border: none;
  cursor: pointer;
}

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

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

.page-poker__button--login {
  background-color: #FCBC45;
  color: #000000;
}

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

.page-poker__button--play, .page-poker__button--claim, .page-poker__button--download {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--play:hover, .page-poker__button--claim:hover, .page-poker__button--download:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-poker__button--learn, .page-poker__button--contact, .page-poker__button--about, .page-poker__button--faq {
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #FCBC45;
}

.page-poker__button--learn:hover, .page-poker__button--contact:hover, .page-poker__button--about:hover, .page-poker__button--faq:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

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

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

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

.page-poker__about-section, .page-poker__games-section, .page-poker__strategy-section, .page-poker__promotions-section, .page-poker__security-section, .page-poker__mobile-section, .page-poker__community-section, .page-poker__faq-section, .page-poker__cta-section {
  padding: 80px 0;
}

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

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

.page-poker__feature-card, .page-poker__game-card, .page-poker__promo-card, .page-poker__strategy-item, .page-poker__security-item {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__feature-card:hover, .page-poker__game-card:hover, .page-poker__promo-card:hover, .page-poker__strategy-item:hover, .page-poker__security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon, .page-poker__game-image, .page-poker__promo-image, .page-poker__strategy-image, .page-poker__security-icon {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

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

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

.page-poker__game-card .page-poker__button--play, .page-poker__promo-card .page-poker__button--claim {
  margin-top: auto;
}

.page-poker__mobile-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__mobile-content {
  flex: 1;
  padding-right: 20px;
}

.page-poker__mobile-section .page-poker__section-title, .page-poker__mobile-section .page-poker__section-intro {
  color: #FFFFFF;
  text-align: left;
}

.page-poker__app-features ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-poker__app-features li {
  font-size: 1.1em;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #f0f0f0;
}

.page-poker__app-features li a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__app-features li a:hover {
  text-decoration: underline;
}

.page-poker__app-features li::before {
  content: '✓';
  color: #FCBC45;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-poker__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Enforce min size */
  min-height: 200px; /* Enforce min size */
}

.page-poker__community-section {
  background-color: #f8f8f8;
}

.page-poker__community-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-poker__faq-section {
  background-color: #FFFFFF;
}

.page-poker__faq-item {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-poker__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__cta-section .page-poker__section-title, .page-poker__cta-section .page-poker__section-intro {
  color: #FFFFFF;
}

.page-poker__cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

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

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

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.5em;
  }

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

  .page-poker__hero-actions, .page-poker__community-actions, .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }

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

  .page-poker__section-intro {
    font-size: 1em;
  }

  .page-poker__container--flex {
    flex-direction: column;
  }

  .page-poker__mobile-content {
    padding-right: 0;
    text-align: center;
  }

  .page-poker__mobile-section .page-poker__section-title, .page-poker__mobile-section .page-poker__section-intro {
    text-align: center;
  }

  .page-poker__app-features ul {
    text-align: left;
  }

  .page-poker__app-features li {
    font-size: 1em;
  }

  .page-poker__feature-card, .page-poker__game-card, .page-poker__promo-card, .page-poker__strategy-item, .page-poker__security-item {
    padding: 20px;
  }
  
  .page-poker__feature-icon img, .page-poker__game-image img, .page-poker__promo-image img, .page-poker__strategy-image img, .page-poker__security-icon img,
  .page-poker__hero-image img, .page-poker__mobile-image img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }

  .page-poker__hero-image,
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__promo-image,
  .page-poker__strategy-image,
  .page-poker__security-icon,
  .page-poker__mobile-image {
    width: 100%; /* Ensure images take full width of their container on mobile */
    height: auto;
    min-width: 200px; /* Ensure images are at least 200px wide */
    min-height: 200px; /* Ensure images are at least 200px tall */
  }

  .page-poker__feature-icon img, .page-poker__game-image img, .page-poker__promo-image img, .page-poker__strategy-image img, .page-poker__security-icon img, .page-poker__mobile-image img {
    width: 100%; /* Ensure images take full width of their container on mobile */
    height: auto;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
  }
  .page-poker__mobile-content .page-poker__button--download {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

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

  .page-poker__feature-title, .page-poker__game-title, .page-poker__promo-title, .page-poker__strategy-title, .page-poker__security-title {
    font-size: 1.4em;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
  }
}