/* style/blog-f169-info-live-casino-guide.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --border-color: #e0e0e0;
  --login-button-color: #EA7C07; /* Custom color for login */
}

.page-blog-f169-info-live-casino-guide {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light body background */
  background: var(--background-light); /* Assuming a light background for body */
}

/* HERO Section */
.page-blog-f169-info-live-casino-guide__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 margin, body padding-top handles header offset */
  background: linear-gradient(135deg, #e0f2f7, #c1e4f2); /* Light gradient background for hero section */
  color: var(--text-dark);
}

.page-blog-f169-info-live-casino-guide__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%; /* Ensure full width on desktop */
}

.page-blog-f169-info-live-casino-guide__hero-image {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-f169-info-live-casino-guide__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  filter: none; /* Explicitly disable any filter */
}

.page-blog-f169-info-live-casino-guide__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

.page-blog-f169-info-live-casino-guide__hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-f169-info-live-casino-guide__hero-content p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button - Primary Style */
.page-blog-f169-info-live-casino-guide__cta-button,
.page-blog-f169-info-live-casino-guide__btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsive button width */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-f169-info-live-casino-guide__cta-button:hover,
.page-blog-f169-info-live-casino-guide__btn-primary:hover {
  background: var(--login-button-color); /* Using custom login color for hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}