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

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.7);
  object-fit: cover;
  min-height: 400px;
}

.page-poker__hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-poker__hero-content {
  max-width: 800px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

.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;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-poker__button--register:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

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

.page-poker__button--login:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-poker__container {
  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: 60px;
  height: 4px;
  background-color: #FCBC45;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-poker__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #333333;
}

.page-poker__image-full-width {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px 0;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-poker__bg-dark {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-poker__bg-dark .page-poker__section-title {
  color: #FFFFFF;
}

.page-poker__bg-dark .page-poker__text-content {
  color: #f0f0f0;
}

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

.page-poker__feature-card,
.page-poker__strategy-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-card:hover,
.page-poker__strategy-card:hover {
  transform: translateY(-5px);
  background-color: #2a2a2a;
}

.page-poker__feature-icon,
.page-poker__strategy-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-poker__feature-title,
.page-poker__strategy-card-title {
  font-size: 1.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-poker__feature-description,
.page-poker__strategy-card-description {
  font-size: 1em;
  color: #cccccc;
  flex-grow: 1;
}

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

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

.page-poker__button--primary:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-poker__button--secondary {
  background-color: #444444;
  color: #FFFFFF;
  margin-top: 20px;
}

.page-poker__button--secondary:hover {
  background-color: #555555;
  transform: translateY(-2px);
}

.page-poker__cta-download {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.page-poker__cta-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__cta-download .page-poker__section-title {
  color: #FFFFFF;
}

.page-poker__cta-download .page-poker__section-title::after {
  background-color: #FCBC45;
}

.page-poker__button--download {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 30px;
}

.page-poker__button--download:hover {
  background-color: #e6a73c;
  transform: translateY(-2px);
}

.page-poker__image-center {
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  width: 100%;
  height: auto;
  min-width: 200px;
  min-height: 200px;
}

.page-poker__faq-list {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.page-poker__faq-item {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

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

.page-poker__faq-answer {
  font-size: 1em;
  color: #555555;
}

/* Responsive adjustments */
@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: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-container {
    padding: 60px 15px;
    min-height: 400px;
  }
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .page-poker__container {
    padding: 30px 15px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__text-content {
    font-size: 0.95em;
  }
  /* Ensure all content area images are responsive and do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image {
    min-height: 300px;
  }
  .page-poker__feature-icon, .page-poker__strategy-image, .page-poker__image-full-width, .page-poker__image-center {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.7em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__features-grid, .page-poker__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-card, .page-poker__strategy-card {
    padding: 20px;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
  }
}