body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #0a0f1c;
    color: #e0e0e0;
}

.hero {
    height: 100vh;
    background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero span {
    color: #00e5ff;
}

.btn {
    background: #00e5ff;
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 30px;
    font-weight: bold;
}

section {
    padding: 60px 10%;
}

.skills .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.skills div, .project {
    background: #11172b;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.skills div:hover, .project:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px #00e5ff50;
}

form input, form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    background: #111;
    border: none;
    color: #fff;
}

form button {
    background: #00e5ff;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background: #050816;
    text-align: center;
    padding: 20px;
}

@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

#terminal {
    position: fixed;
    inset: 0;
    background: #000;
    color: #00ff9c;
    font-family: 'Share Tech Mono', monospace;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.terminal-content {
    width: 80%;
    max-width: 800px;
    font-size: 18px;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* Hide portfolio initially */
body.loaded #terminal {
    display: none;
}

/* Hacker glow effect */
.hero, section, .project, .skills div {
    box-shadow: 0 0 15px #00e5ff20;
}

/* Terminal green accents */
h1 span, h2 {
    color: #00ff9c;
}

#matrix {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: black;
}
