.page-poker {
  color: #333333; /* Deep dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

/* Hero Section */
.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #1A1A1A; /* Auxiliary dark background */
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

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

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

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

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

.page-poker__hero-button--primary {
  background-color: #DAA520; /* Gold primary button */
  color: #1A1A1A;
}

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

.page-poker__hero-button--secondary {
  background-color: #333333; /* Dark secondary button */
  color: #DAA520;
  border: 2px solid #DAA520;
}

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

/* General Section Styling */
.page-poker__section-title {
  font-size: 2.8em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-poker__section-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

/* About Aceph Section */
.page-poker__about-aceph-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.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;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__feature-icon {
  width: 250px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 5px;
}

.page-poker__feature-title {
  font-size: 1.8em;
  color: #DAA520;
  margin-bottom: 15px;
}

.page-poker__feature-description {
  font-size: 1em;
  color: #666666;
}

/* Games Section */
.page-poker__games-section {
  padding: 80px 0;
  background-color: #f2f2f2;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__game-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-poker__game-card-title {
  font-size: 2em;
  color: #1A1A1A;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-poker__game-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-poker__game-card-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-poker__game-card-button:hover {
  background-color: #e5c063;
}

/* How to Start Section */
.page-poker__how-to-start-section {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-poker__step-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.page-poker__step-title {
  font-size: 1.6em;
  color: #1A1A1A;
  margin-bottom: 15px;
}

.page-poker__step-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-poker__step-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #DAA520;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-poker__step-button:hover {
  background-color: #333333;
}

/* Strategy Section */
.page-poker__strategy-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

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

.page-poker__strategy-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-poker__strategy-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-poker__strategy-card-title {
  font-size: 1.8em;
  color: #1A1A1A;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-poker__strategy-card-description {
  font-size: 1em;
  color: #666666;
  padding: 0 15px 20px;
}

.page-poker__strategy-card-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-poker__strategy-card-button:hover {
  background-color: #e5c063;
}

/* Promo CTA Section */
.page-poker__promo-cta-section {
  background-color: #1A1A1A;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-poker__promo-cta-section .page-poker__section-title {
  color: #DAA520;
}

.page-poker__promo-cta-section .page-poker__section-text {
  color: #f0f0f0;
}

.page-poker__cta-button {
  display: inline-block;
  background-color: #DAA520;
  color: #1A1A1A;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-poker__cta-button:hover {
  background-color: #e5c063;
  transform: translateY(-3px);
}

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

.page-poker__faq-items {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-poker__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.page-poker__faq-question {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for expand/collapse icon */
}

.page-poker__faq-answer {
  font-size: 1em;
  color: #666666;
  display: block; /* Initially visible */
  margin-top: 15px;
}

.page-poker__faq-button {
  display: inline-block;
  background-color: #1A1A1A;
  color: #DAA520;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 50px;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-poker__faq-button:hover {
  background-color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .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__feature-title, .page-poker__game-card-title, .page-poker__step-title, .page-poker__strategy-card-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 60px 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__hero-button {
    width: 80%;
    max-width: 300px;
  }
  .page-poker__container {
    padding: 0 15px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-text {
    font-size: 0.95em;
  }
  .page-poker__feature-item, .page-poker__game-card, .page-poker__step-item, .page-poker__strategy-card {
    padding: 20px;
  }
  .page-poker__feature-icon, .page-poker__game-card-image, .page-poker__strategy-card-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-poker__faq-question {
    font-size: 1.2em;
  }
  .page-poker__faq-answer {
    font-size: 0.95em;
  }
  /* Ensure all content images in mobile are responsive and not too small */
  .page-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
  .page-poker__feature-icon, .page-poker__game-card-image, .page-poker__strategy-card-image {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
  }
}