.page-poker {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-poker__hero-section {
  background-color: #000000;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-poker__hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

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

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

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

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

.page-poker__button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000;
}

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FCBC45;
}

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

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

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

.page-poker__section:nth-of-type(even) {
  background-color: #f5f5f5;
}

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

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

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

.page-poker__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-poker__feature-icon {
  width: 200px; /* Minimum size requirement */
  height: auto;
  margin-bottom: 20px;
  border-radius: 5px;
  object-fit: cover;
}

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

.page-poker__feature-text {
  font-size: 1em;
  color: #666666;
}

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

.page-poker__game-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-poker__game-card-text {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-poker__strategies {
  background-color: #FFFFFF;
}

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

.page-poker__strategies-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__strategies-content .page-poker__section-title {
  text-align: left;
}

.page-poker__strategies-content .page-poker__section-intro {
  text-align: left;
  margin-left: 0;
}

.page-poker__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__strategy-item {
  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 20.42L2.79 14.21 5.62 11.38 9 14.77 18.38 5.38 21.21 8.21z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

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

.page-poker__strategies-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

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

.page-poker__bonuses-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-poker__bonuses-content {
  flex: 1;
  min-width: 300px;
}

.page-poker__bonuses-content .page-poker__section-title {
  text-align: left;
}

.page-poker__bonuses-content .page-poker__section-intro {
  text-align: left;
  margin-left: 0;
}

.page-poker__bonus-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__bonus-item {
  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="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-poker__bonus-item strong {
  color: #000000;
}

.page-poker__mobile-app {
  background-color: #f5f5f5;
}

.page-poker__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

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

.page-poker__mobile-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

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

.page-poker__mobile-subtitle {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #000000;
}

.page-poker__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-poker__feature-list .page-poker__feature-item {
  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="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444444;
}

.page-poker__feature-list .page-poker__feature-item strong {
  color: #000000;
}

.page-poker__long-form-content {
  text-align: left;
}

.page-poker__long-form-content h2,
.page-poker__long-form-content h3 {
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-poker__long-form-content h2 {
  font-size: 2.2em;
}

.page-poker__long-form-content h3 {
  font-size: 1.8em;
}

.page-poker__long-form-content p {
  margin-bottom: 20px;
  color: #444444;
  font-size: 1.05em;
}

.page-poker__cta-final {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 0;
}

.page-poker__cta-final-content {
  max-width: 800px;
}

.page-poker__cta-final .page-poker__section-title {
  color: #FCBC45;
}

.page-poker__cta-final .page-poker__section-intro {
  color: #FFFFFF;
}

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

.page-poker__copyright {
  text-align: center;
  padding: 20px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.9em;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.2em;
  }
  .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: 1em;
  }
  .page-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section {
    padding: 40px 0;
  }
  .page-poker__section-title {
    font-size: 1.8em;
  }
  .page-poker__section-intro {
    font-size: 0.95em;
  }
  .page-poker__features-grid,
  .page-poker__game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__strategies .page-poker__container,
  .page-poker__bonuses .page-poker__container,
  .page-poker__mobile-content {
    flex-direction: column;
    text-align: center;
  }
  .page-poker__strategies-content .page-poker__section-title,
  .page-poker__strategies-content .page-poker__section-intro,
  .page-poker__bonuses-content .page-poker__section-title,
  .page-poker__bonuses-content .page-poker__section-intro,
  .page-poker__mobile-subtitle {
    text-align: center;
  }
  .page-poker__strategy-list,
  .page-poker__bonus-list,
  .page-poker__feature-list {
    text-align: left;
    margin: 0 auto 30px auto;
    max-width: 400px; /* Constrain list width for better readability on small screens */
  }
  .page-poker__strategies-image,
  .page-poker__bonuses-image,
  .page-poker__mobile-image {
    min-width: 200px; /* Ensure images meet minimum size */
    max-width: 100%;
    height: auto;
  }
  .page-poker__long-form-content h2,
  .page-poker__long-form-content h3 {
    text-align: center;
  }
  .page-poker__long-form-content p {
    text-align: left;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
  }
  .page-poker__button {
    max-width: 280px; /* Adjusted for mobile buttons */
  }
  .page-poker__hero-image img,
  .page-poker__feature-icon,
  .page-poker__strategies-image,
  .page-poker__bonuses-image,
  .page-poker__mobile-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-poker__hero-title {
    font-size: 2em;
  }
  .page-poker__hero-description {
    font-size: 0.9em;
  }
  .page-poker__section-title {
    font-size: 1.5em;
  }
  .page-poker__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-poker__game-card-title {
    font-size: 1.5em;
  }
  .page-poker__mobile-subtitle {
    font-size: 1.5em;
  }
}