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

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

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

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

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  padding: 0; /* Remove padding here as content is inside container */
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Highlight with accent color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-buttons .page-poker__button {
  margin: 0 10px;
  font-size: 1.1em;
  padding: 15px 30px;
}

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

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

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

.page-poker__button--login:hover {
  background-color: #e0a53b;
  color: #333333;
}

.page-poker__button--download {
  background-color: transparent;
  border: 2px solid #FCBC45;
  color: #FCBC45;
}

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

/* Why Choose Section */
.page-poker__why-choose-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

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

.page-poker__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

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

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

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

.page-poker__game-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 50px;
}

.page-poker__game-card {
  display: flex;
  flex-direction: column;
  background-color: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__game-image {
  width: 100%;
  height: 400px; /* Ensure image is large */
  object-fit: cover;
}

.page-poker__game-content {
  padding: 30px;
}

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

.page-poker__game-description {
  color: #555555;
  margin-bottom: 25px;
}

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

.page-poker__button--play-game:hover {
  background-color: #e0a53b;
  color: #333333;
}

/* Get Started Section */
.page-poker__get-started-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-poker__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-poker__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-poker__step-description {
  color: #666666;
}

.page-poker__step-description a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__step-description a:hover {
  text-decoration: underline;
}

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

.page-poker__button--large {
  font-size: 1.2em;
  padding: 18px 40px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__button--large:hover {
  background-color: #333333;
  color: #FCBC45;
}

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

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

.page-poker__strategy-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-poker__strategy-description {
  color: #666666;
}

/* Promotions Section */
.page-poker__promotions-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-poker__promo-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

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

.page-poker__promo-description {
  color: #666666;
  margin-bottom: 25px;
}

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

.page-poker__promo-card .page-poker__button:hover {
  background-color: #e0a53b;
  color: #333333;
}

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

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

.page-poker__security-item {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-poker__security-description {
  color: #666666;
}

.page-poker__security-description a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__security-description a:hover {
  text-decoration: underline;
}

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

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

.page-poker__mobile-text {
  text-align: center;
  max-width: 600px;
}

.page-poker__mobile-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__mobile-description {
  color: #666666;
  margin-bottom: 25px;
}

.page-poker__mobile-image-wrapper {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-poker__mobile-image {
  width: 400px; /* Large image for mobile app display */
  height: 600px;
  object-fit: contain;
  display: block;
}

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

.page-poker__faq-list {
  margin-top: 50px;
}

.page-poker__faq-item {
  background-color: #f0f0f0;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-poker__faq-answer {
  color: #666666;
  display: block; /* For now, keep visible. JS can toggle */
}

.page-poker__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #000000; /* Dark background for strong CTA */
  color: #ffffff;
  text-align: center;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FCBC45;
}

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

.page-poker__cta-buttons .page-poker__button {
  margin: 0 15px;
  font-size: 1.2em;
  padding: 18px 40px;
}

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

.page-poker__button--cta-register:hover {
  background-color: #f0f0f0;
  color: #333333;
}

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

.page-poker__button--cta-download:hover {
  background-color: #e0a53b;
  color: #333333;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-poker__game-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-poker__game-card {
    flex-direction: row;
  }
  .page-poker__game-image {
    width: 40%;
    height: auto;
  }
  .page-poker__game-content {
    width: 60%;
  }
  .page-poker__game-card:nth-child(even) {
    flex-direction: row-reverse; /* Alternate image/text direction */
  }
  .page-poker__mobile-content {
    flex-direction: row;
    text-align: left;
    justify-content: center;
  }
  .page-poker__mobile-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-container {
    height: 500px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-buttons .page-poker__button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__feature-icon,
  .page-poker__feature-card img,
  .page-poker__game-image,
  .page-poker__mobile-image,
  .page-poker__mobile-image-wrapper img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__game-image {
    height: 250px;
  }
  .page-poker__mobile-image {
    width: 250px;
    height: auto;
  }
  .page-poker__button--large {
    width: 90%;
    font-size: 1.1em;
  }
  .page-poker__cta-buttons .page-poker__button {
    display: block;
    margin: 15px auto;
    width: 80%;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}