/* style/blog-most-popular-online-casino-games-2024.css */
.page-blog-most-popular-online-casino-games-2024 {
  color: #ffffff; /* Body background is dark (#1a1a2e), so text should be light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Ensure consistency with shared body background */
}

.page-blog-most-popular-online-casino-games-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-most-popular-online-casino-games-2024__section {
  padding: 60px 0;
}

.page-blog-most-popular-online-casino-games-2024__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  position: relative;
  overflow: hidden;
}

.page-blog-most-popular-online-casino-games-2024__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-blog-most-popular-online-casino-games-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-blog-most-popular-online-casino-games-2024__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  width: 100%;
  max-width: 800px;
  margin-top: -100px; /* Pull up over image slightly, but not covering text */
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
}

.page-blog-most-popular-online-casino-games-2024__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-most-popular-online-casino-games-2024__intro-text {
  font-size: 1.1rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-most-popular-online-casino-games-2024__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-most-popular-online-casino-games-2024__btn-primary,
.page-blog-most-popular-online-casino-games-2024__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-most-popular-online-casino-games-2024__btn-primary {
  background-color: #C30808; /* Register color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-blog-most-popular-online-casino-games-2024__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

.page-blog-most-popular-online-casino-games-2024__btn-secondary {
  background-color: transparent;
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808; /* Use Register color for border */
}

.page-blog-most-popular-online-casino-games-2024__btn-secondary:hover {
  background-color: #C30808;
  color: #ffffff;
  transform: translateY(-2px);
}