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

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

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

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

.page-poker__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  min-width: 150px;
  text-align: center;
}

/* Hero Section */
.page-poker__hero-section {
  background-color: #000000;
  padding: 80px 0;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-poker__hero-content {
  text-align: center;
  max-width: 800px;
}

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

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

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

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

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

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

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

.page-poker__hero-image {
  width: 100%;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

/* Why Play Section */
.page-poker__why-play-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-poker__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

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

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

.page-poker__feature-text {
  color: #555555;
}

/* Game Variety Section */
.page-poker__game-variety-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-poker__game-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-poker__game-card-description {
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-poker__button--play-now {
  background-color: #000000;
  color: #FCBC45;
  border: 1px solid #000000;
}

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

/* Bonuses Section */
.page-poker__bonuses-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__bonuses-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-poker__bonuses-content {
  flex: 1;
}

.page-poker__bonuses-content .page-poker__section-title {
  color: #FCBC45;
  text-align: left;
}

.page-poker__bonuses-content .page-poker__section-title::after {
  left: 0;
  transform: translateX(0);
  background-color: #FFFFFF;
}

.page-poker__bonuses-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-poker__bonus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__bonus-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #FCBC45;
}

.page-poker__bonus-list li strong {
  color: #FFFFFF;
}

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

.page-poker__button--claim-bonus:hover {
  background-color: #e0a53a;
}

.page-poker__bonuses-image {
  flex: 1;
  min-width: 400px;
}

.page-poker__bonuses-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

/* Security Section */
.page-poker__security-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.page-poker__security-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-direction: row-reverse;
}

.page-poker__security-content {
  flex: 1;
}

.page-poker__security-content .page-poker__section-title {
  text-align: left;
}

.page-poker__security-content .page-poker__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-poker__security-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-poker__security-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__security-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #333333;
}

.page-poker__security-image {
  flex: 1;
  min-width: 400px;
}

.page-poker__security-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

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

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

/* Mobile Section */
.page-poker__mobile-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__mobile-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.page-poker__mobile-content {
  flex: 1;
}

.page-poker__mobile-content .page-poker__section-title {
  text-align: left;
}

.page-poker__mobile-content .page-poker__section-title::after {
  left: 0;
  transform: translateX(0);
}

.page-poker__mobile-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-poker__mobile-image {
  flex: 1;
  min-width: 400px;
}

.page-poker__mobile-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

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

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

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

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

.page-poker__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__faq-answer {
  color: #555555;
  line-height: 1.7;
}

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

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

/* Responsible Gaming Section */
.page-poker__responsible-gaming-section {
  padding: 80px 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__responsible-gaming-section .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__responsible-gaming-section .page-poker__section-title::after {
  background-color: #FFFFFF;
}

.page-poker__responsible-gaming-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #f0f0f0;
}

.page-poker__responsible-gaming-section .page-poker__button--learn-more {
  background-color: #FCBC45;
  color: #000000;
}

.page-poker__responsible-gaming-section .page-poker__button--learn-more:hover {
  background-color: #e0a53a;
}

/* Call to Action Section */
.page-poker__cta-section {
  padding: 80px 0;
  background-color: #FCBC45;
  text-align: center;
  color: #000000;
}

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

.page-poker__cta-section .page-poker__section-title::after {
  background-color: #000000;
}

.page-poker__cta-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #333333;
}

.page-poker__button--register-cta {
  background-color: #000000;
  color: #FCBC45;
  padding: 15px 35px;
  font-size: 1.1em;
}

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

/* Contact Section */
.page-poker__contact-section {
  padding: 80px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.page-poker__contact-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555555;
}

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

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__bonuses-container, .page-poker__security-container, .page-poker__mobile-container {
    flex-direction: column;
  }
  .page-poker__bonuses-content .page-poker__section-title,
  .page-poker__security-content .page-poker__section-title,
  .page-poker__mobile-content .page-poker__section-title {
    text-align: center;
  }
  .page-poker__bonuses-content .page-poker__section-title::after,
  .page-poker__security-content .page-poker__section-title::after,
  .page-poker__mobile-content .page-poker__section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 60px 0;
  }
  .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: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__feature-list, .page-poker__game-cards {
    grid-template-columns: 1fr;
  }
  .page-poker__bonuses-image, .page-poker__security-image, .page-poker__mobile-image {
    min-width: unset;
    width: 100%;
  }
  .page-poker__bonuses-image img, .page-poker__security-image img, .page-poker__mobile-image img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure all images within .page-poker are responsive and don't overflow */
  .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.8em;
  }
  .page-poker__feature-heading, .page-poker__game-card-title {
    font-size: 1.3em;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
}