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

:root {
  --red: #e31b23;
  --black: #1a1a1a;
  --white: #ffffff;
}

html {
  height: 100%;
}

body {
  font-family: Impact, "Arial Narrow", "Helvetica Neue", Haettenschweiler, "Franklin Gothic Bold", Charcoal, sans-serif;
  background: var(--white);
  color: var(--black);
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site {
  text-align: center;
  padding: 2rem;
  max-width: 600px;
}

.logo {
  width: 280px;
  max-width: 80%;
  height: auto;
  margin-bottom: 2rem;
}

h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}

.tagline {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.links a {
  color: var(--red);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
}

.links a:hover {
  color: var(--black);
}

.lang-toggle {
  margin-top: 2rem;
}

.lang-toggle a {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
}

.lang-toggle a:hover {
  color: var(--black);
}
