body {
    margin: 0;
    font-family: 'Share Tech Mono', monospace;
    background-color: #0a0a0a; /* Dark background */
    color: #00ff00; /* Neon green for general text */
}

/* --- Navbar Styles --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent dark background */
    color: #00ff00; /* Neon green for text */
    position: fixed; /* Keep navbar at the top */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000; /* Ensure it's above other content */
    box-shadow: 0 2px 10px rgba(0, 255, 0, 0.3); /* Neon glow effect */
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #00ffff; /* Neon blue for logo */
    text-decoration: none;
    text-shadow: 0 0 5px #00ffff, 0 0 10px #00ffff;
    transition: color 0.3s ease;
}

.navbar .logo:hover {
    color: #00ff00; /* Neon green on hover */
    text-shadow: 0 0 5px #00ff00, 0 0 15px #00ff00;
}

.navbar .nav-links a {
    color: #00ff00; /* Neon green for links */
    text-decoration: none;
    font-size: 1.1em;
    margin-left: 30px;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00ffff; /* Neon blue underline */
    transition: width 0.3s ease-out;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.navbar .nav-links a:hover {
    color: #00ffff; /* Neon blue on hover */
    text-shadow: 0 0 5px #00ffff;
}
/* --- End Navbar Styles --- */

/* --- Hero Section (from index.php) --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #00ff00; /* Neon green */
    font-family: 'Share Tech Mono', monospace; /* Futuristic font */
    overflow: hidden;
    text-align: center;
    background: linear-gradient(45deg, #0a0a0a, #001a00); /* Dark, subtle gradient */
    padding-top: 80px; /* Add padding to account for fixed navbar */
}

.matrix-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(https://yrume.com/matrix-code.gif); /* Placeholder for a matrix rain GIF */
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.glitch-effect {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00;
    animation: glitch 1s infinite;
}

.neon-text {
    color: #00ffff; /* Neon blue */
    text-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff;
}

.hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #00cc00;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #00ff00, #00cc00);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 55px;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px #00ff00;
    z-index: 1;
}

.cta-button:hover {
    background: linear-gradient(45deg, #00cc00, #00ff00);
    box-shadow: 0 0 25px #00ff00, 0 0 40px #00ff00;
    transform: scale(1.05);
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

/* --- General Content Styling (for About, Blog, Contact) --- */
.content-section {
    padding: 100px 30px 50px; /* Top padding to clear fixed navbar */
    max-width: 960px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.6); /* Slightly transparent background for content */
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
    margin-top: 20px;
}

.content-section h1, .content-section h2 {
    color: #00ffff; /* Neon blue for headings */
    text-shadow: 0 0 8px #00ffff;
    margin-bottom: 20px;
}

.content-section p, .content-section ul, .content-section li {
    color: #00cc00; /* Slightly darker neon green for text */
    line-height: 1.6;
    margin-bottom: 15px;
}

.content-section ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
}

.content-section ul li::before {
    content: '>> '; /* Custom bullet point */
    color: #00ffff;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    .hero-subtitle {
        font-size: 1.2em;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .navbar {
        flex-direction: column;
        padding: 10px;
    }
    .navbar .nav-links {
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    .navbar .nav-links a {
        margin: 5px 0;
        text-align: center;
    }
    .content-section {
        padding: 80px 15px 30px;
    }
}

