.page-online-poker {
  font-family: Arial, sans-serif;
  color: #FFF6D6; /* Text Main */
  line-height: 1.6;
  background-color: var(--background-color); /* Body background from shared.css */
}

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

.page-online-poker__hero-section {
  padding-top: 10px; /* Small top padding for first section */
  text-align: center;
  background-color: #0A0A0A; /* Background */
  padding-bottom: 60px;
}

.page-online-poker__hero-image {
  margin-bottom: 20px;
}

.page-online-poker__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1920px;
  margin: 0 auto;
}

.page-online-poker__hero-content {
  padding: 0 20px;
}

.page-online-poker__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Adjusted H1 font size */
  font-weight: bold;
  color: #F2C14E; /* Main color */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-online-poker__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-online-poker__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.page-online-poker__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button gradient */
  color: #333333; /* Dark text for contrast on light button */
}

.page-online-poker__button--primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-online-poker__button--secondary {
  background-color: transparent;
  color: #F2C14E; /* Main color */
  border: 2px solid #F2C14E;
}

.page-online-poker__button--secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Background color for contrast */
  transform: translateY(-2px);
}

.page-online-poker__button--text {
  background: none;
  border: none;
  color: #F2C14E;
  padding: 0;
  text-decoration: underline;
  font-weight: normal;
}

.page-online-poker__button--text:hover {
  color: #FFD36B;
  transform: none;
}

.page-online-poker__why-ph365-section,
.page-online-poker__games-overview-section,
.page-online-poker__getting-started-section,
.page-online-poker__promotions-section,
.page-online-poker__mobile-app-section,
.page-online-poker__security-section,
.page-online-poker__faq-section,
.page-online-poker__cta-final-section {
  padding: 60px 0;
  background-color: #0A0A0A; /* Background */
}

.page-online-poker__section-title {
  font-size: 2.2rem;
  color: #F2C14E; /* Main color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

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

.page-online-poker__sub-title {
  font-size: 1.8rem;
  color: #F2C14E;
  margin-bottom: 20px;
}

.page-online-poker__text-content {
  font-size: 1.05rem;
  margin-bottom: 25px;
  text-align: justify;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-online-poker__feature-card,
.page-online-poker__game-card,
.page-online-poker__step-card,
.page-online-poker__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-online-poker__feature-card:hover,
.page-online-poker__game-card:hover,
.page-online-poker__step-card:hover,
.page-online-poker__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5), 0 0 15px #FFD36B; /* Glow */
}

.page-online-poker__card-title {
  font-size: 1.4rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-online-poker__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-online-poker__game-card img,
.page-online-poker__app-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum image size */
}

.page-online-poker__app-download-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-online-poker__app-text-block {
  text-align: center;
  max-width: 700px;
}

.page-online-poker__app-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

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

.page-online-poker__feature-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-online-poker__item-title {
  font-size: 1.3rem;
  color: #FFD36B; /* Auxiliary color */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-online-poker__item-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  margin-bottom: 15px;
}

.page-online-poker__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-poker__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 25px;
  text-align: left;
}

.page-online-poker__faq-question {
  font-size: 1.15rem;
  color: #F2C14E; /* Main color */
  font-weight: bold;
  margin-bottom: 10px;
}

.page-online-poker__faq-answer {
  font-size: 0.95rem;
  color: #FFF6D6;
}

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

.page-online-poker__cta-final-section {
  padding-bottom: 80px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .page-online-poker__app-download-content {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
  .page-online-poker__app-text-block {
    text-align: left;
    flex: 1;
  }
  .page-online-poker__app-image {
    flex: 1;
    max-width: 40%;
  }
  .page-online-poker__app-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .page-online-poker__main-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  .page-online-poker__section-title {
    font-size: 1.8rem;
  }
  .page-online-poker__sub-title {
    font-size: 1.5rem;
  }
  .page-online-poker__hero-buttons,
  .page-online-poker__final-buttons,
  .page-online-poker__app-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-online-poker__button {
    width: 100%;
    max-width: 300px;
  }
  .page-online-poker__text-content {
    font-size: 1rem;
  }
  .page-online-poker__feature-card,
  .page-online-poker__game-card,
  .page-online-poker__step-card,
  .page-online-poker__promo-card,
  .page-online-poker__feature-item {
    padding: 25px;
  }
  /* Images in content area must be responsive and not overflow */
  .page-online-poker img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image in content area is smaller than 200px on mobile */
  .page-online-poker__game-card img, .page-online-poker__app-image img {
    min-width: 200px; /* Enforce min-width for mobile */
    min-height: 200px; /* Enforce min-height for mobile */
  }
}

/* Ensure no image filter is applied */
.page-online-poker img {
  filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Ensure content area images are never smaller than 200px */
.page-online-poker__game-card img, .page-online-poker__app-image img {
    min-width: 200px;
    min-height: 200px;
    width: auto; /* Allow natural sizing if larger */
    height: auto; /* Allow natural sizing if larger */
}