/* style/w88-security-guide.css */

:root {
  --page-primary-color: #017439;
  --page-secondary-color: #FFFFFF;
  --page-text-dark: #333333;
  --page-text-light: #ffffff;
  --page-link-color: #017439;
  --page-link-hover-color: #005a2d;
  --page-register-btn-bg: #C30808;
  --page-login-btn-bg: #C30808;
  --page-btn-text-color: #FFFF00;
  --page-card-bg-light: #ffffff;
  --page-card-text-dark: #333333;
}

.page-w88-security-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-light); /* Default for dark body background */
  background-color: transparent; /* Inherit from body or shared.css */
}

.page-w88-security-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-w88-security-guide__section {
  padding: 60px 0;
  position: relative;
}

.page-w88-security-guide__dark-bg {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
}

.page-w88-security-guide__light-bg {
  background-color: var(--page-secondary-color);
  color: var(--page-text-dark);
}

.page-w88-security-guide__section-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-w88-security-guide__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: inherit;
}

.page-w88-security-guide__inline-link {
  color: var(--page-link-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-w88-security-guide__inline-link:hover {
  color: var(--page-link-hover-color);
  text-decoration: none;
}

/* Hero Section */
.page-w88-security-guide__hero-section {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
  background-color: var(--page-primary-color); /* Fallback for video or if video doesn't cover */
}

.page-w88-security-guide__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-w88-security-guide__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.page-w88-security-guide__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 1;
}

.page-w88-security-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: var(--page-text-light);
}}