/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Orbitron', sans-serif;
  background-color: #0a0a0a;
  color: #fff;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 10;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  width: 150px;
  margin-right: 10px;
}
.logo h1 {
  font-size: 24px;
  color: #ff00cc;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 30px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #ff00cc;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('cyberpunk-bg.png') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero h2 {
  font-size: 48px;
  color: #fff;
  text-shadow: 0 0 10px #ff00cc;
  margin-bottom: 30px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn {
  padding: 15px 30px;
  background-color: transparent;
  border: 2px solid #ff00cc;
  color: #ff00cc;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #ff00cc;
  color: #000;
}