.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: #f8f8f8; /* Light background for contrast with dark text */
  color: #333333; /* Dark text for readability */
  font-family: 'Arial', sans-serif;
}

.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;
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  z-index: 10;
  max-width: 800px;
  margin-bottom: 40px;
}

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

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

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.page-poker__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Subtle background effect */
  display: block;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-poker__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E0B14B;
  border-radius: 2px;
}

.page-poker__section-text {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__cta-button,
.page-poker__secondary-button,
.page-poker__game-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
  text-align: center;
}

.page-poker__cta-button {
  background-color: #E0B14B; /* Accent color for primary CTA */
  color: #0A2463;
  border: 2px solid #E0B14B;
}

.page-poker__cta-button:hover {
  background-color: #cc9c3c;
  transform: translateY(-3px);
}

.page-poker__secondary-button {
  background-color: transparent;
  color: #0A2463;
  border: 2px solid #0A2463;
}

.page-poker__secondary-button:hover {
  background-color: #0A2463;
  color: #ffffff;
  transform: translateY(-3px);
}

.page-poker__about-section,
.page-poker__game-types-section,
.page-poker__tournaments-section,
.page-poker__features-section,
.page-poker__mobile-section,
.page-poker__register-section,
.page-poker__faq-section,
.page-poker__responsible-gaming-section {
  padding: 60px 0;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__game-image {
  width: 100%;
  height: 200px; /* Minimum height for content images */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-poker__game-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-poker__game-button {
  background-color: #0A2463;
  color: #ffffff;
  border: 2px solid #0A2463;
}

.page-poker__game-button:hover {
  background-color: #E0B14B;
  color: #0A2463;
  border-color: #E0B14B;
}

.page-poker__tournaments-section {
  background-color: #0A2463;
  color: #ffffff;
}

.page-poker__tournaments-section .page-poker__section-title,
.page-poker__tournaments-section .page-poker__section-text {
  color: #ffffff;
}

.page-poker__tournaments-section .page-poker__section-title::after {
  background-color: #E0B14B;
}

.page-poker__tournament-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-poker__tournament-text {
  flex: 1;
  text-align: left;
}

.page-poker__tournament-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__tournament-image img {
  width: 100%;
  height: auto;
  max-width: 600px; /* Constrain image size */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.page-poker__feature-list li {
  font-size: 1.1em;
  line-height: 2;
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.page-poker__feature-list li::before {
  content: '✔';
  color: #E0B14B;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

.page-poker__features-section {
  background-color: #ffffff;
}

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

.page-poker__feature-item {
  background-color: #f0f0f0;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__feature-heading {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  line-height: 1.7;
}

.page-poker__mobile-section {
  background-color: #f0f0f0;
}

.page-poker__mobile-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.page-poker__mobile-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__mobile-image img {
  width: 100%;
  height: auto;
  max-width: 400px; /* Constrain image size */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
}

.page-poker__mobile-text {
  flex: 1;
  text-align: left;
}

.page-poker__mobile-heading {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 20px;
}

.page-poker__mobile-description {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-poker__register-section {
  background-color: #0A2463;
  color: #ffffff;
  text-align: center;
}

.page-poker__register-section .page-poker__section-title,
.page-poker__register-section .page-poker__section-text {
  color: #ffffff;
}

.page-poker__register-section .page-poker__section-title::after {
  background-color: #E0B14B;
}

.page-poker__register-buttons {
  margin-top: 40px;
}

.page-poker__register-buttons .page-poker__secondary-button {
  color: #ffffff;
  border-color: #ffffff;
}

.page-poker__register-buttons .page-poker__secondary-button:hover {
  background-color: #ffffff;
  color: #0A2463;
}

.page-poker__faq-section {
  background-color: #ffffff;
}

.page-poker__faq-list {
  margin-top: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  text-align: left;
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-poker__faq-answer {
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-poker__responsible-gaming-section {
  background-color: #f0f0f0;
  text-align: center;
}

@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-poker__tournament-content,
  .page-poker__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__tournament-text,
  .page-poker__mobile-text {
    text-align: center;
  }
  .page-poker__feature-list {
    text-align: center;
  }
  .page-poker__feature-list li {
    padding-left: 0;
  }
  .page-poker__feature-list li::before {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__cta-button,
  .page-poker__secondary-button,
  .page-poker__game-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }
  .page-poker__game-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-image,
  .page-poker__tournament-image img,
  .page-poker__mobile-image img {
    max-width: 100%;
    height: auto;
  }
  /* Mobile content area image constraints */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__tournament-image,
  .page-poker__mobile-image {
    width: 100%;
  }
  .page-poker__mobile-heading {
    font-size: 1.6em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.6em;
  }
  .page-poker__cta-button,
  .page-poker__secondary-button,
  .page-poker__game-button {
    padding: 10px 20px;
    font-size: 0.9em;
    margin: 5px;
  }
  .page-poker__game-image {
    height: 180px;
  }
  .page-poker__hero-content {
    margin-bottom: 20px;
  }
}