@font-face {
  font-family: 'Futura Light';
  src: url('assets/fonts/futura-light.woff2') format('woff2'),
       url('assets/fonts/futura-light.otf') format('opentype');
}

body {
  margin: 0;
  background-color: #000;
  background-image: url("assets/img/crosses.png");
  background-repeat: repeat-y;
  background-position: center;
  background-size: auto;
  color: #e0e0e0;
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 2rem;
}

h1 {
  font-family: 'Futura Light', 'Futura'; font-size: 4rem;
  letter-spacing: 0.2em;
  color: #fff;
  position: relative;
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.subtitle {
  color: #ff4444;
  letter-spacing: 0.15em;
  font-size: 0.9rem;
}

.section-title {
  margin: 1.5em 0 0.5em 0;
  color: #ff4444;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin: 0.4em 0;
}

a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s, letter-spacing 0.3s;
}

a:hover {
  color: #ff4444;
  letter-spacing: 0.05em;
}