.page-poker {
  color: #ffffff; /* Light text for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 0;
  margin-bottom: 60px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
}

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

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

.page-poker__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Dark red text */
  padding: 15px 30px;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-poker__hero-button:hover {
  background-color: #8B0000; /* Dark red on hover */
  color: #FFD700; /* Gold text on hover */
  border-color: #FFD700;
}

/* General Section Styling */
.page-poker__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__bonus-card,
.page-poker__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

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

.page-poker__feature-image,
.page-poker__game-image,
.page-poker__bonus-image {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
}

.page-poker__card-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker__card-text {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-poker__card-button {
  display: inline-block;
  background-color: #8B0000; /* Dark red button */
  color: #FFD700; /* Gold text */
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 1px solid #8B0000;
}

.page-poker__card-button:hover {
  background-color: #FFD700; /* Gold on hover */
  color: #8B0000; /* Dark red text on hover */
  border-color: #FFD700;
}

/* Strategy Section */
.page-poker__strategy-section {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for contrast */
  padding: 80px 0;
  margin-top: 60px;
  margin-bottom: 60px;
}

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

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

.page-poker__strategy-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-poker__strategy-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

/* FAQ Section */
.page-poker__faq-section {
  margin-top: 60px;
  margin-bottom: 60px;
}

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

.page-poker__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 215, 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: #cccccc;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-poker__faq-answer.show {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

.page-poker__contact-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: rgba(139, 0, 0, 0.3); /* Dark red background */
  border-radius: 10px;
  border: 1px solid #8B0000;
}

.page-poker__contact-text {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-poker__contact-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 12px 25px;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #FFD700;
}

.page-poker__contact-button:hover {
  background-color: #8B0000;
  color: #FFD700;
  border-color: #FFD700;
}

/* Final CTA Section */
.page-poker__cta-section {
  background-color: #8B0000; /* Dark red background */
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

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

.page-poker__cta-section .page-poker__section-intro {
  color: #f0f0f0;
}

.page-poker__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 18px 40px;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 3px solid #FFD700;
  margin-top: 30px;
}

.page-poker__cta-button:hover {
  background-color: #f0f0f0;
  color: #8B0000;
  border-color: #f0f0f0;
}

/* 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 {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }

  .page-poker__hero-title {
    font-size: 2em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__section-intro {
    font-size: 0.95em;
  }

  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__bonus-grid,
  .page-poker__steps-grid,
  .page-poker__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Ensure all images within .page-poker are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto; /* Prevent horizontal scroll for images */
  }

  .page-poker__feature-image,
  .page-poker__game-image,
  .page-poker__bonus-image {
    max-width: 100%; /* Ensure images scale down */
    width: auto; /* Allow image to scale */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }

  .page-poker__card-title {
    font-size: 1.5em;
  }

  .page-poker__card-text {
    font-size: 0.9em;
  }

  .page-poker__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
  }

  .page-poker__faq-answer {
    font-size: 0.9em;
  }

  .page-poker__contact-text {
    font-size: 1em;
  }

  .page-poker__contact-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .page-poker__cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }

  .page-poker__hero-description {
    font-size: 0.9em;
  }

  .page-poker__hero-content {
    padding: 15px;
  }

  .page-poker__section-title {
    font-size: 1.6em;
  }

  .page-poker__container {
    padding: 15px;
  }
}