/* style/blog-vip777-guide.css */
.page-blog-vip777-guide {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main from custom colors, for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css #0A0A0A */
}

.page-blog-vip777-guide__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* First section specific padding top */
.page-blog-vip777-guide__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #FFF6D6;
  max-width: none; /* Hero section can be full width */
  margin: 0;
}

.page-blog-vip777-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: relative; /* Not absolute, for "image above text" */
  margin-bottom: 30px; /* Space between image and content */
  border-radius: 8px;
}

.page-blog-vip777-guide__hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 1;
  margin-top: -80px; /* Pull content slightly up to overlap hero image, but not over text */
  position: relative;
}

.page-blog-vip777-guide__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #FFD36B; /* Glow color for main title */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-blog-vip777-guide__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-blog-vip777-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-vip777-guide__btn-primary,
.page-blog-vip777-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* For mobile button text wrap */
  word-wrap: break-word; /* For mobile button text wrap */
}

.page-blog-vip777-guide__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Custom button color */
  color: #111111; /* Dark text for bright button */
  border: none;
}

.page-blog-vip777-guide__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-blog-vip777-guide__btn-secondary {
  background: #111111; /* Card BG */
  color: #FFD36B; /* Glow color for text */
  border: 2px solid #F2C14E; /* Main color for border */
}

.page-blog-vip777-guide__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
  border-color: #F2C14E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-vip777-guide__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Main color for section titles */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}