.page-poker {
  color: #333333; /* Dark text for light body background */
}

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* Light text on dark background */
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.page-poker__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.page-poker__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-poker__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-poker__btn {
  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.2s ease;
  cursor: pointer;
}

.page-poker__btn--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-poker__btn--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-poker__btn--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__btn--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.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: 30px;
  position: relative;
}

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

.page-poker__section-text {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-poker__about-section, .page-poker__strategy-section, .page-poker__promotions-section, .page-poker__security-section, .page-poker__cta-download-section, .page-poker__faq-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

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

.page-poker__feature-card, .page-poker__promo-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.page-poker__feature-card:hover, .page-poker__promo-card:hover {
  transform: translateY(-10px);
}

.page-poker__feature-icon, .page-poker__promo-image, .page-poker__security-icon {
  width: 100%;
  max-width: 400px; /* Ensure images are not too small */
  height: auto;
  min-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-poker__feature-title, .page-poker__promo-title, .page-poker__security-item-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
}

.page-poker__feature-description, .page-poker__promo-description, .page-poker__security-item-description {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
}

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

.page-poker__strategy-item {
  background-color: #f2f2f2;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-poker__strategy-item:hover {
  background-color: #e6e6e6;
}

.page-poker__strategy-item-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-poker__strategy-item-description {
  font-size: 1em;
  line-height: 1.5;
  color: #555555;
}

.page-poker__cta-button-container {
  text-align: center;
  margin-top: 60px;
}

.page-poker__btn--learn-more, .page-poker__btn--all-promos, .page-poker__btn--download {
  background-color: #000000;
  color: #FFFFFF;
  padding: 15px 35px;
  border: 2px solid #000000;
}

.page-poker__btn--learn-more:hover, .page-poker__btn--all-promos:hover, .page-poker__btn--download:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-poker__btn--claim, .page-poker__btn--view {
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 25px;
  font-size: 1em;
  margin-top: 20px;
  display: inline-block;
  border: 2px solid #FCBC45;
}

.page-poker__btn--claim:hover, .page-poker__btn--view:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  transform: translateY(-3px);
}

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

.page-poker__security-section .page-poker__section-title {
  color: #FFFFFF;
}

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

.page-poker__security-section .page-poker__section-text {
  color: #e0e0e0;
}

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

.page-poker__security-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
}

.page-poker__security-item-title {
  color: #FCBC45;
}

.page-poker__security-item-description {
  color: #e0e0e0;
}

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

.page-poker__faq-item {
  background-color: #f2f2f2;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-poker__faq-item:hover {
  background-color: #e6e6e6;
}

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

.page-poker__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

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

.page-poker__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-top: 15px;
  display: none; /* Hidden by default */
}

.page-poker__faq-item.active .page-poker__faq-answer {
  display: block;
}

.page-poker__faq-answer a {
  color: #000000;
  text-decoration: underline;
}

.page-poker__faq-answer a:hover {
  color: #FCBC45;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }

  .page-poker__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
    padding: 40px 15px;
  }

  .page-poker__hero-title {
    font-size: 2.2em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__btn {
    width: 80%;
    margin: 0 auto;
  }

  .page-poker__content-area {
    padding: 30px 15px;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__section-text {
    font-size: 0.95em;
  }

  .page-poker__features-grid, .page-poker__promo-grid, .page-poker__strategy-grid, .page-poker__security-details {
    grid-template-columns: 1fr;
  }

  .page-poker__feature-card, .page-poker__promo-card, .page-poker__security-item {
    padding: 25px;
  }

  /* Mobile image handling - prevent overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }

  .page-poker__section-title {
    font-size: 1.5em;
  }

  .page-poker__btn {
    width: 90%;
  }
}