.page-poker {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px; /* Ensure hero section has a minimum height */
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

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

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

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

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

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

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

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

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

.page-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-poker__text-block {
  font-size: 1.1em;
  color: #333333;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__why-us-section, .page-poker__games-section, .page-poker__get-started-section, .page-poker__bonuses-section, .page-poker__responsible-gaming-section, .page-poker__mobile-app-section, .page-poker__security-section, .page-poker__faq-section, .page-poker__cta-final-section {
  padding: 60px 0;
}

.page-poker__why-us-section {
  background-color: #f8f8f8;
}

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

.page-poker__feature-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.page-poker__game-card {
  background-color: #000000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-15px);
}

.page-poker__game-card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.page-poker__game-card-content {
  padding: 30px;
  color: #FFFFFF;
}

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

.page-poker__game-card-description {
  font-size: 1em;
  color: #e0e0e0;
  margin-bottom: 25px;
}

.page-poker__button--play-now {
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  font-size: 1em;
}

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

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

.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 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-poker__step-card:hover {
  transform: translateY(-8px);
}

.page-poker__step-image {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-poker__button--step {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  font-size: 0.9em;
}

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

.page-poker__bonuses-section {
  background-color: #FFFFFF;
}

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

.page-poker__bonus-card {
  background: linear-gradient(135deg, #000000, #333333);
  color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.page-poker__bonus-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-poker__bonus-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

.page-poker__bonus-description {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-poker__button--view-promo, .page-poker__button--learn-more, .page-poker__button--download-app, .page-poker__button--register-play {
  background-color: #FCBC45;
  color: #000000;
  padding: 15px 35px;
  font-size: 1.1em;
  border-radius: 8px;
}

.page-poker__button--view-promo:hover, .page-poker__button--learn-more:hover, .page-poker__button--download-app:hover, .page-poker__button--register-play:hover {
  background-color: #e0a53b;
}

.page-poker__mobile-app-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__mobile-app-section .page-poker__section-title, .page-poker__mobile-app-section .page-poker__text-block {
  color: #FFFFFF;
}

.page-poker__mobile-app-section .page-poker__section-title::after {
  background-color: #FCBC45;
}

.page-poker__mobile-app-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.page-poker__security-section {
  background-color: #f8f8f8;
  text-align: center;
}

.page-poker__security-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
}

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

.page-poker__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  transition: box-shadow 0.3s ease;
}

.page-poker__faq-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  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: #FCBC45;
}

.page-poker__faq-question.active::after {
  content: '-';
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #eee;
  margin-top: 10px;
}

.page-poker__faq-answer.open {
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.2em;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__game-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 450px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 80%;
    max-width: 250px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__text-block {
    font-size: 0.95em;
  }
  .page-poker__features-grid, .page-poker__game-cards-grid, .page-poker__steps-grid, .page-poker__bonuses-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-card-image, .page-poker__step-image, .page-poker__bonus-image, .page-poker__mobile-app-image, .page-poker__security-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down properly */
  }
  .page-poker__mobile-app-image, .page-poker__security-image {
    width: 100%;
    max-width: 100%; /* Ensure content images don't overflow */
  }
  .page-poker__hero-image, .page-poker__game-card-image, .page-poker__step-image, .page-poker__bonus-image, .page-poker__mobile-app-image, .page-poker__security-image {
    max-width: 100%;
    height: auto;
  }
  /* Content area images must not result in display size less than 200px, this ensures max-width: 100% and height: auto */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .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__feature-title, .page-poker__game-card-title, .page-poker__step-title, .page-poker__bonus-title {
    font-size: 1.4em;
  }
  .page-poker__button--view-promo, .page-poker__button--learn-more, .page-poker__button--download-app, .page-poker__button--register-play {
    padding: 12px 25px;
    font-size: 1em;
  }
}