body {
    background-color: #000;
    color: #00ff00;
    font-family: 'Consolas', 'Courier New', monospace;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
    text-shadow: 0 0 2px rgba(0, 255, 0, 0.5);
}

/* Matrix Scanline Effect */
body::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.03), rgba(0, 255, 0, 0.01), rgba(0, 0, 255, 0.03));
    z-index: 9999;
    background-size: 100% 3px, 3px 100%;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

@keyframes flicker {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

/* Terminal Glow */
body::after {
    content: " ";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 9998;
    pointer-events: none;
}

#navbar {
    border-bottom: 1px solid #00ff00;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 20, 0, 0.9);
}

.logo {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links a {
    color: #00ff00;
    text-decoration: none;
    margin-left: 2rem;
    transition: none; /* No animations as requested */
}

/* Hover as plain text, same size */
.nav-links a:hover {
    color: #fff;
    text-decoration: underline;
    font-size: 1rem; /* Force same size */
    background: none;
    transform: none;
}

section {
    padding: 4rem 2rem;
    border-bottom: 1px solid #004400;
}

h1, h2, h3 {
    color: #00ff00;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 1.5rem;
}

.ascii-header {
    white-space: pre;
    font-family: 'Consolas', monospace;
    font-size: 0.6rem;
    line-height: 1.2;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.terminal-prompt::before {
    content: "> ";
}

.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #00ff00;
    color: #00ff00;
    text-decoration: none;
    margin-top: 1rem;
}

.btn:hover {
    background: #00ff00;
    color: #000;
    font-size: 1rem; /* Same size */
}

/* Services Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    border: 1px solid #004400;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.service-card:hover {
    border-color: #00ff00;
}

footer {
    padding: 2rem;
    text-align: center;
    font-size: 0.8rem;
    color: #008800;
}

/* Matrix Rain Background (Canvas) */
#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}
