.page-poker {
  color: #333333;
}

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  min-height: 600px;
  background-color: #000000;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-poker__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
}

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

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

.page-poker__button--secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FCBC45;
}

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

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-poker__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  border-radius: 2px;
}

.page-poker__text-content {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.page-poker__game-grid, .page-poker__strategy-grid, .page-poker__promo-grid, .page-poker__security-features {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

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

.page-poker__game-card, .page-poker__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-poker__game-card-title, .page-poker__promo-card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-poker__game-card-description, .page-poker__promo-card-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px 20px;
  color: #555555;
}

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

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

.page-poker__strategy-item {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

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

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

.page-poker__security-features {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  text-align: center;
}

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

.page-poker__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
  display: inline-block;
}

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

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

.page-poker__mobile-section {
  background-color: #000000;
  color: #FFFFFF;
}

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

.page-poker__mobile-section .page-poker__text-content {
  color: #f0f0f0;
}

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

.page-poker__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  width: 600px; /* HTML width attribute */
  height: 450px; /* HTML height attribute */
}

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

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

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  color: #FCBC45;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding-top: 0;
}

.page-poker__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-poker__cta-section {
  background-color: #FCBC45;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
}

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

.page-poker__cta-section .page-poker__section-title::after {
  background-color: #000000;
}

.page-poker__cta-section .page-poker__text-content {
  color: #333333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-poker__cta-actions .page-poker__button--primary {
  background-color: #000000;
  color: #FCBC45;
}

.page-poker__cta-actions .page-poker__button--primary:hover {
  background-color: #333333;
}

.page-poker__cta-actions .page-poker__button--secondary {
  background-color: transparent;
  color: #000000;
  border-color: #000000;
}

.page-poker__cta-actions .page-poker__button--secondary:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__content-wrapper {
    padding: 40px 15px;
  }
  .page-poker__game-grid, .page-poker__strategy-grid, .page-poker__promo-grid, .page-poker__security-features {
    grid-template-columns: 1fr;
  }

  /* Ensure all content images are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }

  .page-poker__feature-icon {
    width: 100px; /* Keep icons at a reasonable size */
    height: 100px;
    min-width: 100px;
    min-height: 100px;
  }

  .page-poker__mobile-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__game-card-title, .page-poker__promo-card-title {
    font-size: 1.5em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
}