.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 128, 0.6); /* Semi-transparent dark blue background */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for title */
  line-height: 1.2;
}

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

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

.page-poker__hero-button:hover {
  background-color: #e6c200;
  color: #000050;
}

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

.page-poker__section-title {
  font-size: 2.8em;
  color: #000080; /* Dark blue title */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-poker__features-grid,
.page-poker__game-grid,
.page-poker__steps-grid,
.page-poker__tournament-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__step-card,
.page-poker__tournament-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__step-card:hover,
.page-poker__tournament-card:hover {
  transform: translateY(-10px);
}

.page-poker__card-title {
  font-size: 1.5em;
  color: #000080; /* Dark blue title */
  margin-bottom: 15px;
}

.page-poker__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  flex-grow: 1;
}

.page-poker__cta-button,
.page-poker__card-link,
.page-poker__card-button,
.page-poker__download-button,
.page-poker__play-browser-button,
.page-poker__read-more-button,
.page-poker__responsible-link {
  display: inline-block;
  background-color: #DC143C; /* Dark red accent button */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-poker__cta-button:hover,
.page-poker__card-link:hover,
.page-poker__card-button:hover,
.page-poker__download-button:hover,
.page-poker__play-browser-button:hover,
.page-poker__read-more-button:hover,
.page-poker__responsible-link:hover {
  background-color: #b3002d;
}

.page-poker__cta-button--large {
  font-size: 1.4em;
  padding: 18px 40px;
}

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

.page-poker__strategy-guide .page-poker__content-wrapper,
.page-poker__mobile-experience .page-poker__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-poker__strategy-image,
.page-poker__mobile-image {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__strategy-text,
.page-poker__mobile-text {
  width: 50%;
}

.page-poker__strategy-text h3,
.page-poker__mobile-text h3 {
  font-size: 1.8em;
  color: #000080; /* Dark blue sub-title */
  margin-bottom: 15px;
}

.page-poker__strategy-text p,
.page-poker__mobile-text p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444444;
}

.page-poker__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-poker__responsible-gaming ul {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: center;
}

.page-poker__responsible-gaming li {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700; /* Gold accent */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background-color: #fefefe;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #000080; /* Dark blue question */
  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: #555555;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

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

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

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

  .page-poker__strategy-guide .page-poker__content-wrapper,
  .page-poker__mobile-experience .page-poker__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-poker__strategy-image,
  .page-poker__mobile-image,
  .page-poker__strategy-text,
  .page-poker__mobile-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 40px 15px;
  }

  .page-poker__hero-title {
    font-size: 2.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-grid,
  .page-poker__steps-grid,
  .page-poker__tournament-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__game-image,
  .page-poker__tournament-image {
    height: 200px;
  }

  /* Mobile content image constraint */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }

  .page-poker__strategy-text h3,
  .page-poker__mobile-text h3 {
    font-size: 1.5em;
  }

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

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

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

  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__step-card,
  .page-poker__tournament-card {
    padding: 20px;
  }

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

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