﻿*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  min-height: 100vh;
  background: #f5eeec;
  /* background: #000 url('background1.png') center/cover no-repeat; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #ffffff;
  overflow: hidden;
}

body::before,
body::after {
  content: none;
}



#words-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  pointer-events: none;
  will-change: transform;
  opacity: 0.15;
}

.floating-word {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(0.7rem, 1.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.20;
  white-space: nowrap;
  will-change: transform;
}

main {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
  width: 100%;
  max-width: 520px;
}

.privacy-link {
  font-size: 1.2rem;
  color: #000;
  opacity: 0.8;
}

.privacy-link a {
  color: inherit;
  text-decoration: underline;
}

.privacy-link a:hover {
  opacity: 1;
}

/* Privacy Policy page */
.privacy-page body {
  background: #f5eeec;
  color: #2a2220;
  display: block;
  overflow: auto;
}

.privacy-page main {
  max-width: 680px;
  width: 100%;
  margin: 2rem auto;
  padding: 2.5rem 3rem;
  border-radius: 14px;
  background: #fdf6f4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  color: #2a2220;
}

@media (max-width: 600px) {
  .privacy-page main { padding: 1.5rem; margin: 1rem; }
}

.privacy-page h1 { margin-top: 0; font-size: 1.8rem; }
.privacy-page h2 { font-size: 1.1rem; margin-top: 2rem; }
.privacy-page p,
.privacy-page li { line-height: 1.7; opacity: 0.85; }
.privacy-page a { color: inherit; }

.privacy-page .back {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  color: #2a2220;
  background: #edddd8;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.privacy-page .back:hover {
  background: #e2ccc7;
  opacity: 1;
}
.privacy-page .updated { font-size: 0.85rem; opacity: 0.5; margin-top: 0.25rem; }




