/* style/resources-b29-web-gaming-guide-registration-login-security.css */
.page-resources-b29-web-gaming-guide-registration-login-security {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, typically dark */
}

.page-resources-b29-web-gaming-guide-registration-login-security__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-section {
  position: relative;
  padding: 80px 0;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  color: #ffffff;
  text-align: center;
  background-color: #007bff; /* Primary brand color */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  filter: grayscale(50%);
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-content {
  position: relative;
  z-index: 1;
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-b29-web-gaming-guide-registration-login-security__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f8ff;
}

.page-resources-b29-web-gaming-guide-registration-login-security__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-resources-b29-web-gaming-guide-registration-login-security__cta-buttons--centered {
  margin-top: 40px;
  margin-bottom: 40px;
}

.page-resources-b29-web-gaming-guide-registration-login-security__cta-buttons--large-gap {
  gap: 30px;
}

.page-resources-b29-web-gaming-guide-registration-login-security__btn-primary,
.page-resources-b29-web-gaming-guide-registration-login-security__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}