.page-poker {
  color: #FFFFFF; /* Light text for dark background */
  background-color: #000000; /* Main dark background */
  padding-top: var(--header-offset, 120px);
}

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

/* Hero Section */
.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  min-height: 600px; /* Ensure hero section has a minimum height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #FFFFFF;
  line-height: 1.6;
}

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

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

.page-poker__button--primary {
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Dark text for contrast */
}

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

.page-poker__button--secondary {
  background-color: #FFFFFF; /* Register color */
  color: #000000; /* Dark text for contrast */
}

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

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-poker__button--large {
  padding: 20px 40px;
  font-size: 1.3em;
}

.page-poker__button--centered {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

/* Section Titles and Descriptions */
.page-poker__section-title {
  font-size: 2.8em;
  color: #FCBC45;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-poker__section-description {
  font-size: 1.1em;
  color: #FFFFFF;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

/* About Section */
.page-poker__about-section,
.page-poker__features-section,
.page-poker__getting-started-section,
.page-poker__promotions-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 0;
}

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

.page-poker__about-card {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter card background */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-poker__about-card:hover {
  transform: translateY(-5px);
}

.page-poker__about-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

.page-poker__card-text {
  font-size: 1em;
  color: #FFFFFF;
  line-height: 1.6;
}

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

.page-poker__feature-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__feature-title {
  font-size: 1.6em;
  color: #FCBC45;
  margin-bottom: 10px;
}

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

/* Getting Started Section */
.page-poker__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-poker__step-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

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

.page-poker__step-text {
  font-size: 1em;
  color: #FFFFFF;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-poker__promo-card {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  overflow: hidden;
}

.page-poker__promo-card--reverse {
  flex-direction: row-reverse;
}

.page-poker__promo-image {
  width: 50%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.page-poker__promo-content {
  width: 50%;
  padding: 40px;
}

.page-poker__promo-title {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-poker__promo-text {
  font-size: 1.1em;
  color: #FFFFFF;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* FAQ Section */
.page-poker__faq-accordion {
  margin-top: 40px;
}

.page-poker__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 30px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FCBC45;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.page-poker__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-poker__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-poker__faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-poker__faq-answer p {
  padding-bottom: 20px;
  color: #FFFFFF;
  line-height: 1.6;
}

/* CTA Section */
.page-poker__cta-section {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(252, 188, 69, 0.2), rgba(0, 0, 0, 0.8));
  border-radius: 10px;
  margin: 80px auto;
}

.page-poker__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

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

/* 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__section-description {
    font-size: 1em;
  }
  .page-poker__promo-image {
    height: 300px;
  }
  .page-poker__promo-content {
    padding: 30px;
  }
  .page-poker__promo-title {
    font-size: 1.8em;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
  }
  .page-poker__hero-section {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-poker__hero-content {
    padding: 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__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__about-grid,
  .page-poker__features-grid,
  .page-poker__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__promo-card {
    flex-direction: column;
  }
  .page-poker__promo-card--reverse {
    flex-direction: column;
  }
  .page-poker__promo-image,
  .page-poker__promo-content {
    width: 100%;
  }
  .page-poker__promo-image {
    height: 250px;
  }
  .page-poker__promo-content {
    padding: 20px;
  }
  .page-poker__promo-title {
    font-size: 1.5em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-poker__section-description {
    margin-bottom: 40px;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
  }
  /* Ensure all content area images are responsive and don't overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__about-image {
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__section-description {
    font-size: 0.9em;
  }
  .page-poker__card-title,
  .page-poker__feature-title,
  .page-poker__step-title {
    font-size: 1.4em;
  }
  .page-poker__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
}