.page-online-poker {
  color: #FFF6D6; /* Light text for dark background */
  background-color: #0A0A0A; /* Body background */
}

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

.page-online-poker__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Adjust as needed */
  padding-top: 10px; /* Small top padding for visual separation */
  position: relative;
  overflow: hidden;
}

.page-online-poker__hero-image {
  width: 100%;
  max-height: 500px; /* Limit height of hero image for better layout */
  overflow: hidden;
  margin-bottom: 20px; /* Space between image and content */
}

.page-online-poker__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-online-poker__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
}

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

.page-online-poker__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #FFF6D6;
}

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

.page-online-poker__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #111111; /* Dark text for light button background */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  border: none;
  cursor: pointer;
}

.page-online-poker__hero-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-online-poker__hero-button--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color for text */
  border: 1px solid #3A2A12; /* Border color */
}

.page-online-poker__hero-button--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

.page-online-poker__section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.page-online-poker__section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: #F2C14E;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-online-poker__section-text {
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 25px auto;
  color: #FFF6D6;
}

.page-online-poker__section-text--more-games {
  margin-top: 40px;
  font-style: italic;
}

.page-online-poker__link {
  color: #F2C14E;
  text-decoration: none;
  font-weight: 600;
}

.page-online-poker__link:hover {
  text-decoration: underline;
}

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

.page-online-poker__feature-item {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #3A2A12; /* Border color */
}

.page-online-poker__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-online-poker__feature-title {
  font-size: 1.5rem;
  color: #FFD36B;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-online-poker__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
}

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

.page-online-poker__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #3A2A12; /* Border color */
}

.page-online-poker__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-online-poker__game-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-online-poker__game-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin: 20px 20px 10px 20px;
  font-weight: 600;
}

.page-online-poker__game-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF6D6;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-online-poker__game-button {
  display: inline-block;
  width: calc(100% - 40px);
  margin: 0 20px 20px 20px;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #111111; /* Dark text for light button background */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-online-poker__game-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-online-poker__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

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

.page-online-poker__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text */
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-online-poker__step-title {
  font-size: 1.4rem;
  color: #FFD36B;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-online-poker__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6;
  margin-bottom: 0;
}

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

.page-online-poker__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  color: #111111; /* Dark text */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  border: none;
  cursor: pointer;
}

.page-online-poker__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-online-poker__cta-button--secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main color */
  border: 1px solid #3A2A12; /* Border color */
}

.page-online-poker__cta-button--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.2);
}

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

.page-online-poker__app-text-content {
  flex: 1;
}

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

.page-online-poker__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

.page-online-poker__promotions-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 50px auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-online-poker__hero-title {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .page-online-poker__hero-description {
    font-size: 1rem;
  }

  .page-online-poker__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-online-poker__hero-button {
    width: 100%;
    max-width: 280px;
  }

  .page-online-poker__section {
    padding: 60px 0;
  }

  .page-online-poker__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-online-poker__section-text {
    font-size: 0.95rem;
  }

  .page-online-poker__container--flex {
    flex-direction: column;
    text-align: center;
  }

  .page-online-poker__app-image-wrapper {
    margin-top: 30px;
  }

  .page-online-poker__game-grid, .page-online-poker__feature-grid, .page-online-poker__steps-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-online-poker__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-online-poker__cta-button {
    width: 100%;
    max-width: 280px;
  }

  .page-online-poker__hero-section .page-online-poker__hero-image img,
  .page-online-poker__game-card .page-online-poker__game-image,
  .page-online-poker__app-image-wrapper .page-online-poker__app-image,
  .page-online-poker__promotions-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-online-poker__hero-section {
    padding-bottom: 40px;
  }

  .page-online-poker__hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }

  .page-online-poker__hero-description {
    font-size: 0.9rem;
  }

  .page-online-poker__section {
    padding: 40px 0;
  }

  .page-online-poker__section-title {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }

  .page-online-poker__section-text {
    font-size: 0.9rem;
  }
}