.page-poker {
  padding-top: var(--header-offset, 120px);
  background-color: #FFFFFF;
  color: #000000;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  justify-content: center;
}

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

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

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-poker__btn {
  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;
  white-space: nowrap;
  cursor: pointer;
}

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

.page-poker__btn--primary:hover {
  background-color: #FCBC45;
  transform: translateY(-2px);
  opacity: 0.9;
}

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

.page-poker__btn--secondary:hover {
  background-color: #FCBC45;
  color: #FFFFFF;
  transform: translateY(-2px);
}

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

.page-poker__btn--large {
  padding: 20px 40px;
  font-size: 1.2em;
}

.page-poker__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  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: #FCBC45;
  border-radius: 2px;
}

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

.page-poker__features-section,
.page-poker__games-section,
.page-poker__how-to-start-section,
.page-poker__tournaments-promo-section,
.page-poker__responsible-gaming-section,
.page-poker__faq-section,
.page-poker__cta-section {
  padding: 80px 0;
}

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

.page-poker__feature-card,
.page-poker__game-card,
.page-poker__step-card,
.page-poker__promo-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-poker__feature-card:hover,
.page-poker__game-card:hover,
.page-poker__step-card:hover,
.page-poker__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon,
.page-poker__game-image,
.page-poker__promo-image {
  width: 100%;
  height: 250px; /* Ensure images are not too small */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-poker__feature-icon {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 25px auto;
}

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

.page-poker__feature-text,
.page-poker__game-text,
.page-poker__step-text,
.page-poker__promo-text {
  color: #555555;
  font-size: 1em;
  margin-bottom: 20px;
}

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

.page-poker__responsible-gaming-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}

.page-poker__responsible-gaming-section .page-poker__section-title,
.page-poker__responsible-gaming-section .page-poker__section-description {
  color: #FFFFFF;
}

.page-poker__responsible-gaming-section .page-poker__section-title::after {
  background-color: #FCBC45;
}

.page-poker__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-poker__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

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

.page-poker__faq-answer {
  color: #555555;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
  padding-top: 0;
}

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

.page-poker__cta-section {
  text-align: center;
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-section .page-poker__section-description {
  color: #FFFFFF;
}

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

.page-poker__floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-poker__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 100px;
  text-align: center;
}

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

.page-poker__floating-btn--register:hover {
  background-color: #FCBC45;
  color: #000000;
  transform: translateY(-2px);
}

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

.page-poker__floating-btn--login:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }

  .page-poker__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }

  .page-poker__hero-title {
    font-size: 2.5em;
  }

  .page-poker__hero-description {
    font-size: 1.1em;
  }

  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-poker__btn {
    width: 100%;
    max-width: 300px;
  }

  .page-poker__section-title {
    font-size: 1.8em;
  }

  .page-poker__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

  .page-poker__features-section,
  .page-poker__games-section,
  .page-poker__how-to-start-section,
  .page-poker__tournaments-promo-section,
  .page-poker__responsible-gaming-section,
  .page-poker__faq-section,
  .page-poker__cta-section {
    padding: 60px 0;
  }

  .page-poker__features-grid,
  .page-poker__games-grid,
  .page-poker__steps-grid,
  .page-poker__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__promo-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-poker__feature-icon {
    min-width: 200px;
    min-height: 200px;
  }

  .page-poker__faq-item {
    padding: 20px;
  }

  .page-poker__faq-question {
    font-size: 1.2em;
  }

  .page-poker__floating-buttons {
    bottom: 15px;
    gap: 10px;
    padding: 8px 15px;
  }

  .page-poker__floating-btn {
    padding: 8px 15px;
    font-size: 0.9em;
    min-width: 80px;
  }

  /* Mobile content area image overflow prevention */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are not too small for mobile */
  .page-poker__game-image,
  .page-poker__promo-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }

  .page-poker__hero-description {
    font-size: 1em;
  }

  .page-poker__section-title {
    font-size: 1.5em;
  }

  .page-poker__btn--large {
    padding: 15px 30px;
    font-size: 1em;
  }
}