{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --text-primary: #888888;
  --text-muted: #555555;
  --grid-size: 60px;
}

body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(136, 136, 136, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(136, 136, 136, 0.08) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  pointer-events: none;
}

#neonCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.container {
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translateY(-75px);
}

.logo {
  animation: fadeIn 1.2s ease-out;
}

.logo a {
  display: inline-block;
}

.logo img {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: brightness(1.1);
}

footer {
  position: absolute;
  bottom: calc(2rem + 75px);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  animation: fadeIn 1.2s ease-out 0.4s both;
  z-index: 1;
  text-align: center;
}

.privacy-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.privacy-link:hover {
  color: var(--text-primary);
}

.copyright {
  color: var(--text-muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .logo img {
    max-width: 280px;
  }
}

/* Privacy page specific styles */
body.privacy-page {
  justify-content: flex-start;
  padding-top: 2rem;
  overflow-y: auto;
}

body.privacy-page .container {
  transform: none;
  margin-bottom: 2rem;
}

body.privacy-page .logo img {
  max-width: 250px;
  transition: filter 0.3s ease;
}

body.privacy-page .logo a:hover img {
  filter: brightness(1.3);
}

.privacy-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
  padding: 2rem;
  animation: fadeIn 1.2s ease-out 0.2s both;
}

.privacy-content h1 {
  color: #aaaaaa;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.privacy-content h2 {
  color: #999999;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.privacy-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.privacy-content .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.privacy-content ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.privacy-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00ffff;
  opacity: 0.6;
}

.privacy-content a {
  color: #00cccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-content a:hover {
  color: #00ffff;
}

body.privacy-page footer {
  position: relative;
  bottom: auto;
  margin-top: auto;
  padding: 2rem 0;
}
