.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8; /* Light background for default body */
  color: #333333; /* Dark text for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1E90FF, #0056b3); /* Auxiliary blue gradient */
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

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

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-poker__button--primary {
  background-color: #FFD700; /* Main golden color */
  color: #1E90FF; /* Auxiliary blue for text */
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-3px);
}

.page-poker__heading {
  font-size: 2.5em;
  color: #1E90FF; /* Auxiliary blue */
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
  position: relative;
}

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

.page-poker__sub-heading {
  font-size: 1.8em;
  color: #1E90FF;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-poker__text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-poker__about-section,
.page-poker__games-section,
.page-poker__strategy-section,
.page-poker__promotions-section,
.page-poker__download-section,
.page-poker__testimonials-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 60px 0;
}

.page-poker__feature-grid,
.page-poker__game-grid,
.page-poker__testimonial-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__promo-card,
.page-poker__testimonial-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #FFD700;
}

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

.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__promo-image {
  width: 100%; /* Ensure images take full width */
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  max-width: 100%;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__promo-title {
  font-size: 1.5em;
  color: #1E90FF;
  margin-bottom: 15px;
}

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

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

.page-poker__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 700px;
  margin: 30px auto;
}

.page-poker__list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
  color: #444444;
}

.page-poker__list-highlight {
  color: #1E90FF;
}

.page-poker__link {
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

.page-poker__promo-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-poker__promo-card {
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
}

.page-poker__call-to-action {
  text-align: center;
  margin-top: 50px;
}

.page-poker__app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-poker__app-image-wrapper {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.page-poker__app-image {
  max-width: 400px;
  height: auto;
  display: block;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__app-download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-poker__button--app-store,
.page-poker__button--google-play {
  background-color: #1E90FF;
  color: #ffffff;
  border: 2px solid #1E90FF;
}

.page-poker__button--app-store:hover,
.page-poker__button--google-play:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

.page-poker__testimonial-quote {
  font-style: italic;
  font-size: 1.1em;
  color: #444444;
  margin-bottom: 15px;
}

.page-poker__testimonial-author {
  font-weight: bold;
  color: #1E90FF;
}

.page-poker__faq-accordion {
  max-width: 900px;
  margin: 40px auto;
}

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

.page-poker__accordion-header {
  width: 100%;
  padding: 20px;
  background-color: #FFD700; /* Main golden color */
  color: #1E90FF; /* Auxiliary blue for text */
  border: none;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-poker__accordion-header:hover {
  background-color: #e6c200;
}

.page-poker__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-poker__accordion-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: #fefefe;
  color: #555555;
}

.page-poker__accordion-content p {
  padding: 20px 0;
  margin: 0;
  border-top: 1px solid #eee;
}

.page-poker__cta-section {
  background-color: #1E90FF; /* Auxiliary blue */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

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

.page-poker__cta-section .page-poker__heading::after {
  background-color: #FFD700;
}

.page-poker__cta-section .page-poker__text {
  color: #e0e0e0;
  margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__heading {
    font-size: 2em;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__promo-card {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 60px 20px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-poker__heading {
    font-size: 1.8em;
  }
  .page-poker__text {
    font-size: 1em;
  }
  .page-poker__feature-grid,
  .page-poker__game-grid,
  .page-poker__testimonial-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-poker__app-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__app-download-buttons {
    flex-direction: column;
  }
  .page-poker__accordion-header {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-poker__accordion-content p {
    padding: 15px 0;
  }
  /* Ensure content images do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__heading {
    font-size: 1.5em;
  }
  .page-poker__button {
    font-size: 1em;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__promo-title {
    font-size: 1.3em;
  }
  .page-poker__testimonial-quote {
    font-size: 1em;
  }
  .page-poker__accordion-header {
    font-size: 1em;
  }
}