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

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

.page-poker__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  padding-bottom: 60px;
}

.page-poker__hero-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.7;
  filter: brightness(0.7);
}

.page-poker__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  padding: 20px;
  z-index: 1;
}

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

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

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

.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;
}

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

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-poker__button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.page-poker__button--text {
  color: #FCBC45;
  text-decoration: underline;
  padding: 5px 10px;
  font-size: 1em;
}

.page-poker__button--text:hover {
  color: #e0a53b;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FCBC45;
  color: #000000;
  border: none;
  border-radius: 5px;
}

.page-poker__button--small:hover {
  background-color: #e0a53b;
  transform: translateY(-1px);
}

.page-poker__section-title {
  font-size: 2.8em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-poker__section-subtitle {
  font-size: 1.3em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-poker__features-section, .page-poker__how-to-play-section, .page-poker__game-types-section, .page-poker__tournaments-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__features-grid, .page-poker__steps-grid, .page-poker__game-types-grid, .page-poker__tournament-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-poker__feature-card, .page-poker__step-card, .page-poker__game-card, .page-poker__tournament-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__step-card:hover, .page-poker__game-card:hover, .page-poker__tournament-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.page-poker__feature-icon, .page-poker__game-image, .page-poker__tournament-image {
  width: 100%;
  height: auto;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

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

.page-poker__card-description {
  font-size: 1.1em;
  color: #666666;
  margin-bottom: 20px;
}

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

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

.page-poker__cta-title {
  font-size: 3.2em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

.page-poker__cta-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-poker__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__section-title {
    font-size: 2.4em;
  }
  .page-poker__section-subtitle {
    font-size: 1.2em;
  }
  .page-poker__cta-title {
    font-size: 2.8em;
  }
  .page-poker__cta-description {
    font-size: 1.3em;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 80px);
  }
  .page-poker__hero-content {
    padding: 15px;
    top: 55%;
  }
  .page-poker__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-poker__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-poker__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-poker__section-subtitle {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__features-section, .page-poker__how-to-play-section, .page-poker__game-types-section, .page-poker__tournaments-section {
    padding: 60px 0;
  }
  .page-poker__feature-card, .page-poker__step-card, .page-poker__game-card, .page-poker__tournament-card {
    padding: 20px;
  }
  .page-poker__card-title {
    font-size: 1.5em;
  }
  .page-poker__card-description {
    font-size: 0.95em;
  }
  .page-poker__cta-section {
    padding: 80px 20px;
  }
  .page-poker__cta-title {
    font-size: 2.2em;
    margin-bottom: 20px;
  }
  .page-poker__cta-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  /* Ensure images do not overflow */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__cta-title {
    font-size: 1.8em;
  }
  .page-poker__cta-description {
    font-size: 1em;
  }
}