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

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

.page-poker__section {
  padding: 80px 0;
  text-align: center;
}

.page-poker__section--dark {
  background-color: #000000;
  color: #ffffff;
}

.page-poker__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: inherit;
  font-weight: bold;
}

.page-poker__section-intro {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 50px;
  color: inherit;
}

.page-poker__hero-section {
  position: relative;
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
}

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  margin-bottom: 40px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 900;
}

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

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

.page-poker__button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.page-poker__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-poker__button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

.page-poker__button--login:hover {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

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

.page-poker__button--play:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

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

.page-poker__button--promo:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-poker__button--step {
  background-color: #FCBC45;
  color: #000000;
  border-color: #FCBC45;
  padding: 10px 25px;
  font-size: 1em;
}

.page-poker__button--step:hover {
  background-color: #000000;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-poker__button--learn-more {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.page-poker__button--learn-more:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

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

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

.page-poker__about-section .page-poker__section-title,
.page-poker__about-section .page-poker__section-intro {
  color: #ffffff;
}

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

.page-poker__feature-card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.page-poker__feature-card:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

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

.page-poker__feature-description {
  font-size: 1.1em;
  color: #f0f0f0;
  flex-grow: 1;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-poker__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

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

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

.page-poker__game-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-poker__tournaments-section .page-poker__section-title,
.page-poker__tournaments-section .page-poker__section-intro {
  color: #ffffff;
}

.page-poker__content-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  text-align: left;
  margin-top: 50px;
}

.page-poker__text-content {
  flex: 1;
}

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

.page-poker__paragraph {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 25px;
}

.page-poker__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__content-image {
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-poker__how-to-play-section .page-poker__section-title,
.page-poker__how-to-play-section .page-poker__section-intro {
  color: #000000;
}

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

.page-poker__step-item {
  background-color: #f8f8f8;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.page-poker__step-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-poker__responsible-gaming-section .page-poker__section-title,
.page-poker__responsible-gaming-section .page-poker__section-intro {
  color: #ffffff;
}

.page-poker__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #f0f0f0;
}

.page-poker__cta-section .page-poker__section-title,
.page-poker__cta-section .page-poker__section-intro {
  color: #000000;
}

.page-poker__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__section-title {
    font-size: 2.2em;
  }
  .page-poker__content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__image-content {
    margin-top: 30px;
  }
  .page-poker__text-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-poker {
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-section {
    padding: 80px 20px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-buttons,
  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__section {
    padding: 60px 0;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__section-intro {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-poker__feature-icon,
  .page-poker__game-image,
  .page-poker__content-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-card,
  .page-poker__game-card,
  .page-poker__step-item {
    padding: 20px;
  }
  .page-poker__feature-title,
  .page-poker__game-title,
  .page-poker__step-title,
  .page-poker__sub-title {
    font-size: 1.6em;
  }
  .page-poker__steps-list {
    gap: 20px;
  }
  .page-poker__content-image {
    width: 100%; /* Ensure content image is responsive */
    height: auto;
  }
  .page-poker__feature-icon {
    width: 250px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__hero-section {
    padding: 60px 15px;
  }
  .page-poker__button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-poker__feature-icon {
    width: 200px;
    height: 150px;
  }
  .page-poker__game-image {
    height: 200px;
  }
}