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

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

.page-poker__section-title {
  font-size: 2.5rem;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 20px;
  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: #FCBC45; /* Login button color for emphasis */
  border-radius: 2px;
}

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

.page-poker__sub-title {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 20px;
}

.page-poker__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

.page-poker__list li {
  margin-bottom: 10px;
}

.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;
  white-space: nowrap;
}

.page-poker__button--primary {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
  border: 2px solid #000000;
}

.page-poker__button--primary:hover {
  background-color: #FCBC45; /* Login color for hover */
  border-color: #FCBC45;
  color: #000000;
}

.page-poker__button--secondary {
  background-color: transparent;
  color: #000000; /* Main color */
  border: 2px solid #000000;
}

.page-poker__button--secondary:hover {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
}

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

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

.page-poker__button--details {
  background-color: #000000; /* Main color */
  color: #FFFFFF;
  border: 2px solid #000000;
  font-size: 0.9rem;
  padding: 8px 18px;
}

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

.page-poker__button--learn-more {
  background-color: transparent;
  color: #000000;
  border: 2px solid #000000;
}

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

.page-poker__button--login {
  background-color: #FCBC45; /* Login color */
  color: #000000;
  border: 2px solid #FCBC45;
  margin-left: 15px;
}

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

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  color: #FFFFFF; /* Light text for hero content */
  text-align: center;
  padding: 60px 0;
}

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

.page-poker__hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 0;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-poker__hero-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

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

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

.page-poker__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

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

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

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

/* Game Types Section */
.page-poker__game-types-section {
  padding: 80px 0;
}

.page-poker__game-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-poker__game-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-poker__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-poker__game-card-content {
  padding: 25px;
}

.page-poker__game-card-title {
  font-size: 1.8rem;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__game-card-description {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
}

/* Tournaments & Cash Section */
.page-poker__tournaments-cash-section {
  background-color: #F8F8F8;
  padding: 80px 0;
}

.page-poker__grid-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.page-poker__grid-half:last-of-type {
  margin-bottom: 0;
}

.page-poker__grid-half--reversed {
  direction: rtl; /* Reverse order for content and image */
}

.page-poker__grid-half--reversed > * {
  direction: ltr; /* Reset direction for child elements */
}

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

.page-poker__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__text-content p {
  margin-bottom: 15px;
  color: #555555;
}

/* Strategy & Tips Section */
.page-poker__strategy-tips-section {
  padding: 80px 0;
}

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

.page-poker__strategy-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

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

.page-poker__strategy-description {
  font-size: 1rem;
  color: #666666;
}

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

.page-poker__cta-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #333333;
  font-weight: bold;
}

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

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

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

.page-poker__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-poker__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-poker__promo-title {
  font-size: 1.8rem;
  color: #000000;
  margin: 20px 0 10px;
  padding: 0 20px;
}

.page-poker__promo-description {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 25px;
  padding: 0 20px;
}

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
  padding: 80px 0;
  text-align: center;
}

.page-poker__responsible-gaming-content p {
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555555;
}

.page-poker__responsible-gaming-content a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__responsible-gaming-content a:hover {
  text-decoration: underline;
}

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

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

.page-poker__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.page-poker__faq-question {
  font-size: 1.3rem;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-poker__faq-answer {
  font-size: 1rem;
  color: #666666;
  padding: 0 25px 20px;
  margin: 0;
  display: none; /* Hidden by default */
}

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

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

/* Final CTA Section */
.page-poker__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #EFEFEF;
}

.page-poker__cta-final-section .page-poker__button {
  font-size: 1.2rem;
  padding: 15px 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3rem;
  }
  .page-poker__hero-description {
    font-size: 1.1rem;
  }
  .page-poker__section-title {
    font-size: 2rem;
  }
  .page-poker__section-intro {
    font-size: 1rem;
  }
  .page-poker__grid-half {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-poker__grid-half--reversed {
    direction: ltr; /* Reset to default for smaller screens */
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-poker__hero-section {
    min-height: 450px;
    padding: 40px 0;
  }
  .page-poker__hero-title {
    font-size: 2.2rem;
  }
  .page-poker__hero-description {
    font-size: 1rem;
  }
  .page-poker__hero-actions .page-poker__button {
    margin: 10px 0;
    width: 100%;
    max-width: 280px;
    font-size: 1rem;
  }
  .page-poker__button--login {
    margin-left: 0;
  }
  .page-poker__section-title {
    font-size: 1.8rem;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__strategy-grid,
  .page-poker__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__game-card-image,
  .page-poker__promo-image {
    height: 200px;
  }
  .page-poker__image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
  }
  .page-poker__why-choose-section,
  .page-poker__game-types-section,
  .page-poker__tournaments-cash-section,
  .page-poker__strategy-tips-section,
  .page-poker__promotions-section,
  .page-poker__responsible-gaming-section,
  .page-poker__faq-section,
  .page-poker__cta-final-section {
    padding: 60px 0;
  }

  /* Mobile content area image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8rem;
  }
  .page-poker__hero-description {
    font-size: 0.9rem;
  }
  .page-poker__section-title {
    font-size: 1.5rem;
  }
  .page-poker__hero-actions .page-poker__button {
    padding: 12px 20px;
  }
}