:root {
  --color-bg: #CC6633; /* Dein Goldton */
  --color-white: #ffffff;
  --font-main: "Arial Nova", Arial, sans-serif;
  --ls-heading: 0.1em;
  --ls-body: 0.02em;
}

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

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  width: 100%;
}

img.logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

h1 {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  font-weight: 300;
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.legal-content {
  text-align: left; /* Rechtstexte liest man besser linksbündig */
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 4px;
}

.footer-links {
  margin-top: 3rem;
  font-size: 0.75rem;
}

.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  margin: 0 10px;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 0.7;
}

.back-link {
  display: inline-block;
  margin-bottom: 2rem;
  color: white;
  text-decoration: none;
  font-size: 0.8rem;
  border: 1px solid white;
  padding: 5px 15px;
}