.page-poker {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa; /* Light background for the page content */
}

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

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

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-poker__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffc107; /* Accent color for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-poker__cta-button--primary {
  background-color: #ffc107; /* Accent color */
  color: #007bff; /* Primary color */
  border: 2px solid #ffc107;
}

.page-poker__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-poker__cta-button--secondary {
  background-color: transparent;
  color: #ffc107; /* Accent color */
  border: 2px solid #ffc107;
}

.page-poker__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #007bff; /* Primary color */
  transform: translateY(-2px);
}

.page-poker__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-poker__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Accent color */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-poker__sub-title {
  font-size: 1.8em;
  color: #007bff; /* Primary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-poker__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-poker__text-block a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__text-block a:hover {
  text-decoration: underline;
}

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

.page-poker__game-card,
.page-poker__step-card,
.page-poker__promo-card,
.page-poker__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__card-title,
.page-poker__step-title,
.page-poker__promo-title,
.page-poker__feature-title {
  font-size: 1.5em;
  color: #007bff; /* Primary color */
  margin-bottom: 10px;
}

.page-poker__card-description,
.page-poker__step-description,
.page-poker__promo-description,
.page-poker__feature-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-poker__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff; /* Primary color */
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__card-button:hover {
  background-color: #0056b3;
}

.page-poker__bullet-list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
  color: #333333;
}

.page-poker__bullet-list li {
  margin-bottom: 8px;
  font-size: 1.1em;
}

.page-poker__bullet-list strong {
  color: #007bff;
}

.page-poker__text-link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__text-link:hover {
  text-decoration: underline;
}

.page-poker__cta-button--small {
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-poker__strategy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-poker__strategy-image-container {
  text-align: center;
}

.page-poker__strategy-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__tournament-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-poker__tournament-image-container {
  text-align: center;
  margin-bottom: 40px;
}

.page-poker__tournament-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
  background-color: #e9ecef;
  padding: 40px;
  border-radius: 15px;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.05);
}

.page-poker__app-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__app-description {
  text-align: center;
}

.page-poker__security-features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-poker__security-features-list li {
  background-color: #f1f1f1;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid #007bff; /* Primary color accent */
  font-size: 1.05em;
  color: #333333;
}

.page-poker__security-features-list li strong {
  color: #007bff;
}

.page-poker__community-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__community-list li {
  background-color: #f1f1f1;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border-left: 5px solid #ffc107; /* Accent color accent */
  font-size: 1.05em;
  color: #333333;
}

.page-poker__community-list li strong {
  color: #ffc107;
}

.page-poker__details-list {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-poker__details-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-poker__details-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-poker__details-title a {
  color: #007bff;
  text-decoration: none;
}

.page-poker__details-title a:hover {
  text-decoration: underline;
}

.page-poker__details-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ffc107;
  color: #007bff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__details-button:hover {
  background-color: #e0a800;
}

.page-poker__faq-container {
  margin-top: 30px;
}

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

.page-poker__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

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

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

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

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

.page-poker__faq-answer p {
  margin-bottom: 10px;
}

.page-poker__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-poker__cta-final-section {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  margin-top: 60px;
}

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

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

.page-poker__cta-final-section .page-poker__text-block {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-poker__cta-final-section .page-poker__text-block a {
  color: #ffc107;
}

.page-poker__cta-final-section .page-poker__cta-button--primary {
  background-color: #ffc107;
  color: #007bff;
  border-color: #ffc107;
}

.page-poker__cta-final-section .page-poker__cta-button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

/* Responsive Design */
@media (min-width: 768px) {
  .page-poker__hero-section {
    flex-direction: row;
    text-align: left;
  }

  .page-poker__hero-content {
    padding: 60px;
    text-align: left;
    max-width: 70%;
  }

  .page-poker__main-title {
    font-size: 4.5em;
  }

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

  .page-poker__cta-group {
    justify-content: flex-start;
  }

  .page-poker__game-cards-grid,
  .page-poker__steps-grid,
  .page-poker__promo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-poker__strategy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-poker__app-showcase {
    flex-direction: row;
    text-align: left;
  }

  .page-poker__app-description {
    text-align: left;
  }

  .page-poker__tournament-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
  }

  .page-poker__main-title {
    font-size: 2.5em;
  }

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

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

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

  .page-poker__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}
}