.page-container header,
header[style] {
  background: var(--color-text-primary) !important;
  border: none !important;
  padding: 16px 20px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
@media (min-width: 768px) {
  .page-container header,
  header[style] {
    padding: 20px 40px !important;
  }
}
.page-container header .header-content,
header[style] .header-content {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
}
.page-container header .logo img,
header[style] .logo img {
  height: 40px !important;
  width: auto !important;
}
@media (min-width: 768px) {
  .page-container header .logo img,
  header[style] .logo img {
    height: 48px !important;
  }
}
.page-container header .login p,
header[style] .login p {
  margin: 0 !important;
  font-family: var(--font-outfit) !important;
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
@media (min-width: 768px) {
  .page-container header .login p,
  header[style] .login p {
    font-size: 18px !important;
  }
}
.page-container header .login a,
header[style] .login a {
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: underline !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  font-family: var(--font-outfit) !important;
  transition: color 0.2s !important;
}
@media (min-width: 768px) {
  .page-container header .login a,
  header[style] .login a {
    font-size: 18px !important;
  }
}
.page-container header .login a:hover,
header[style] .login a:hover {
  color: #fff !important;
}

.menu-container {
  display: none;
}

.menu {
  display: none;
  background: rgba(29, 29, 29, 0.98) !important;
}
.menu a {
  color: rgba(255, 255, 255, 0.9) !important;
  font-family: var(--font-outfit) !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}
.menu a:hover {
  color: var(--color-brand-secondary) !important;
}

.page-container {
  font-family: var(--font-outfit);
  background: var(--color-background-primary);
}
.page-container footer {
  background: var(--color-text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 32px 20px;
  text-align: center;
  font-family: var(--font-outfit);
  font-size: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .page-container footer {
    font-size: 18px;
  }
}

.user-agreement {
  font-family: var(--font-outfit);
  color: var(--color-text-primary);
  background: var(--color-background-primary);
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .user-agreement {
    padding: 60px 40px 80px;
  }
}
.user-agreement h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .user-agreement h1 {
    font-size: 44px;
    margin-bottom: 24px;
  }
}
.user-agreement h1.allText {
  text-align: center;
  margin-bottom: 32px;
}
.user-agreement h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .user-agreement h3 {
    font-size: 28px;
  }
}

/* Fraud protection page - maintain h3 visual style on h1 for SEO */
.fraud-protection h1.fraud-h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: 32px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .fraud-protection h1.fraud-h3 {
    font-size: 28px;
  }
}

/* Fraud protection page - new h2 sections (scoped to fraud-protection only) */
.fraud-protection h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: 40px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .fraud-protection h2 {
    font-size: 26px;
  }
}

.user-agreement h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-top: 24px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .user-agreement h4 {
    font-size: 22px;
  }
}
.user-agreement p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .user-agreement p {
    font-size: 18px;
  }
}
.user-agreement p strong {
  font-weight: 700;
  color: var(--color-text-primary);
}
.user-agreement p i {
  font-style: italic;
}
.user-agreement p.spaced {
  margin-top: 24px;
}
.user-agreement p.top-spaced {
  margin-top: 24px;
}
.user-agreement ol {
  counter-reset: item;
  list-style: none;
  padding-left: 32px;
  margin: 24px 0;
}
.user-agreement ol.padding {
  padding-left: 48px;
}
.user-agreement ol > li {
  counter-increment: item;
  margin-bottom: 32px;
  position: relative;
  padding-left: 8px;
}
.user-agreement ol > li::before {
  content: counter(item) ". ";
  font-weight: 700;
  font-size: 20px;
  color: var(--color-brand-secondary);
  position: absolute;
  left: -32px;
}
@media (min-width: 768px) {
  .user-agreement ol > li::before {
    font-size: 22px;
  }
}
.user-agreement ol.roman {
  list-style-type: lower-roman;
  padding-left: 40px;
  margin: 16px 0;
}
.user-agreement ol.roman li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .user-agreement ol.roman li {
    font-size: 18px;
  }
}
.user-agreement ol.roman li::before {
  display: none;
}
.user-agreement ul {
  list-style: disc;
  padding-left: 40px;
  margin: 16px 0;
}
.user-agreement ul li {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-secondary);
}
@media (min-width: 768px) {
  .user-agreement ul li {
    font-size: 18px;
  }
}
.user-agreement a {
  color: var(--color-brand-secondary);
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s ease;
}
.user-agreement a:hover {
  color: var(--color-brand);
}
.user-agreement a.ppLink {
  color: var(--color-brand-secondary);
  font-weight: 600;
}
.user-agreement .block_20 {
  display: block;
  margin-left: 20px;
  line-height: 1.8;
}
.user-agreement .center {
  text-align: center;
  margin: 40px 0;
  padding: 24px;
  background: var(--color-background-secondary);
  border-radius: 12px;
  font-weight: 700;
}
.user-agreement br {
  line-height: 2;
}

/*# sourceMappingURL=legal.css.map */
