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

.page-game-reviews-poker-game-a .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.page-game-reviews-poker-game-a .hero-section {
  background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  border-radius: 0 0 15px 15px;
  margin-bottom: 40px;
}

.page-game-reviews-poker-game-a .hero-section h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-game-reviews-poker-game-a .hero-section p {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0f2f7; /* Lighter shade for contrast */
}

/* Buttons */
.page-game-reviews-poker-game-a .btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  cursor: pointer;
  border: none;
}

.page-game-reviews-poker-game-a .btn-primary {
  background-color: #007bff;
  color: #fff;
}

.page-game-reviews-poker-game-a .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-poker-game-a .btn-secondary {
  background-color: #6c757d;
  color: #fff;
  margin-left: 15px;
}

.page-game-reviews-poker-game-a .btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-poker-game-a .cta-buttons {
  margin-top: 40px;
  text-align: center;
}

/* Content Section */
.page-game-reviews-poker-game-a .content-section {
  padding: 40px 0;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.page-game-reviews-poker-game-a .content-section h2 {
  font-size: 2.2em;
  color: #007bff;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-game-reviews-poker-game-a .content-section h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #28a745;
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-game-reviews-poker-game-a .content-section h3 {
  font-size: 1.8em;
  color: #28a745;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #007bff;
  padding-left: 15px;
}

.page-game-reviews-poker-game-a .content-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #495057;
}

.page-game-reviews-poker-game-a .content-section ul,
.page-game-reviews-poker-game-a .content-section ol {
  margin-bottom: 20px;
  padding-left: 25px;
  color: #495057;
}

.page-game-reviews-poker-game-a .content-section ul li,
.page-game-reviews-poker-game-a .content-section ol li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-reviews-poker-game-a .content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Floating CTA */
.page-game-reviews-poker-game-a .floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-game-reviews-poker-game-a .floating-cta .btn-success {
  background-color: #28a745;
  color: #fff;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
}

.page-game-reviews-poker-game-a .floating-cta .btn-success:hover {
  background-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-poker-game-a .floating-cta .icon-gift {
  margin-right: 10px;
  font-size: 1.3em;
  /* Placeholder for an actual icon font or SVG */
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-poker-game-a .hero-section h1 {
    font-size: 2.5em;
  }
  .page-game-reviews-poker-game-a .hero-section p {
    font-size: 1.1em;
  }
  .page-game-reviews-poker-game-a .content-section h2 {
    font-size: 1.8em;
  }
  .page-game-reviews-poker-game-a .content-section h3 {
    font-size: 1.5em;
  }
  .page-game-reviews-poker-game-a .btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews-poker-game-a .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-poker-game-a .cta-buttons a {
    display: block;
    width: fit-content;
    margin: 15px auto;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-poker-game-a .hero-section {
    padding: 80px 0;
  }
  .page-game-reviews-poker-game-a .hero-section h1 {
    font-size: 2em;
  }
  .page-game-reviews-poker-game-a .hero-section p {
    font-size: 1em;
  }
  .page-game-reviews-poker-game-a .content-section {
    padding: 20px 0;
  }
  .page-game-reviews-poker-game-a .content-section h2 {
    font-size: 1.6em;
  }
  .page-game-reviews-poker-game-a .content-section h3 {
    font-size: 1.3em;
  }
  .page-game-reviews-poker-game-a .content-section p {
    font-size: 0.95em;
  }
  .page-game-reviews-poker-game-a .floating-cta {
    bottom: 15px;
    right: 15px;
  }
  .page-game-reviews-poker-game-a .floating-cta .btn-success {
    padding: 12px 20px;
    font-size: 1em;
  }
}