/* Fonts & Base */
body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  color: #eee;
  background: url('forsaken-bg.jpg') center/cover no-repeat fixed;
  overflow-x: hidden;
  position: relative;
}

/* Dark overlay for contrast */
.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

/* Header */
header {
  text-align: center;
  padding: 40px 10px 20px;
  border-bottom: 2px solid crimson;
  background: rgba(10, 10, 10, 0.6);
}

h1 {
  color: crimson;
  font-size: 4em;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 0 0 10px crimson;
}

.subtitle {
  color: #aaa;
  margin-top: 5px;
  font-size: 1.2em;
}

/* Navigation */
nav {
  margin-top: 20px;
}

nav a {
  color: #ccc;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s, text-shadow 0.3s;
}

nav a:hover, nav a.active {
  color: crimson;
  text-shadow: 0 0 8px crimson;
}

/* Main content */
section {
  text-align: center;
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.5);
  margin: 40px auto;
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.2);
}

section h2 {
  color: crimson;
  font-size: 2em;
  margin-bottom: 20px;
}

section p {
  color: #ccc;
  line-height: 1.6;
  font-size: 1.1em;
}

/* Button */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: crimson;
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: darkred;
  transform: scale(1.05);
}

/* Image section */
#media img {
  width: 90%;
  max-width: 800px;
  border: 3px solid crimson;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(220, 20, 60, 0.5);
}

/* Footer */
footer {
  background: #111;
  padding: 15px;
  font-size: 0.9em;
  border-top: 2px solid crimson;
  text-align: center;
}
