.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #000000; /* Dark background for hero content */
  color: #FFFFFF;
  overflow: hidden;
}

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

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FCBC45; /* Highlight title with login button color */
}

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

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

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

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

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

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

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

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

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #333333;
}

.page-poker__about-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__bonuses-section,
.page-poker__mobile-section,
.page-poker__responsible-gaming-section,
.page-poker__get-started-section,
.page-poker__faq-section,
.page-poker__cta-final-section {
  padding: 60px 0;
}

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

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__bonus-card,
.page-poker__step-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__bonus-image,
.page-poker__responsible-image,
.page-poker__mobile-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-poker__card-description {
  font-size: 1em;
  color: #555555;
  flex-grow: 1;
}

.page-poker__button--play,
.page-poker__button--claim,
.page-poker__button--join-tournaments,
.page-poker__button--download,
.page-poker__button--learn-more,
.page-poker__button--deposit {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 20px;
  border: 2px solid #FCBC45;
}

.page-poker__button--play:hover,
.page-poker__button--claim:hover,
.page-poker__button--join-tournaments:hover,
.page-poker__button--download:hover,
.page-poker__button--learn-more:hover,
.page-poker__button--deposit:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

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

.page-poker__tournament-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-poker__tournament-name {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 5px;
}

.page-poker__tournament-details {
  color: #555555;
}

.page-poker__mobile-content,
.page-poker__responsible-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-poker__mobile-content > img,
.page-poker__responsible-content > img {
  flex: 1 1 45%;
  min-width: 300px; /* Minimum size for content images */
}

.page-poker__mobile-features,
.page-poker__responsible-text {
  flex: 1 1 45%;
  min-width: 300px; /* Minimum size for content sections */
}

.page-poker__mobile-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
}

.page-poker__mobile-features ul,
.page-poker__responsible-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-poker__mobile-features li,
.page-poker__responsible-text li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FCBC45"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z"/></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #333333;
}

.page-poker__step-card .page-poker__step-number {
  background-color: #000000;
  color: #FCBC45;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}

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

.page-poker__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

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

.page-poker__faq-answer {
  color: #555555;
  display: none;
}

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

.page-poker__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-poker__faq-answer a:hover {
  text-decoration: underline;
}

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

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

.page-poker__cta-final-section .page-poker__section-intro {
  color: #FFFFFF;
}

.page-poker__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
  }
  .page-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__bonus-cards-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-content,
  .page-poker__responsible-content {
    flex-direction: column;
  }
  .page-poker__mobile-content > img,
  .page-poker__responsible-content > img {
    max-width: 100%;
    width: 100%; /* Ensure content images are responsive */
    height: auto;
  }
  /* Enforce max-width: 100%; height: auto; for all content images on mobile */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
  }
}

@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.8em;
  }
  .page-poker__section-intro {
    font-size: 0.9em;
  }
}