* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: #00ff88;
    font-family: "Courier New", monospace;
    min-height: 100vh;
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.terminal-window {
    width: 900px;
    max-width: 95%;
    background: #111;
    border: 1px solid #00ff88;
    border-radius: 12px;
    overflow: hidden;

    box-shadow:
        0 0 15px rgba(0,255,136,.3),
        0 0 50px rgba(0,255,136,.1);
}

.terminal-bar {
    background: #1c1c1c;
    padding: 12px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #00ff88;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #00ff88;
}

.terminal-body {
    padding: 2rem;
}

.prompt {
    color: #00ff88;
    margin-top: 1rem;
    margin-bottom: .5rem;
}



h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.info {
    color: #b8ffdc;
    line-height: 1.8;
}

.hero-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    color: #00ff88;
    border: 1px solid #00ff88;
    padding: .75rem 1.5rem;
    transition: all .2s ease;
}

.btn:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 15px #00ff88;
}

.project-card {
    margin-top: 1rem;
    border: 1px solid #00ff88;
    background: #111;
    padding: 1rem;
}

.project-card h3 {
    color: white;
    margin-bottom: .5rem;
}

.project-card a {
    color: #00ff88;
    text-decoration: none;
}

.project-card a:hover {
    text-shadow: 0 0 10px #00ff88;
}
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.skill-block {
    border: 1px solid #00ff88;
    padding: 1rem;
    background: #111;
    box-shadow: 0 0 10px rgba(0,255,136,0.1);
}

.skill-block h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tags span {
    border: 1px solid #00ff88;
    padding: 0.25rem 0.5rem;
    font-size: 0.85rem;
    color: #00ff88;
    border-radius: 4px;
    transition: 0.2s;
}

.tags span:hover {
    background: #00ff88;
    color: black;
    transform: translateY(-1px);
}
.email-copy {
    margin-top: 1.5rem
}
.updates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.update-entry {
    display: flex;
    gap: 1rem;
    line-height: 1.5;
}

.timestamp {
    color: #00ff88;
    min-width: 80px;
}

.update-text {
    color: #b8ffdc;
}
.terminal-footer {
    margin-top: 4rem;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid #00ff88;
    color: #b8ffdc;
}

.footer-text {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #00ff88;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    text-shadow: 0 0 8px #00ff88;
}

.dim {
    margin-top: 1rem;
    color: #444;
    font-size: 0.9rem;
}