@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;
}
.intro h1, .redirects h2 {
    color: #00ff41;
    text-shadow: 0 0 12px #00ff41, 0 0 2px #39ff14;
}
.redirects ul {
    padding-left: 1em;
}
.redirects a {
    color: #39ff14;
    text-decoration: underline;
    text-shadow: 0 0 8px #00ff41;
    font-weight: bold;
    transition: color 0.2s, text-shadow 0.2s;
}
.redirects a:hover {
    color: #00ff41;
    text-shadow: 0 0 16px #39ff14;
}
.crossed-out {
    text-decoration: line-through;
    color: #ff3b3b;
    opacity: 0.7;
}
.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;
}
.intro-details {
    background: rgba(0, 0, 0, 0.94);
    border-radius: 24px;
    box-shadow: 0 8px 48px #00ff41, 0 0 16px #39ff14;
    padding: 3em 2.5em 2.5em 2.5em;
    margin-top: 2.5em;
    margin-bottom: 2.5em;
}
.intro-details h2 {
    color: #39ff14;
    margin-top: 1.5em;
    margin-bottom: 0.8em;
    text-shadow: 0 0 8px #39ff14;
    font-size: 1.35em;
}
.intro-details ul {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    box-shadow: 0 2px 12px #00ff41;
    padding: 1.2em 1.7em;
    margin-bottom: 1.2em;
    list-style: disc inside;
}
.intro-details ul li {
    color: #00ff41;
    margin-bottom: 0.7em;
    font-size: 1.08em;
    line-height: 1.7;
    transition: background 0.2s, color 0.2s;
}
.intro-details ul li strong {
    color: #ffd600;
    font-weight: bold;
    margin-right: 8px;
}
