.page-poker {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light background */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
  background-color: var(--secondary-color, #FFFFFF);
}

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

.page-poker__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 600px; /* Minimum height for hero section */
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero text */
}

.page-poker__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7; /* Slightly dim the image to make text pop */
}

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

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #FFFFFF;
}

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

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

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

.page-poker__button--register:hover {
  background-color: #333333;
  border-color: #FCBC45;
}

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

.page-poker__button--login:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
}

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

.page-poker__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-poker__why-choose-section,
.page-poker__variants-section,
.page-poker__tournaments-section,
.page-poker__signin-guide-section,
.page-poker__bonuses-section,
.page-poker__mobile-app-section,
.page-poker__responsible-gaming-section,
.page-poker__contact-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-poker__why-choose-section {
  background-color: #f8f8f8;
}

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

.page-poker__feature-card,
.page-poker__variant-card,
.page-poker__tournament-card,
.page-poker__bonus-card,
.page-poker__step-card,
.page-poker__responsible-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-poker__feature-card:hover,
.page-poker__variant-card:hover,
.page-poker__tournament-card:hover,
.page-poker__bonus-card:hover,
.page-poker__step-card:hover,
.page-poker__responsible-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon,
.page-poker__variant-image,
.page-poker__tournament-image,
.page-poker__bonus-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

.page-poker__feature-description,
.page-poker__variant-description,
.page-poker__tournament-description,
.page-poker__bonus-description,
.page-poker__step-description,
.page-poker__responsible-description {
  font-size: 1em;
  color: #666666;
}

.page-poker__cta-buttons {
  text-align: center;
  margin-top: 50px;
}

.page-poker__button--play-now,
.page-poker__button--view-promo,
.page-poker__button--claim-bonus,
.page-poker__button--download-app,
.page-poker__button--learn-more,
.page-poker__button--contact-us {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-poker__button--play-now:hover,
.page-poker__button--view-promo:hover,
.page-poker__button--claim-bonus:hover,
.page-poker__button--download-app:hover,
.page-poker__button--learn-more:hover,
.page-poker__button--contact-us:hover {
  background-color: #e0a53b;
  color: #FFFFFF;
  border-color: #e0a53b;
}

.page-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 6px;
  margin-top: 20px;
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid #000000;
}

.page-poker__button--small:hover {
  background-color: #333333;
  border-color: #FCBC45;
  color: #FCBC45;
}

.page-poker__mobile-app-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-poker__mobile-app-text {
  flex: 1;
  min-width: 300px;
}

.page-poker__mobile-app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-poker__mobile-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-poker__mobile-features li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%23FCBC45"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

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

.page-poker__contact-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #555555;
}

.page-poker__contact-info a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__contact-info a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@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-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 1em;
  }
  .page-poker__features-grid,
  .page-poker__variants-grid,
  .page-poker__tournament-grid,
  .page-poker__bonus-grid,
  .page-poker__steps-grid,
  .page-poker__responsible-features {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-app-flex {
    flex-direction: column;
  }
  .page-poker__mobile-app-text,
  .page-poker__mobile-app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__feature-icon, .page-poker__variant-image, .page-poker__tournament-image, .page-poker__bonus-image, .page-poker__mobile-app-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__section-intro {
    font-size: 0.9em;
  }
  .page-poker__feature-title,
  .page-poker__variant-title,
  .page-poker__tournament-title,
  .page-poker__bonus-title,
  .page-poker__step-title,
  .page-poker__responsible-title {
    font-size: 1.4em;
  }
  .page-poker__mobile-features li {
    font-size: 1em;
  }
}