/* style/betting-games-poker-chess.css */
.page-betting-games-poker-chess {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-betting-games-poker-chess__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-betting-games-poker-chess__hero {
  background: linear-gradient(135deg, #007bff, #4da3ff); /* Adjusted gradient for better contrast */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-games-poker-chess__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: page-betting-games-poker-chess__pulse 15s infinite ease-out;
}

@keyframes page-betting-games-poker-chess__pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

.page-betting-games-poker-chess__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
  color: #fff; /* Ensure high contrast */
}

.page-betting-games-poker-chess__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  color: #e0e0e0; /* Slightly lighter for contrast */
}

.page-betting-games-poker-chess__section {
  padding: 60px 0;
}

.page-betting-games-poker-chess__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Darker blue for headings */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-betting-games-poker-chess__section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-betting-games-poker-chess__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
}

.page-betting-games-poker-chess__btn--primary {
  background-color: #ffc107; /* Auxiliary color */
  color: #333; /* Dark text for high contrast */
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-betting-games-poker-chess__btn--primary:hover {
  background-color: #e0a800; /* Darker yellow on hover */
  transform: translateY(-2px);
}

.page-betting-games-poker-chess__btn--secondary {
  background-color: #007bff; /* Main color */
  color: #fff;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
  border: 1px solid #007bff;
}

.page-betting-games-poker-chess__btn--secondary:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px);
}

.page-betting-games-poker-chess__btn--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-betting-games-poker-chess__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin: 15px;
}

.page-betting-games-poker-chess__about-xibet {
  background-color: #fff;
}

.page-betting-games-poker-chess__content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-betting-games-poker-chess__text-content {
  flex: 1;
  min-width: 300px;
}

.page-betting-games-poker-chess__text-content p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05em;
}

.page-betting-games-poker-chess__image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-betting-games-poker-chess__img--responsive {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-betting-games-poker-chess__game-types {
  background-color: #f0f4f8;
}

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

.page-betting-games-poker-chess__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-betting-games-poker-chess__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-betting-games-poker-chess__card-img {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-betting-games-poker-chess__card-title {
  font-size: 1.8em;
  color: #007bff; /* Main brand color for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-games-poker-chess__card-text {
  color: #555;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-betting-games-poker-chess__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  text-align: left;
  color: #444;
}

.page-betting-games-poker-chess__list li {
  padding: 5px 0;
  border-bottom: 1px dashed #eee;
}

.page-betting-games-poker-chess__list li:last-child {
  border-bottom: none;
}

.page-betting-games-poker-chess__why-choose {
  background-color: #fff;
}

.page-betting-games-poker-chess__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-betting-games-poker-chess__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-top: 5px solid #007bff; /* Accent border */
}

.page-betting-games-poker-chess__feature-item:hover {
  transform: translateY(-5px);
}

.page-betting-games-poker-chess__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.page-betting-games-poker-chess__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-betting-games-poker-chess__feature-text {
  color: #666;
  font-size: 0.95em;
}

.page-betting-games-poker-chess__how-to-join {
  background-color: #f0f4f8;
}

.page-betting-games-poker-chess__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-betting-games-poker-chess__step-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-betting-games-poker-chess__step-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffc107; /* Auxiliary color */
  color: #333;
  padding: 10px 15px;
  border-bottom-right-radius: 10px;
  font-weight: bold;
  font-size: 1.2em;
}

.page-betting-games-poker-chess__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-top: 40px; /* Space for number */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-games-poker-chess__step-text {
  color: #666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-betting-games-poker-chess__strategy-tips {
  background-color: #fff;
}

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

.page-betting-games-poker-chess__strategy-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ffc107; /* Accent border */
}

.page-betting-games-poker-chess__strategy-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-betting-games-poker-chess__strategy-text {
  color: #666;
  font-size: 0.95em;
}

.page-betting-games-poker-chess__responsible-gambling {
  background-color: #f0f4f8;
}

.page-betting-games-poker-chess__responsible-gambling .page-betting-games-poker-chess__content-grid {
  flex-direction: row-reverse; /* Image on right */
}

.page-betting-games-poker-chess__responsible-gambling .page-betting-games-poker-chess__text-content p {
  margin-bottom: 20px;
}

.page-betting-games-poker-chess__cta {
  background: linear-gradient(90deg, #007bff, #0056b3); /* Darker gradient for CTA */
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-betting-games-poker-chess__cta .page-betting-games-poker-chess__section-title {
  color: #fff;
  font-size: 2.8em;
}

.page-betting-games-poker-chess__cta .page-betting-games-poker-chess__section-description {
  color: #e0e0e0;
  margin-bottom: 30px;
}

/* Utility classes */
.page-betting-games-poker-chess .highlight {
  color: #ffc107; /* Auxiliary color for highlighting */
}

.page-betting-games-poker-chess .strong-keyword {
  font-weight: bold;
  color: #0056b3; /* Darker blue for keyword emphasis */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-betting-games-poker-chess__title {
    font-size: 2.8em;
  }
  .page-betting-games-poker-chess__subtitle {
    font-size: 1.3em;
  }
  .page-betting-games-poker-chess__section-title {
    font-size: 2em;
  }
  .page-betting-games-poker-chess__content-grid {
    flex-direction: column;
  }
  .page-betting-games-poker-chess__responsible-gambling .page-betting-games-poker-chess__content-grid {
    flex-direction: column;
  }
  .page-betting-games-poker-chess__cta .page-betting-games-poker-chess__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-betting-games-poker-chess__hero {
    padding: 80px 0;
  }
  .page-betting-games-poker-chess__title {
    font-size: 2.2em;
  }
  .page-betting-games-poker-chess__subtitle {
    font-size: 1.1em;
  }
  .page-betting-games-poker-chess__section {
    padding: 40px 0;
  }
  .page-betting-games-poker-chess__section-title {
    font-size: 1.8em;
  }
  .page-betting-games-poker-chess__game-cards,
  .page-betting-games-poker-chess__feature-grid,
  .page-betting-games-poker-chess__steps,
  .page-betting-games-poker-chess__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-betting-games-poker-chess__btn--large {
    display: block;
    width: calc(100% - 30px); /* Adjust for padding */
    margin: 15px auto;
  }
}

@media (max-width: 480px) {
  .page-betting-games-poker-chess__title {
    font-size: 1.8em;
  }
  .page-betting-games-poker-chess__subtitle {
    font-size: 1em;
  }
  .page-betting-games-poker-chess__section-title {
    font-size: 1.5em;
  }
  .page-betting-games-poker-chess__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-betting-games-poker-chess__card-img {
    height: 150px;
  }
  .page-betting-games-poker-chess__cta .page-betting-games-poker-chess__section-title {
    font-size: 1.8em;
  }
}