@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    background: #050505;
    color: #e0e0e0;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 30px;
    background: #0d0d0d;
    border-bottom: 1px solid #00eaff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.navbar ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

.navbar a {
    color: #00eaff;
    text-decoration: none;
    transition: 0.3s;
}

.navbar a:hover {
    text-shadow: 0 0 10px #00eaff;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #0a0a0a, #000);
}

.hero.small {
    height: 40vh;
}

.glow {
    font-size: 3.5rem;
    color: #00eaff;
    text-shadow: 0 0 20px #00eaff;
}

.subtitle {
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn {
    padding: 12px 30px;
    background: #00eaff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    box-shadow: 0 0 15px #00eaff;
    transition: 0.3s;
}

.btn:hover {
    box-shadow: 0 0 25px #00eaff;
}

/* CONTENT */
.content {
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

/* CARDS */
.cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: #111;
    padding: 20px;
    width: 250px;
    border: 1px solid #00eaff;
    border-radius: 10px;
    box-shadow: 0 0 15px #00eaff33;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px #00eaffaa;
}

/* BLOG POSTS */
.post {
    background: #111;
    padding: 20px;
    border-left: 3px solid #00eaff;
    margin-bottom: 20px;
}

/* COMENZI */
.commands li {
    background: #111;
    padding: 15px;
    margin-bottom: 10px;
    border-left: 3px solid #00eaff;
}

/* CONTACT FORM */
.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: auto;
}

input, textarea {
    padding: 12px;
    background: #0d0d0d;
    border: 1px solid #00eaff;
    color: white;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0d0d0d;
    border-top: 1px solid #00eaff;
}