@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: 900px;
    margin: 3em auto 3em auto;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 24px;
    box-shadow: 0 8px 48px #00ff41, 0 0 16px #39ff14;
    padding: 3em 3em 2.5em 3em;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: rgba(0, 0, 0, 0.92);
    border-radius: 20px;
    box-shadow: 0 4px 32px #00ff41, 0 0 8px #39ff14;
    padding: 2.5em 2em 2em 2em;
    margin-bottom: 2.5em;
    position: relative;
}

.contact-info h1 {
    color: #00ff41;
    margin-bottom: 1.2em;
    text-shadow: 0 0 12px #00ff41, 0 0 2px #39ff14;
    font-size: 2.3em;
    font-weight: bold;
}

.contact-info p {
    color: #00ff41;
    font-size: 1.15em;
    margin-bottom: 2em;
    line-height: 1.7;
}

.contact-info strong {
    color: #39ff14;
    font-weight: bold;
    margin-right: 6px;
}

.contact-info a {
    color: #ff3b3b;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.2s, text-shadow 0.2s;
    text-shadow: 0 0 8px #ff3b3b;
    border-radius: 4px;
    padding: 2px 6px;
}

.contact-info a:hover {
    color: #ff7b7b;
    text-shadow: 0 0 16px #ff7b7b;
    background: #222;
}

.contact-info .contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 0.7em;
}

.contact-info .contact-icon {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    filter: drop-shadow(0 0 4px #00ff41);
}

.contact-desc {
    display: block;
    color: #ffd600;
    font-size: 1em;
    margin-left: 2.2em;
    margin-top: 4px;
    margin-bottom: 8px;
    font-style: italic;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.contact-extra {
    background: rgba(0, 0, 0, 0.85);
    border-radius: 16px;
    box-shadow: 0 2px 16px #39ff14;
    padding: 2em 2em 1.5em 2em;
    margin-top: 3em;
}

.contact-extra h2 {
    color: #39ff14;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
    text-shadow: 0 0 8px #39ff14;
    font-size: 1.25em;
}

.contact-extra p {
    color: #00ff41;
    font-size: 1.08em;
    margin-bottom: 1em;
    line-height: 1.6;
}

.contact-method {
    position: relative;
    padding-left: 1em;
    margin-bottom: 2em;
    border-left: 3px solid #39ff14;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    box-shadow: 0 2px 8px #00ff41;
    transition: box-shadow 0.2s, background 0.2s;
    min-height: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-method:hover {
    box-shadow: 0 4px 16px #ffd600;
    background: #111;
}

.contact-method strong {
    font-size: 1.08em;
    margin-bottom: 0.2em;
}

.contact-method a {
    font-size: 1.08em;
    padding: 2px 8px;
}

.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;
}
