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

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

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

.page-poker__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
  text-align: center;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 0;
  margin-bottom: 50px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.6);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height for hero section */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

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

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

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

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

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
}

.page-poker__button--register:hover {
  background-color: #f0f0f0;
}

.page-poker__button--login {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--login:hover {
  background-color: #e0a53b;
}

/* About Section */
.page-poker__about-section {
  padding: 50px 0;
}

/* Games Section */
.page-poker__games-section {
  padding: 50px 0;
  background-color: #f8f8f8;
}

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

.page-poker__game-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

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

.page-poker__game-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px;
}

.page-poker__cta-row {
  text-align: center;
  margin-top: 50px;
}

.page-poker__button--play-all {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__button--play-all:hover {
  background-color: #e0a53b;
}

/* Tournaments & Security Sections */
.page-poker__tournaments-section,
.page-poker__security-section {
  padding: 60px 0;
}

.page-poker__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-poker__flex-content--reverse {
  flex-direction: row-reverse;
}

.page-poker__text-column,
.page-poker__image-column {
  flex: 1;
  min-width: 300px;
}

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

.page-poker__button--view-promos,
.page-poker__button--learn-safety {
  background-color: #000000;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-poker__button--view-promos:hover,
.page-poker__button--learn-safety:hover {
  background-color: #333333;
}

/* Get Started Section */
.page-poker__get-started-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.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;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  position: relative;
}

.page-poker__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-poker__step-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
}

.page-poker__button--step-register {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #000000;
}

.page-poker__button--step-register:hover {
  background-color: #f0f0f0;
}

.page-poker__button--step-deposit,
.page-poker__button--step-play {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__button--step-deposit:hover,
.page-poker__button--step-play:hover {
  background-color: #333333;
}

/* Mobile Section */
.page-poker__mobile-section {
  padding: 60px 0;
}

.page-poker__button--download-app {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
}

.page-poker__button--download-app:hover {
  background-color: #e0a53b;
}

/* FAQ Section */
.page-poker__faq-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-poker__faq-list {
  margin-top: 40px;
}

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

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.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-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

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

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

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

/* Final CTA Section */
.page-poker__cta-bottom-section {
  padding: 80px 0;
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__cta-bottom-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__cta-bottom-section .page-poker__text-content {
  color: #FFFFFF;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-poker__button--final-cta {
  background-color: #FCBC45;
  color: #000000;
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-poker__button--final-cta:hover {
  background-color: #e0a53b;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.2em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__flex-content {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__flex-content--reverse {
    flex-direction: column;
  }
  .page-poker__text-column, .page-poker__image-column {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-container {
    height: 500px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__game-grid, .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__content-image, .page-poker__game-image, .page-poker__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
  .page-poker__faq-question::after {
    font-size: 1.2em;
  }
  /* Ensure all images within .page-poker are responsive and not smaller than 200px */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-container {
    height: 400px;
  }
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
  }
  .page-poker__step-title {
    font-size: 1.5em;
  }
}