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

body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e;
  color: #dadada;
  text-align: center;
  line-height: 1.6;
}

header {
  background-image: url('https://wallpapers.com/images/high/rust-game-jlqbnhsif4pp5r9g.webp');
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 20px;
  position: relative;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

header > * {
  position: relative;
  z-index: 2;
}

header h1, header p, .tagline, .subtagline {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.tagline {
  font-size: 1.2rem;
  color: #ff914d;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8); /* Adds contrast */
  margin-top: 15px;
}

.subtagline {
  font-size: 1rem;
  color: #e0e0e0;
  max-width: 600px;
  margin: 10px auto 0;
}

section {
  padding: 40px 20px;
  max-width: 800px;
  margin: auto;
  background-color: #222;
}

h2 {
  color: #d2691e;
  margin-bottom: 10px;
}

.button {
  display: inline-block;
  margin: 15px 10px;
  padding: 10px 22px;
  background-color: #d2691e;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.feature-list {
  list-style-type: '🔹 ';
  padding-left: 0;
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
}
.feature-list li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.button:hover {
  background-color: #b2571a;
  box-shadow: 0 0 10px #d2691e;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .button {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}

footer {
  background-color: #111;
  padding: 20px;
  font-size: 0.9rem;
  color: #888;
}

footer a {
  color: #888;
  text-decoration: underline;
}

footer a:hover {
  color: #ccc;
}