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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #0a0a0a;
  color: white;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  z-index: 100;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #e50914;
  letter-spacing: 3px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
  font-size: 18px;
}

nav a:hover {
  color: #e50914;
}

.hero {
  height: 100vh;
  background: url('https://i.ibb.co/TcZzxX3/ww2-bg.jpg') no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
}

.content {
  position: relative;
  z-index: 1;
}

.content h1 {
  font-size: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.content p {
  font-size: 20px;
  margin-bottom: 40px;
  color: #ccc;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #e50914;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s;
  font-weight: bold;
  letter-spacing: 1px;
}

.btn:hover {
  background: #b0060f;
}