
body { font-family: sans-serif; margin: 0; background: #111; color: #fff; }
header { display: flex; justify-content: space-between; align-items: center; padding: 1em; background: #000; }
.logo { height: 50px; }
nav a { color: white; margin: 0 1em; text-decoration: none; font-weight: bold; }
.hero { text-align: center; padding: 5em 1em; background: linear-gradient(to right, #0f0c29, #302b63, #24243e); }
.hero h1 { font-size: 3em; margin-bottom: 1em; }
.button { background: #00f; padding: 0.75em 1.5em; color: #fff; border: none; margin: 0.5em; text-decoration: none; font-weight: bold; }
.button.secondary { background: #999; }
.gallery { display: flex; flex-wrap: wrap; gap: 1em; padding: 2em; justify-content: center; }
.gallery img { height: 200px; object-fit: cover; border-radius: 10px; }
.hover-glow:hover { box-shadow: 0 0 20px 5px #0ff; transform: scale(1.05); transition: 0.3s; }
.hover-minimal:hover { opacity: 0.85; transform: scale(1.03); transition: 0.3s; }
