@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bruno+Ace+SC&display=swap');

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

body {
  background: url('title-screen.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Share Tech Mono', monospace;
  color: #d4b48f;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 0, 0, 0.75);
  z-index: 0;
}

header, main, footer {
  position: relative;
  z-index: 1;
}

header {
  text-align: center;
  padding: 60px 0 30px;
}

header h1 {
  font-size: 5rem;
  color: #ff4400;
  text-shadow: 0 0 10px #800000;
}

.tagline {
  font-size: 1.2rem;
  color: #c9a97c;
  margin-top: 10px;
}

.hero-image {
  text-align: center;
  margin: 40px 0;
}

.hero-image img {
  max-width: 100%;
  border: 5px solid #552200;
  box-shadow: 0 0 30px #a01010;
}

.features {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(40, 0, 0, 0.7);
  border: 2px solid #660000;
  box-shadow: 0 0 15px #aa2222;
}

.features2 {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(40, 0, 0, 0.7);
  border: 2px solid #660000;
  box-shadow: 0 0 15px #aa2222;
}

.features h2 {
  font-size: 2.2rem;
  color: #ff3300;
  margin-bottom: 20px;
  text-align: center;
}

.features ul {
  list-style: none;
}

.features li {
  padding: 12px;
  border-bottom: 1px solid #3d1a1a;
}

.cta {
  text-align: center;
  margin-top: 40px;
}

.button {
  background-color: #800000;
  color: #fff;
  padding: 15px 35px;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 6px;
  border: 2px solid #ff2200;
  box-shadow: 0 0 10px #ff3300;
  transition: background 0.3s ease;
  font-family: 'Share Tech Mono', monospace;
}

.button:hover {
  background-color: #b30000;
}

footer {
  text-align: center;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #744;
  z-index: 1;
}
