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

.page-poker__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  position: relative;
  overflow: hidden;
  background-color: #0056B3; /* Primary brand color as a fallback/overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-poker__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-poker__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  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;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.page-poker__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0056B3; /* Dark blue text */
  border-color: #FFD700;
}

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

.page-poker__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border-color: #FFD700;
}

.page-poker__button--secondary:hover {
  background-color: #FFD700;
  color: #0056B3;
}

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

.page-poker__section-title {
  font-size: 2.5em;
  color: #0056B3; /* Primary blue for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

.page-poker__text-content {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-poker__about-section, .page-poker__features-section, .page-poker__bonuses-section {
  background-color: #f8f8f8;
  padding: 60px 0;
}

.page-poker__games-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-poker__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-poker__game-card:hover {
  transform: translateY(-5px);
}

.page-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-poker__game-title {
  font-size: 1.8em;
  color: #0056B3;
  margin: 25px 15px 15px;
}

.page-poker__game-description {
  font-size: 1em;
  line-height: 1.6;
  padding: 0 20px 25px;
  flex-grow: 1;
}

.page-poker__game-card .page-poker__button {
  margin: 0 20px 25px;
  background-color: #0056B3;
  color: #ffffff;
  border-color: #0056B3;
}

.page-poker__game-card .page-poker__button:hover {
  background-color: #004085;
  border-color: #004085;
}

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

.page-poker__feature-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-poker__feature-item:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-poker__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-poker__feature-title {
  font-size: 1.5em;
  color: #0056B3;
  margin-bottom: 10px;
}

.page-poker__feature-description {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
}

.page-poker__cta-section {
  background: linear-gradient(135deg, #0056B3, #004085);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
}

.page-poker__cta-section .page-poker__section-title {
  color: #FFD700;
}

.page-poker__cta-section .page-poker__section-title::after {
  background-color: #ffffff;
}

.page-poker__cta-section .page-poker__text-content {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #f0f0f0;
}

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

.page-poker__button--cta {
  padding: 18px 40px;
  font-size: 1.2em;
  border-width: 3px;
}

.page-poker__button--cta:first-child {
  background-color: #FFD700;
  color: #0056B3;
  border-color: #FFD700;
}

.page-poker__button--cta:first-child:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-poker__button--outline {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-poker__button--outline:hover {
  background-color: #ffffff;
  color: #0056B3;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-poker__hero-title {
    font-size: 3em;
  }
  .page-poker__hero-description {
    font-size: 1.2em;
  }
}

@media (max-width: 768px) {
  .page-poker__hero-section {
    min-height: 400px;
  }
  .page-poker__hero-title {
    font-size: 2.5em;
  }
  .page-poker__hero-description {
    font-size: 1em;
  }
  .page-poker__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button {
    width: 80%;
    margin: 0 auto;
  }
  .page-poker__section-title {
    font-size: 2em;
  }
  .page-poker__text-content {
    font-size: 1em;
  }
  .page-poker__game-grid, .page-poker__features-grid {
    grid-template-columns: 1fr;
  }
  .page-poker__game-image {
    height: 200px;
  }
  .page-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-poker__button--cta {
    width: 80%;
    margin: 0 auto;
  }
  /* Ensure all content area images are responsive */
  .page-poker img {
    max-width: 100%;
    height: auto;
  }
  /* Specific override for feature icons to not be tiny */
  .page-poker__feature-icon {
    width: 100px; /* Keeping a reasonable size */
    height: 100px; /* Keeping a reasonable size */
    max-width: 100px; /* Ensure it doesn't grow too large */
    max-height: 100px; /* Ensure it doesn't grow too large */
  }
}

@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.8em;
  }
  .page-poker__game-title {
    font-size: 1.5em;
  }
  .page-poker__feature-title {
    font-size: 1.3em;
  }
  .page-poker__cta-section {
    padding: 60px 15px;
  }
  .page-poker__button--cta {
    width: 90%;
  }
}