.page-online-poker {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-online-poker__hero-section {
  position: relative;
  padding-top: 10px; /* Adhering to fixed header rule */
  margin-bottom: 40px;
}

.page-online-poker__hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-online-poker__hero-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  object-fit: cover;
}

.page-online-poker__hero-content {
  padding: 20px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-online-poker__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFF6D6;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center; /* Ensure it's centered */
}

.page-online-poker__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFD36B; /* Using accent color for key text */
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-online-poker__hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-online-poker__hero-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  color: #FFF6D6; /* Ensure good contrast */
  border: 1px solid transparent; /* Default border */
}

.page-online-poker__hero-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-online-poker__hero-button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 216, 106, 0.6);
}

.page-online-poker__hero-button--secondary {
  background-color: transparent;
  border-color: #F2C14E;
  color: #F2C14E;
}

.page-online-poker__hero-button--secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-online-poker__section-title {
  font-size: 2.2em;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 25px;
  padding-top: 40px;
}

.page-online-poker__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6;
}

.page-online-poker__about-section,
.page-online-poker__games-section,
.page-online-poker__how-to-play-section,
.page-online-poker__why-choose-us,
.page-online-poker__faq-section,
.page-online-poker__cta-section {
  padding: 20px;
  margin-bottom: 40px;
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid #3A2A12; /* Border color */
}

.page-online-poker__about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-online-poker__feature-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12;
}

.page-online-poker__feature-icon {
  width: 100%;
  max-width: 200px; /* Adjusted to meet min-width requirement visually */
  height: auto;
  min-height: 200px;
  margin-bottom: 15px;
  border-radius: 5px;
  object-fit: cover;
}

.page-online-poker__feature-title {
  font-size: 1.4em;
  color: #FFD36B;
  margin-bottom: 10px;
}

.page-online-poker__feature-text {
  font-size: 0.95em;
  color: #FFF6D6;
}

.page-online-poker__game-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px auto;
}

.page-online-poker__game-card {
  background-color: #0A0A0A;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #3A2A12;
  display: flex;
  flex-direction: column;
}

.page-online-poker__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  min-height: 200px;
  object-fit: cover;
}

.page-online-poker__game-title {
  font-size: 1.3em;
  color: #F2C14E;
  margin: 15px 10px 10px 10px;
}

.page-online-poker__game-text {
  font-size: 0.9em;
  color: #FFF6D6;
  padding: 0 15px 15px 15px;
  flex-grow: 1;
}

.page-online-poker__game-button {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px 15px;
  padding: 10px 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-online-poker__game-button:hover {
  opacity: 0.9;
}

.page-online-poker__cta-play-more {
  text-align: center;
  margin-top: 30px;
}

.page-online-poker__play-more-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  border: 2px solid #F2C14E;
  color: #F2C14E;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-online-poker__play-more-button:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 4px 10px rgba(242, 193, 78, 0.4);
}

.page-online-poker__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-online-poker__step-card {
  background-color: #0A0A0A;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #3A2A12;
}

.page-online-poker__step-title {
  font-size: 1.5em;
  color: #FFD36B;
  margin-bottom: 15px;
}

.page-online-poker__step-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
}

.page-online-poker__step-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: opacity 0.3s ease;
}

.page-online-poker__step-button:hover {
  opacity: 0.9;
}

.page-online-poker__advantages-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-online-poker__advantage-item {
  background-color: #0A0A0A;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #F2C14E;
  color: #FFF6D6;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-online-poker__advantage-item span {
  font-weight: bold;
  color: #FFD36B;
}

.page-online-poker__faq-item {
  background-color: #0A0A0A;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-online-poker__faq-question {
  font-size: 1.2em;
  color: #F2C14E;
  margin-bottom: 10px;
}

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

.page-online-poker__faq-answer a {
  color: #FFD36B;
  text-decoration: none;
}

.page-online-poker__faq-answer a:hover {
  text-decoration: underline;
}

.page-online-poker__cta-buttons {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-online-poker__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  color: #FFF6D6;
}

.page-online-poker__cta-button--register {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  box-shadow: 0 5px 15px rgba(255, 216, 106, 0.5);
  color: #0A0A0A;
}

.page-online-poker__cta-button--register:hover {
  opacity: 0.9;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 216, 106, 0.7);
}

.page-online-poker__cta-button--contact {
  background-color: transparent;
  border: 2px solid #F2C14E;
  color: #F2C14E;
}

.page-online-poker__cta-button--contact:hover {
  background-color: #F2C14E;
  color: #0A0A0A;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.5);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-online-poker__main-title {
    font-size: 2.8em;
  }
  .page-online-poker__section-title {
    font-size: 2em;
  }
  .page-online-poker__hero-button {
    min-width: 160px;
    padding: 10px 20px;
  }
}

@media (max-width: 768px) {
  .page-online-poker__main-title {
    font-size: 2.2em;
  }
  .page-online-poker__section-title {
    font-size: 1.8em;
  }
  .page-online-poker__hero-description,
  .page-online-poker__section-description {
    font-size: 1em;
  }
  .page-online-poker__hero-cta-group {
    flex-direction: column;
    align-items: center;
  }
  .page-online-poker__hero-button,
  .page-online-poker__play-more-button,
  .page-online-poker__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-online-poker__hero-image,
  .page-online-poker__feature-icon,
  .page-online-poker__game-thumbnail {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
  }
  .page-online-poker__about-features,
  .page-online-poker__game-list,
  .page-online-poker__steps-container {
    grid-template-columns: 1fr;
  }
  .page-online-poker__about-section,
  .page-online-poker__games-section,
  .page-online-poker__how-to-play-section,
  .page-online-poker__why-choose-us,
  .page-online-poker__faq-section,
  .page-online-poker__cta-section {
    margin-left: 10px;
    margin-right: 10px;
    padding: 15px;
  }
  /* Ensure content images are not smaller than 200px due to CSS */
  .page-online-poker img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .page-online-poker__main-title {
    font-size: 1.8em;
  }
  .page-online-poker__section-title {
    font-size: 1.5em;
  }
  .page-online-poker__hero-button,
  .page-online-poker__play-more-button,
  .page-online-poker__cta-button {
    width: 90%;
    padding: 10px 15px;
    font-size: 1em;
  }
  .page-online-poker__feature-title {
    font-size: 1.2em;
  }
  .page-online-poker__game-title {
    font-size: 1.1em;
  }
  .page-online-poker__step-title {
    font-size: 1.3em;
  }
  .page-online-poker__advantage-item,
  .page-online-poker__faq-question {
    font-size: 1em;
  }
  .page-online-poker__hero-description,
  .page-online-poker__section-description,
  .page-online-poker__feature-text,
  .page-online-poker__game-text,
  .page-online-poker__step-description,
  .page-online-poker__faq-answer {
    font-size: 0.9em;
  }
}