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

.page-poker__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-poker__hero-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

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

.page-poker__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.7); /* Main color with transparency */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #ffffff;
}

.page-poker__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary gold color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 900px;
}

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.6;
}

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

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

.page-poker__hero-button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

.page-poker__hero-button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-poker__hero-button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-poker__hero-button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #0A192F; /* Main dark blue */
  text-align: center;
  margin-bottom: 20px;
  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: #FFD700;
  border-radius: 2px;
}

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

.page-poker__games-overview,
.page-poker__features-section,
.page-poker__strategy-guide,
.page-poker__faq-section,
.page-poker__cta-section,
.page-poker__responsible-gaming {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  border-bottom: 4px solid #FFD700;
}

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

.page-poker__card-description {
  font-size: 1em;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 25px;
  padding: 0 20px;
  flex-grow: 1;
}

.page-poker__card-button {
  display: inline-block;
  padding: 12px 25px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__card-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-poker__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

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

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

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

.page-poker__strategy-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-poker__strategy-subtitle {
  font-size: 1.4em;
  color: #0A192F;
  margin-bottom: 10px;
}

.page-poker__strategy-description {
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-poker__strategy-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #0A192F;
  color: #ffffff;
  border-radius: 12px;
}

.page-poker__strategy-cta p {
  font-size: 1.3em;
  margin-bottom: 25px;
}

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

.page-poker__strategy-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-poker__faq-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-poker__faq-question {
  font-size: 1.2em;
  color: #0A192F;
  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: #FFD700;
}

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
  line-height: 1.6;
  display: none;
  padding-top: 10px;
  border-top: 1px dashed #eee;
  margin-top: 10px;
}

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

.page-poker__cta-section {
  background: linear-gradient(135deg, #0A192F, #3a4a61);
  border-radius: 15px;
  padding: 60px 40px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-poker__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-poker__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 35px auto;
  line-height: 1.6;
}

.page-poker__cta-button {
  display: inline-block;
  padding: 18px 40px;
  background-color: #FFD700;
  color: #0A192F;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-poker__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.page-poker__responsible-gaming {
  text-align: center;
  padding: 40px 20px;
  background-color: #f0f0f0;
  border-radius: 12px;
  margin-top: 80px;
}

.page-poker__responsible-gaming .page-poker__section-title {
  color: #0A192F;
}

.page-poker__responsible-gaming .page-poker__section-intro {
  color: #555555;
  margin-bottom: 30px;
}

.page-poker__responsible-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.page-poker__responsible-link {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid #0A192F;
  color: #0A192F;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-poker__responsible-link:hover {
  background-color: #0A192F;
  color: #FFD700;
}

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

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-overlay {
    padding: 15px;
  }
  .page-poker__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-poker__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-poker__game-cards,
  .page-poker__feature-grid,
  .page-poker__strategy-items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-poker__game-image,
  .page-poker__feature-icon {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-item,
  .page-poker__game-card {
    padding: 20px;
  }
  .page-poker__card-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 2em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
  .page-poker__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-poker__responsible-links {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure content images do not overflow on mobile */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.6em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-poker__hero-button {
    width: 100%;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
}