@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&family=Press+Start+2P&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #fff;
}

header {
  background: #ff6600;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

header h1 {
  font-family: 'Press Start 2P', cursive;
  font-size: 24px;
  margin: 0;
  color: #fff;
}

nav {
  margin-top: 10px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #000;
}

section {
  padding: 50px;
  text-align: center;
}

.hero {
  background: url('assets/images/bg-geometry.jpg') no-repeat center center/cover;
  padding: 100px 20px;
  color: #fff;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.hero h2 {
  font-size: 36px;
  color: #00ffe1;
  text-shadow: 0 0 10px #00ffe1;
}

.hero p {
  font-size: 20px;
  color: #fff;
  text-shadow: 0 0 5px #000;
}

button, a.button {
  background: #00ffe1;
  color: #000;
  padding: 12px 25px;
  margin-top: 20px;
  text-decoration: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,255,225,0.5);
  transition: all 0.3s ease;
  font-weight: bold;
}

button:hover, a.button:hover {
  background: #00ccaa;
  transform: scale(1.05);
}

footer {
  background: #111;
  text-align: center;
  padding: 15px;
  color: #888;
  font-size: 14px;
}

img {
  border-radius: 10px;
  border: 2px solid #00ffe1;
  margin: 10px auto;
  max-width: 100%;
}
