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

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: #000000; /* Dark background for hero */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.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, color 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.page-poker__button--register {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

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

.page-poker__button--play:hover {
  background-color: #1a1a1a;
  border-color: #e0a73b;
}

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

.page-poker__button--primary:hover {
  background-color: #e0a73b;
}

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

.page-poker__button--secondary:hover {
  background-color: #1a1a1a;
  border-color: #e0a73b;
}

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

.page-poker__intro-section,
.page-poker__why-choose-section,
.page-poker__games-section,
.page-poker__tournaments-section,
.page-poker__getting-started-section,
.page-poker__bonuses-section,
.page-poker__mobile-section,
.page-poker__security-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-poker__section-heading {
  font-size: 2.8em;
  margin-bottom: 30px;
  color: #000000;
  position: relative;
  padding-bottom: 15px;
}

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

.page-poker__intro-section p,
.page-poker__why-choose-section p,
.page-poker__games-section p,
.page-poker__tournaments-section p,
.page-poker__getting-started-section p,
.page-poker__bonuses-section p,
.page-poker__mobile-section p,
.page-poker__security-section p,
.page-poker__responsible-gaming-section p,
.page-poker__faq-section p,
.page-poker__cta-section p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-poker__sub-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-poker__features-grid,
.page-poker__game-cards-grid,
.page-poker__bonus-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 {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-poker__feature-title,
.page-poker__game-title,
.page-poker__bonus-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
}

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

.page-poker__game-card .page-poker__button {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

.page-poker__image-container {
  margin: 50px auto;
  max-width: 1000px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-poker__image-container--vertical {
  max-width: 600px;
}

.page-poker__action-center {
  margin-top: 40px;
  text-align: center;
}

.page-poker__steps-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 40px auto;
}

.page-poker__steps-list li {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-poker__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 15px;
  font-size: 0.8em;
}

.page-poker__steps-list li p {
  margin-bottom: 15px;
  font-size: 1em;
  text-align: left;
}

.page-poker__responsible-gaming-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 30px auto;
  text-align: left;
}

.page-poker__responsible-gaming-list li {
  background-color: #f9f9f9;
  border-left: 4px solid #FCBC45;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 1.05em;
  line-height: 1.6;
}

.page-poker__faq-accordion {
  max-width: 900px;
  margin: 40px auto;
}

.page-poker__faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-poker__faq-question {
  background-color: #f5f5f5;
  padding: 20px 25px;
  font-size: 1.3em;
  color: #000000;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.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 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #ffffff;
}

.page-poker__faq-answer.open {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-poker__faq-answer p {
  margin: 0;
  text-align: left;
}

@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 2.8em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-heading {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 500px;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-heading {
    font-size: 1.8em;
  }
  .page-poker__intro-section p,
  .page-poker__why-choose-section p,
  .page-poker__games-section p,
  .page-poker__tournaments-section p,
  .page-poker__getting-started-section p,
  .page-poker__bonuses-section p,
  .page-poker__mobile-section p,
  .page-poker__security-section p,
  .page-poker__responsible-gaming-section p,
  .page-poker__faq-section p,
  .page-poker__cta-section p {
    font-size: 1em;
    text-align: left;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid,
  .page-poker__bonus-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__bonus-card {
    padding: 20px;
  }
  .page-poker__game-card img {
    height: 200px;
  }
  /* Mobile content area image overflow prevention */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__image-container--vertical {
    max-width: 100%;
  }
  .page-poker__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-poker__faq-answer.open {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-heading {
    font-size: 1.5em;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__bonus-title {
    font-size: 1.3em;
  }
  .page-poker__step-title {
    font-size: 1.3em;
  }
  .page-poker__faq-question {
    font-size: 1em;
  }
}