@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #000;
    color: #00ff41;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
    overflow-x: hidden;
}
.navbar {
    background: #000;
    padding: 0.5em 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px #00ff41;
    z-index: 1;
}
.nav-left {
    color: #00ff41;
    font-size: 1.3em;
    font-weight: bold;
    margin-left: 2em;
    letter-spacing: 2px;
    text-shadow: 0 0 12px #00ff41, 0 0 2px #39ff14;
}
.navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.navbar li {
    margin: 0 1.5em;
}
.navbar a {
    color: #00ff41;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 0 0 8px #00ff41, 0 0 2px #39ff14;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}
.navbar a:hover {
    color: #39ff14;
    text-shadow: 0 0 16px #39ff14;
    border-bottom: 2px solid #39ff14;
}
.separator {
    border: none;
    border-top: 2px solid #00ff41;
    margin: 0 0 2em 0;
    box-shadow: 0 0 8px #00ff41;
    z-index: 1;
}
.content {
    max-width: 700px;
    margin: 2em auto;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 16px;
    box-shadow: 0 4px 32px #00ff41, 0 0 8px #39ff14;
    padding: 2em;
    position: relative;
    z-index: 1;
}
.bio h1, .roadmap h2 {
    color: #00ff41;
    text-shadow: 0 0 12px #00ff41, 0 0 2px #39ff14;
}
.roadmap-timeline {
    position: relative;
    border-left: 3px solid #00ff41;
    padding-left: 30px;
}
.roadmap-project {
    position: relative;
    margin-bottom: 2em;
    padding: 1em 1.5em;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 32px #00ff41, 0 0 8px #39ff14;
    transition: transform 0.4s, box-shadow 0.4s;
    opacity: 0;
    transform: translateY(40px);
}
.roadmap-project.visible {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 4px 32px #00ff41, 0 0 8px #39ff14;
}
.roadmap-dot {
    position: absolute;
    left: -38px;
    top: 1.2em;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #00ff41;
    box-shadow: 0 0 8px #00ff41;
}
.roadmap-dot.completed {
    background: #2ecc40;
}
.roadmap-dot.current {
    background: #ffd600;
}
.roadmap-dot.planned {
    background: #ff3b3b;
}
.roadmap-project-title {
    font-size: 1.2em;
    color: #00ff41;
    margin-bottom: 0.3em;
    text-shadow: 0 0 8px #00ff41;
}
.roadmap-project-status {
    font-size: 0.95em;
    color: #39ff14;
    margin-bottom: 0.5em;
}
.roadmap-project-desc {
    color: #00ff41;
}
.footer {
    background: #000;
    color: #00ff41;
    text-align: center;
    padding: 1em 0;
    font-size: 1em;
    border-top: 2px solid #00ff41;
    margin-top: auto;
    box-shadow: 0 0 8px #00ff41;
    z-index: 1;
}
.bio-details {
    background: rgba(0, 0, 0, 0.92);
    border-radius: 16px;
    box-shadow: 0 4px 32px #00ff41, 0 0 8px #39ff14;
    padding: 2em 2em 1.5em 2em;
    margin-top: 2em;
    margin-bottom: 2em;
}
.bio-details h2 {
    color: #39ff14;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    text-shadow: 0 0 8px #39ff14;
    font-size: 1.25em;
}
.bio-details ul {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    box-shadow: 0 2px 8px #00ff41;
    padding: 1em 1.5em;
    margin-bottom: 1em;
    list-style: disc inside;
}
.bio-details ul li {
    color: #00ff41;
    margin-bottom: 0.5em;
    font-size: 1.05em;
    line-height: 1.6;
}
.bio-details ul li strong {
    color: #ffd600;
    font-weight: bold;
    margin-right: 6px;
}
