.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Minimum height for hero section */
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay */
  border-radius: 15px;
  color: #FFFFFF; /* Light text on dark overlay */
}

.page-poker__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  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;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-poker__button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Main color for text */
}

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

.page-poker__button--login,
.page-poker__button--play-game,
.page-poker__button--claim-promo,
.page-poker__button--cta-register {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for text */
}

.page-poker__button--login:hover,
.page-poker__button--play-game:hover,
.page-poker__button--claim-promo:hover,
.page-poker__button--cta-register:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-poker__button--learn-more,
.page-poker__button--view-resources,
.page-poker__button--view-all-promo,
.page-poker__button--view-all-faq {
  background-color: #000000; /* Main color for background */
  color: #FFFFFF; /* Auxiliary color for text */
  border: 2px solid #FCBC45; /* Login button color for border */
}

.page-poker__button--learn-more:hover,
.page-poker__button--view-resources:hover,
.page-poker__button--view-all-promo:hover,
.page-poker__button--view-all-faq:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-poker__section-spacing {
  padding: 80px 0;
}

.page-poker__section--dark-background {
  background-color: #000000; /* Main color as background */
  color: #FFFFFF; /* Auxiliary color for text */
}

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

.page-poker__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from section, white on dark, dark on light */
}

.page-poker__section-subtitle {
  font-size: 1.3em;
  text-align: center;
  margin-bottom: 50px;
  color: inherit;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-poker__grid-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.page-poker__text-content p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-poker__image-wrapper {
  text-align: center;
}

.page-poker__image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

.page-poker__game-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #FFFFFF; /* Light text on dark card */
}

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

.page-poker__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum image size */
  min-height: 200px; /* Minimum image size */
}

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

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-poker__strategy-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-poker__strategy-item:hover {
  transform: translateY(-5px);
}

.page-poker__strategy-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #000000;
}

.page-poker__strategy-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

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

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

.page-poker__promo-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  color: #FFFFFF; /* Light text on dark card */
}

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

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

.page-poker__promo-description {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.page-poker__info-item {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__info-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #000000;
}

.page-poker__info-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-poker__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent white on dark background */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  color: #FFFFFF; /* Light text on dark card */
}

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

.page-poker__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #e0e0e0;
}

.page-poker__cta-section {
  background-color: #FCBC45; /* Login button color as background */
  color: #000000; /* Main color for text */
  text-align: center;
}

.page-poker__cta-content {
  padding: 60px 20px;
}

.page-poker__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #000000;
}

.page-poker__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

  .page-poker__grid-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-poker__image {
    margin-top: 30px;
  }

  .page-poker__games-grid,
  .page-poker__strategy-grid,
  .page-poker__promo-grid,
  .page-poker__responsible-gaming-section .page-poker__info-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
    padding-top: var(--header-offset, 120px);
  }

  .page-poker__hero-content {
    padding: 30px 15px;
  }

  .page-poker__main-title {
    font-size: 2.5em;
  }

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

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

  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-poker__section-spacing {
    padding: 60px 0;
  }

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

  .page-poker__section-subtitle {
    font-size: 1.1em;
    margin-bottom: 30px;
  }

  .page-poker__text-content p {
    font-size: 0.95em;
  }

  /* Ensure images in content area do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }

  .page-poker__game-title,
  .page-poker__promo-title,
  .page-poker__strategy-title,
  .page-poker__info-title,
  .page-poker__faq-question {
    font-size: 1.4em;
  }

  .page-poker__cta-title {
    font-size: 2.2em;
  }

  .page-poker__cta-description {
    font-size: 1em;
  }
}

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

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

  .page-poker__hero-actions {
    flex-direction: column;
  }

  .page-poker__button {
    width: 100%;
  }
}