:root {
  --purple-bg: #5b2a7e;
  --text-light: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.72);
  --font-brand: "Baloo 2", system-ui, sans-serif;
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--purple-bg);
  color: var(--text-light);
  font-family: var(--font-brand);
  text-align: center;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.logo {
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  transform: skewX(-6deg);
}

.footer {
  padding: 2rem 1.5rem 2rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer__contact {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.footer__contact a {
  color: var(--text-light);
  text-decoration: none;
  margin: 0 0.75rem;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__links {
  font-size: 0.8rem;
}

.footer__links a {
  color: var(--text-muted);
  text-decoration: none;
  margin: 0 0.75rem;
}

.footer__links a:hover {
  color: var(--text-light);
  text-decoration: underline;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* --- Yasal sayfalar (privacy, terms) --- */

.legal {
  width: min(44rem, 100%);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  text-align: left;
  line-height: 1.7;
}

.legal .back-btn {
  display: inline-block;
  background-color: var(--text-light);
  color: var(--purple-bg);
  font-size: 0.95rem;
  font-weight: 800;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  border-bottom: none;
  text-decoration: none;
  margin-bottom: 2rem;
}

.legal .back-btn:hover {
  opacity: 0.85;
}

.legal h1 {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal__updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.legal h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 2rem 0 0.75rem;
}

.legal h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 1.5rem 0 0.5rem;
}

.legal p,
.legal ul {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal ul {
  padding-left: 1.5rem;
}

.legal a {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--text-muted);
}

.legal a:hover {
  border-bottom-color: var(--text-light);
}
