@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700&family=Montserrat:wght@500&display=swap');

body {
  background: #fff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.center-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: unset;
  margin-top: 0;
}

.logo {
  display: block;
  margin-top: 48px;
  max-width: 180px;
  height: auto;
}

.site-name {
  display: block;
  font-family: 'League Spartan', Arial, sans-serif;
  font-size: 3.2rem;
  letter-spacing: 0.01em;
  color: #222;
  margin-top: 32px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.05;
}

.site-subtext {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  color: #888;
  margin-top: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

.simple-links {
  margin-top: 28px;
  text-align: center;
  font-size: 1.08rem;
}
.simple-links a {
  color: #444;
  text-decoration: none;
  margin: 0 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.18s;
}
.simple-links a:hover {
  color: #e75480;
}
.simple-links .divider {
  color: #bbb;
  margin: 0 4px;
}

.legal-section {
  max-width: 540px;
  margin: 40px auto 0 auto;
  padding: 32px 20px 40px 20px;
  background: #faf9f7;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  text-align: left;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.8;
}
.legal-section h2 {
  font-family: 'League Spartan', Arial, sans-serif;
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #222;
  text-align: center;
  letter-spacing: 0.01em;
}
.legal-section h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  margin-top: 2.5em;
  margin-bottom: 0.7em;
  color: #e75480;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.legal-section p {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #111;
  margin-bottom: 1.3em;
  line-height: 1.8;
}
.legal-section ul {
  margin: 0 0 1.3em 1.2em;
  padding: 0;
  list-style: disc inside;
}
.legal-section li {
  margin-bottom: 0.3em;
  font-size: 1.05rem;
  color: #222;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
}
.legal-section a {
  color: #e75480;
  text-decoration: underline;
  transition: color 0.18s;
}
.legal-section a:hover {
  color: #c43a65;
}

.center-logo.legal {
  min-height: 0;
  margin-top: 32px;
}
.center-logo.legal .logo {
  max-width: 110px;
  margin-top: 12px;
}
.center-logo.legal .site-name {
  font-size: 1.6rem;
  margin-top: 16px;
}

.legal-footer {
  text-align: center;
  margin-top: 40px;
  padding: 18px 0 8px 0;
  color: #aaa;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.privacy-lead {
  font-size: 1.22rem;
  font-weight: 700;
  color: #e75480;
  margin: 0 0 1.5em 0;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
}

.center-logo a.logo-link {
  display: inline-block;
  position: relative;
}
.center-logo a.logo-link .logo {
  transition: none;
}
.center-logo a.logo-link:hover .logo {
  transform: none;
  box-shadow: none;
}
.center-logo a.logo-link:hover::after {
  content: 'Back to Home';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 8px;
  white-space: nowrap;
  opacity: 0.92;
  pointer-events: none;
  z-index: 10;
}

.legal-footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 8px;
}
.legal-footer .footer-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.legal-footer .footer-links a:hover {
  color: #e75480;
  text-decoration: underline;
}