/* style/poker.css */
.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  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: 0 20px;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  margin-top: 40px;
  font-weight: bold;
}

.page-poker__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__hero-section {
  background-color: #FFFFFF;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-poker__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  color: #333333;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-poker__hero-buttons {
  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, color 0.3s ease;
  white-space: nowrap;
}

.page-poker__button--primary {
  background-color: #FCBC45; /* Login color for primary action */
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-poker__button--secondary {
  background-color: #FFFFFF; /* Register color for secondary action */
  color: #000000;
  border: 2px solid #000000;
}

.page-poker__button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #333333;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

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

.page-poker__hero-image {
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
}

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

.page-poker__game-types-section,
.page-poker__why-choose-section,
.page-poker__getting-started-section,
.page-poker__strategy-guide-section,
.page-poker__testimonials-section,
.page-poker__cta-banner {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

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

.page-poker__game-card,
.page-poker__feature-card,
.page-poker__step-card,
.page-poker__testimonial-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__game-card img,
.page-poker__feature-card img,
.page-poker__testimonial-card img {
  width: 100%;
  max-width: 400px; /* Ensure images are not too wide in cards */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover; /* Ensure image covers the area without distortion */
}

.page-poker__testimonial-card img {
  border-radius: 50%;
  
  
  object-fit: cover;
  border: 4px solid #FCBC45;
}

.page-poker__card-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-poker__strategy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0;
}

.page-poker__strategy-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-poker__strategy-text {
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 20px;
}

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

.page-poker__testimonial-text {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-poker__testimonial-author {
  font-weight: bold;
  color: #000000;
}

.page-poker__cta-banner {
  background-color: #000000; /* Primary color for banner background */
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

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

.page-poker__banner-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    flex-direction: column;
    padding: 60px 15px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__game-grid,
  .page-poker__feature-grid,
  .page-poker__steps-grid,
  .page-poker__testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-poker__game-card img,
  .page-poker__feature-card img,
  .page-poker__testimonial-card img {
    max-width: 100%; /* Ensure images are not too wide */
    height: auto; /* Maintain aspect ratio */
  }
  .page-poker__card-title {
    font-size: 1.3em;
  }
  .page-poker__card-text {
    font-size: 0.95em;
  }
  .page-poker__banner-title {
    font-size: 2em;
  }
  .page-poker__banner-description {
    font-size: 1em;
  }
  /* Mobile content area image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__banner-title {
    font-size: 1.8em;
  }
  .page-poker__button--primary,
  .page-poker__button--secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__hero-section,
  .page-poker__game-types-section,
  .page-poker__why-choose-section,
  .page-poker__getting-started-section,
  .page-poker__strategy-guide-section,
  .page-poker__testimonials-section,
  .page-poker__cta-banner {
    padding-left: 10px;
    padding-right: 10px;
  }
}