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

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

.page-poker__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-poker__container--flex-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
}

.page-poker__section-spacing {
  padding: 80px 0;
}

.page-poker__section-spacing--dark {
  background-color: #0A2463;
  color: #ffffff;
}

.page-poker__section-spacing--dark .page-poker__section-title, 
.page-poker__section-spacing--dark .page-poker__section-description, 
.page-poker__section-spacing--dark .page-poker__bonus-list, 
.page-poker__section-spacing--dark .page-poker__bonus-item, 
.page-poker__section-spacing--dark .page-poker__cta-title, 
.page-poker__section-spacing--dark .page-poker__cta-description {
  color: #ffffff;
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* Hero Section */
.page-poker__hero-section {
  background-color: #f0f0f0;
  padding: 60px 0 0 0; /* Padding from top is handled by main container */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-poker__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #0A2463;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-poker__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

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

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

.page-poker__button--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

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

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

.page-poker__button--secondary:hover {
  background-color: #0A2463;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-poker__button--gold {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-poker__button--gold:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-poker__button--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-poker__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

/* About Section */
.page-poker__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  border-top: 5px solid #FFD700;
}

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

.page-poker__feature-text {
  font-size: 1em;
  color: #555555;
}

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

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

.page-poker__game-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-poker__game-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Live Section */
.page-poker__live-content, .page-poker__mobile-content {
  flex: 1;
}

.page-poker__live-image-wrapper, .page-poker__mobile-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-poker__live-image, .page-poker__mobile-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Tournaments Section */
.page-poker__tournament-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-poker__highlight-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 4px solid #0A2463;
}

.page-poker__highlight-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-poker__highlight-text {
  font-size: 1em;
  color: #555555;
}

/* Bonuses Section */
.page-poker__bonuses-content {
  flex: 1;
}

.page-poker__bonuses-image-wrapper {
  flex: 1;
  text-align: center;
}

.page-poker__bonuses-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

.page-poker__bonuses-section .page-poker__section-title {
  color: #ffffff;
}

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

.page-poker__bonus-item {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  color: #ffffff;
}

.page-poker__bonus-item::before {
  content: '★'; /* Gold star icon */
  color: #FFD700;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

/* Start Section */
.page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-poker__step-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #FFD700;
}

.page-poker__step-icon {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-poker__step-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-poker__step-text {
  font-size: 1em;
  color: #555555;
}

/* FAQ Section */
.page-poker__faq-accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__faq-question {
  font-size: 1.2em;
  color: #0A2463;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-poker__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

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

/* CTA Section */
.page-poker__cta-content {
  text-align: center;
  padding: 60px 20px;
  border-radius: 10px;
}

.page-poker__cta-title {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-poker__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__container--flex, .page-poker__container--flex-reverse {
    flex-direction: column;
    gap: 30px;
  }
  .page-poker__live-content, .page-poker__mobile-content, .page-poker__bonuses-content {
    text-align: center;
  }
  .page-poker__live-image-wrapper, .page-poker__mobile-image-wrapper, .page-poker__bonuses-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header offset */
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-description {
    font-size: 0.95em;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-poker__section-spacing {
    padding: 50px 0;
  }
  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__tournament-highlights, .page-poker__steps-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-poker__hero-image, .page-poker__live-image, .page-poker__mobile-image, .page-poker__bonuses-image, .page-poker__game-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images scale down properly */
  }
  /* Ensure all content area images are responsive and not smaller than 200px (min-width is implied by max-width:100% and larger HTML width/height) */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-poker__button {
    width: 100%;
  }
}