.page-poker {
  color: #ffffff; /* Light text on dark body background */
  padding-top: var(--header-offset, 120px);
}

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A1A1A;
  padding-bottom: 60px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.7); /* Darken image to ensure text readability */
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 10;
}

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

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

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

.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, transform 0.3s ease;
  cursor: pointer;
}

.page-poker__button--primary {
  background-color: #FFD700;
  color: #1A1A1A;
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-poker__button--center {
  display: block;
  margin: 40px auto 0;
  width: fit-content;
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-poker__section-description {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.page-poker__about-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__strategy-section,
.page-poker__bonuses-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #1A1A1A;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__bonus-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__bonus-card:hover,
.page-poker__article-card:hover,
.page-poker__highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.page-poker__feature-icon {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px #FFD700);
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__bonus-title,
.page-poker__article-title,
.page-poker__highlight-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-poker__feature-text,
.page-poker__game-text,
.page-poker__bonus-text,
.page-poker__article-text {
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-poker__game-image,
.page-poker__bonus-image,
.page-poker__article-image,
.page-poker__highlight-image,
.page-poker__cta-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-poker__article-link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-poker__article-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

.page-poker__highlight-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__article-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

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

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

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #b0b0b0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-poker__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
}

.page-poker__cta-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1A1A, #333333);
}

.page-poker__cta-image {
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-poker__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title,
  .page-poker__cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
    position: relative;
    height: auto;
  }
  .page-poker__hero-image {
    position: static;
    transform: none;
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-content {
    position: static;
    transform: none;
    padding: 20px 0;
    background-color: rgba(26, 26, 26, 0.8);
    margin-top: -20px;
    border-radius: 0 0 12px 12px;
  }
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__section-title,
  .page-poker__cta-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-poker__section-description,
  .page-poker__cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__bonus-cards-grid,
  .page-poker__tournament-highlights,
  .page-poker__strategy-articles {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__bonus-card,
  .page-poker__highlight-card,
  .page-poker__article-card {
    padding: 25px;
  }
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__bonus-image,
  .page-poker__article-image,
  .page-poker__highlight-image,
  .page-poker__cta-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive */
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__bonus-title,
  .page-poker__article-title,
  .page-poker__highlight-title {
    font-size: 1.5em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__cta-actions {
    flex-direction: column;
    gap: 15px;
  }
}