.page-poker {
  color: #333333; /* Dark text for light body background */
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
}

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

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.page-poker__button--primary {
  background-color: #FCBC45; /* Login color for primary actions */
  color: #000000; /* Dark text for primary button */
}

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

.page-poker__button--secondary {
  background-color: #000000; /* Main color for secondary actions */
  color: #FFFFFF; /* White text for secondary button */
  border: 2px solid #FCBC45;
}

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

.page-poker__button--small {
  padding: 8px 18px;
  font-size: 14px;
}

.page-poker__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
}

.page-poker__section-intro {
  font-size: 18px;
  color: #333333;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-poker__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 100px 20px;
}

.page-poker__hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
}

.page-poker__hero-title {
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 22px;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.5;
  color: #f0f0f0;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.page-poker__hero-buttons .page-poker__button {
  margin: 0 15px;
  min-width: 200px;
}

/* About Section */
.page-poker__about-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.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;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-poker__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}

/* How to Start Section */
.page-poker__how-to-start-section {
  padding: 80px 0;
}

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

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

.page-poker__step-title {
  font-size: 26px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

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

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

.page-poker__game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-poker__game-title {
  font-size: 28px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__game-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  text-align: left;
}

/* Promotions Section */
.page-poker__promo-section {
  padding: 80px 0;
}

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

.page-poker__promo-card {
  background-color: #FFFFFF;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__promo-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__promo-description {
  font-size: 16px;
  color: #555555;
  line-height: 1.6;
}

.page-poker__promo-cta {
  text-align: center;
  margin-top: 60px;
}

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

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

.page-poker__mobile-text-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-poker__mobile-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__mobile-features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-poker__mobile-features-list li {
  font-size: 17px;
  color: #333333;
  margin-bottom: 12px;
  position: relative;
  padding-left: 30px;
}

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

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

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

.page-poker__faq-accordion {
  margin-top: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
}

.page-poker__faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.page-poker__faq-item:last-child {
  border-bottom: none;
}

.page-poker__faq-question {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  padding: 20px 30px;
  cursor: pointer;
  background-color: #FFFFFF;
  margin: 0;
  position: relative;
}

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

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

.page-poker__faq-answer {
  font-size: 16px;
  color: #555555;
  padding: 0 30px 20px;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-poker__faq-item.active .page-poker__faq-answer {
  max-height: 300px; /* Adjust as needed */
  padding: 0 30px 30px;
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 48px;
  }
  .page-poker__hero-description {
    font-size: 20px;
  }
  .page-poker__section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 38px;
  }
  .page-poker__hero-description {
    font-size: 18px;
  }
  .page-poker__hero-buttons .page-poker__button {
    margin: 10px 5px;
    min-width: unset;
    width: 100%;
  }
  .page-poker__section-title {
    font-size: 28px;
  }
  .page-poker__section-intro {
    font-size: 16px;
  }
  .page-poker__feature-image, .page-poker__game-image, .page-poker__mobile-image {
    max-width: 100%;
    height: auto;
  }
  /* Enforce minimum size for content images if selected by any selector */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-poker__mobile-content-wrapper {
    flex-direction: column;
  }
  .page-poker__faq-question {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 30px;
  }
  .page-poker__hero-description {
    font-size: 16px;
  }
  .page-poker__section-title {
    font-size: 24px;
  }
  .page-poker__button {
    padding: 10px 20px;
    font-size: 14px;
  }
  .page-poker__faq-question {
    font-size: 18px;
    padding: 15px 20px;
  }
  .page-poker__faq-question::after {
    right: 20px;
  }
  .page-poker__faq-answer {
    padding: 0 20px 15px;
  }
  .page-poker__feature-image, .page-poker__game-image, .page-poker__mobile-image {
    min-width: 200px;
    min-height: 200px;
  }
}