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

.page-poker__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  background-color: #000000;
  overflow: hidden;
}

.page-poker__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 800px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

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

.page-poker__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-poker__hero-actions {
  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, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

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

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

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

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

.page-poker__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.page-poker__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FCBC45;
  margin: 10px auto 0;
  border-radius: 2px;
}

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

.page-poker__about-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__how-to-start-section, .page-poker__mobile-section, .page-poker__responsible-gaming-section, .page-poker__support-section, .page-poker__cta-final-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-poker__about-section {
  background-color: #f9f9f9;
}

.page-poker__features-grid, .page-poker__game-types, .page-poker__tournament-grid, .page-poker__steps-grid, .page-poker__support-options {
  display: grid;
  gap: 30px;
}

.page-poker__features-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-poker__feature-card, .page-poker__game-card, .page-poker__tournament-card, .page-poker__step-card, .page-poker__support-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  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;
}

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

.page-poker__feature-icon {
  width: 200px; /* Min size */
  height: 200px; /* Min size */
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-poker__feature-description, .page-poker__game-description, .page-poker__tournament-description, .page-poker__step-description, .page-poker__support-description {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__game-types, .page-poker__tournament-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

.page-poker__game-card .page-poker__button {
  margin-top: 20px;
}

.page-poker__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.page-poker__text-link {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-poker__text-link:hover {
  text-decoration: underline;
}

.page-poker__more-info {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
}

.page-poker__mobile-section {
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__mobile-section .page-poker__section-title, .page-poker__mobile-section .page-poker__section-intro {
  color: #FFFFFF;
}

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

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

.page-poker__mobile-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-poker__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Min size */
  min-height: 200px; /* Min size */
}

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

.page-poker__mobile-features li {
  display: flex;
  align-items: center;
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-poker__mobile-feature-icon {
  font-size: 1.5em;
  color: #FCBC45;
  margin-right: 15px;
}

.page-poker__button--download {
  background-color: #FCBC45;
  color: #000000;
  margin-top: 30px;
}

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

.page-poker__responsible-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.page-poker__responsible-list li {
  background-color: #f0f0f0;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}

.page-poker__responsible-icon {
  font-size: 1.8em;
  color: #000000;
  margin-right: 15px;
}

.page-poker__responsible-gaming-section .page-poker__button {
  margin-top: 50px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-poker__responsible-gaming-section .page-poker__button:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-poker__support-options {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  margin-top: 40px;
}

.page-poker__support-card .page-poker__button {
  margin-top: 20px;
  background-color: #000000;
  color: #FFFFFF;
}

.page-poker__support-card .page-poker__button:hover {
  background-color: #333333;
}

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

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

.page-poker__cta-bottom .page-poker__button--promo:hover {
  background-color: #e0a53b;
}

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

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

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

  .page-poker__container--flex {
    flex-direction: column;
  }

  .page-poker__mobile-image-wrapper {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    padding-top: var(--header-offset, 120px);
  }
  .page-poker__hero-title {
    font-size: 2.2em;
  }
  .page-poker__hero-description {
    font-size: 1.1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 100%;
    max-width: 280px;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 1em;
  }
  .page-poker__features-grid, .page-poker__game-types, .page-poker__tournament-grid, .page-poker__steps-grid, .page-poker__support-options {
    grid-template-columns: 1fr;
  }
  .page-poker__mobile-image {
    max-width: 100%;
    height: auto;
  }
  .page-poker__responsible-list {
    grid-template-columns: 1fr;
  }
  /* Content area images must not cause horizontal scroll */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  .page-poker__hero-image {
    position: relative;
    height: 300px; /* Adjust height for mobile hero */
    object-fit: cover;
    opacity: 0.5;
  }
  .page-poker__hero-container {
    padding: 20px;
  }
  .page-poker__hero-content {
    padding: 20px;
  }
  .page-poker__about-section, .page-poker__games-section, .page-poker__tournaments-section, .page-poker__how-to-start-section, .page-poker__mobile-section, .page-poker__responsible-gaming-section, .page-poker__support-section, .page-poker__cta-final-section {
    padding: 40px 0;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 1.8em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__hero-image {
    height: 250px;
  }
}