/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Code', monospace;
}

body {
    background: #0d0d0d;
    color: #fff;
}

header {
    background: rgba(10, 10, 10, 0.95);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #0ff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #0ff;
    text-shadow: 0 0 10px #0ff;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
}

.hero-content {
    flex: 1 1 500px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.neon-text {
    color: #0ff;
    text-shadow:
        0 0 5px #0ff,
        0 0 10px #0ff,
        0 0 20px #0ff,
        0 0 40px #0ff;
}

.cursor {
    display: inline-block;
    width: 10px;
    background-color: #0ff;
    margin-left: 2px;
    animation: blink 1s step-start infinite;
}

@keyframes blink {
    50% { background-color: transparent; }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #0ff;
}

.download-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border: 2px solid #0ff;
    border-radius: 30px;
    cursor: pointer;
    color: #0ff;
    background: transparent;
    text-transform: uppercase;
    transition: 0.3s;
    box-shadow: 0 0 10px #0ff;
}

.download-btn:hover {
    background: #0ff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 15px;
    border: 3px solid #0ff;
    box-shadow: 0 0 20px #0ff;
}

.features {
    padding: 4rem 2rem;
    text-align: center;
}

.neon-heading {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #0ff;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.card {
    background: #111;
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    border: 2px solid #0ff;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px #0ff;
}

.card img {
    width: 80px;
    margin-bottom: 1rem;
}

.download {
    padding: 4rem 2rem;
    text-align: center;
}

.download-buttons button {
    margin: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid #0ff;
    border-radius: 25px;
    cursor: pointer;
    color: #0ff;
    background: transparent;
    transition: 0.3s;
    box-shadow: 0 0 10px #0ff;
}

.download-buttons button:hover {
    background: #0ff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}

.terminal-console {
    margin-top: 2rem;
    background: #000;
    border: 2px solid #0ff;
    border-radius: 10px;
    padding: 1rem;
    min-height: 150px;
    font-family: 'Fira Code', monospace;
    color: #0ff;
    box-shadow: 0 0 20px #0ff inset;
    overflow-y: auto;
}

.contact {
    padding: 4rem 2rem;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact input, 
.contact textarea {
    padding: 0.8rem;
    border-radius: 10px;
    border: 2px solid #0ff;
    background: transparent;
    color: #0ff;
    outline: none;
    resize: none;
}

.contact input::placeholder, 
.contact textarea::placeholder {
    color: #0ff;
}

.contact button {
    padding: 0.8rem 1.5rem;
    border: 2px solid #0ff;
    border-radius: 25px;
    background: transparent;
    color: #0ff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 10px #0ff;
}

.contact button:hover {
    background: #0ff;
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
}

footer {
    background: #111;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #0ff;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
}
