/* style/blog-86bet-login-guide.css */
/*
  Body padding-top is handled by shared.css:
  body { padding-top: var(--header-offset); }
  This page's CSS must NOT re-apply padding-top: var(--header-offset) to its first section.
  Instead, use a small fixed padding-top (e.g., 10px) for aesthetic spacing.
*/

.page-blog-86bet-login-guide {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-86bet-login-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-86bet-login-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small fixed top padding, not var(--header-offset) */
  background-color: #08160F; /* Background */
  text-align: center;
  overflow: hidden; /* Ensure no overflow from image */
}

.page-blog-86bet-login-guide__hero-image-wrapper {
  width: 100%;
  max-width: 100%; /* Ensure image wrapper doesn't overflow */
  margin-bottom: 20px; /* Space between image and content */
}

.page-blog-86bet-login-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.page-blog-86bet-login-guide__hero-content {
  max-width: 800px;
  z-index: 1;
  color: #F2FFF6; /* Text Main */
}

.page-blog-86bet-login-guide__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* H1 font-size clamp */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-86bet-login-guide__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-86bet-login-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Button responsive */
  box-sizing: border-box; /* Button responsive */
  white-space: normal; /* Button text wrapping */
  word-wrap: break-word; /* Button text wrapping */
}

.page-blog-86bet-login-guide__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1); /* No color filter, just brightness */
}

.page-blog-86bet-login-guide__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-blog-86bet-login-guide__section:nth-of-type(even) {
  background-color: #0A4B2C; /* Deep Green for alternating sections */
}