/* style/blog-how-to-safely-use-sb365-link-vao-for-online-entertainment.css */
.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment {
  font-family: 'Arial', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
  background-color: var(--background);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Adjust based on desired hero image height */
  overflow: hidden;
  margin-bottom: 30px;
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image for text readability */
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: var(--text-main);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-main);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-secondary);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__btn-primary,
.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
}

.page-blog-how-to-safely-use-sb365-link-vao-for-online-entertainment__btn-secondary {
  background: var(--card-b-g);
  color: var(--text-main);
  border: 2px solid var(--border);
}