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

.page-online-poker__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 10px; /* Small top padding to prevent content being hidden by fixed header */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-online-poker__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure hero image doesn't stretch too wide on very large screens */
  margin-bottom: 30px;
}

.page-online-poker__hero-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

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

.page-online-poker__main-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Main brand color for titles */
  margin-bottom: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #FFD36B, 0 0 20px rgba(242, 193, 78, 0.5); /* Glow effect */
}

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

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

.page-online-poker__button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.page-online-poker__button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button */
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-online-poker__button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-online-poker__button--secondary {
  background-color: #111111;
  color: #FFD36B;
  border: 2px solid #FFD36B;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.2);
}

.page-online-poker__button--secondary:hover {
  background-color: #FFD36B;
  color: #111111;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.4);
}

.page-online-poker__button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 25px;
}

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

.page-online-poker__section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #F2C14E;
  text-align: center;
  margin-bottom: 30px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-online-poker__text-content {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-online-poker__keyword-highlight {
  color: #FFD36B;
  font-weight: bold;
}

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

.page-online-poker__card {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-online-poker__card-text {
  font-size: 0.95rem;
  color: #FFF6D6;
  flex-grow: 1; /* Ensures text takes up available space for consistent card height */
}

.page-online-poker__card-text a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-online-poker__card-text a:hover {
  color: #FFD36B;
}

.page-online-poker__card-image {
  width: 100%; /* Ensures image fills card width */
  height: auto;
  min-height: 200px; /* Minimum image size */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #3A2A12;
}

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

.page-online-poker__list-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.page-online-poker__list-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 10px;
}

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

.page-online-poker__strategy-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 20px;
  color: #FFF6D6;
}

.page-online-poker__strategy-list .page-online-poker__list-item {
  background-color: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin-bottom: 15px;
  text-align: left;
}

.page-online-poker__strategy-list .page-online-poker__list-title {
  color: #FFD36B;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.page-online-poker__action-center,
.page-online-poker__cta-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

  .page-online-poker__section-title {
    font-size: 1.7rem;
  }

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

  .page-online-poker__button {
    width: 100%;
    max-width: 300px;
  }

  .page-online-poker__features-grid,
  .page-online-poker__variants-grid,
  .page-online-poker__step-list {
    grid-template-columns: 1fr;
  }

  /* Mobile overflow prevention */
  .page-online-poker img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-online-poker__hero-section,
  .page-online-poker__content-block {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-online-poker__section-title {
    font-size: 1.5rem;
  }
}