/* style/blog-top-10-reliable-gaming-platforms-review.css */

/* Base styles for the page content, ensuring light text on dark body background */
.page-blog-top-10-reliable-gaming-platforms-review {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background handled by shared.css */
}

.page-blog-top-10-reliable-gaming-platforms-review__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-top-10-reliable-gaming-platforms-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #017439; /* Brand color for hero background */
  color: #ffffff;
}

.page-blog-top-10-reliable-gaming-platforms-review__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for image container */
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-blog-top-10-reliable-gaming-platforms-review__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-blog-top-10-reliable-gaming-platforms-review__hero-content {
  max-width: 900px;
  margin-top: 20px; /* Separates content from image */
}

.page-blog-top-10-reliable-gaming-platforms-review__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFF00; /* Register/Login font color for H1 to stand out */
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
}

.page-blog-top-10-reliable-gaming-platforms-review__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-top-10-reliable-gaming-platforms-review__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-top-10-reliable-gaming-platforms-review__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF0; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-blog-top-10-reliable-gaming-platforms-review__btn-primary:hover {
  background-color: #e02020;
  transform: translateY(-2px);
}