#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    display: block;
}

.container {
    position: relative;
    z-index: 1;
}

.main-nav {
    margin-bottom: 0px;
    border-bottom: none !important;
}

header {
    border-bottom: none !important;
}

#main_content {
    border-top: none !important;
}


.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    padding: 10px 0;
    margin: 0;
}

.nav-item::marker {
    content: '';
}


.nav-link {
    text-decoration: none;
    color: #888;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 10px;
    padding-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #00FF00;
    /* Hacker green */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #00FF00;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Redesign enhancements - Theme compatible */
.minimal-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #00FF00;
    /* Hacker green */
    color: #00FF00;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.minimal-btn:hover {
    background: #00FF00;
    color: #111;
}

.card {
    padding: 24px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.1);
}

.card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #00FF00;
    /* Hacker green */
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-links a {
    color: #666;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    color: #00FF00;
    transform: translateY(-2px);
}

/* Impact Grid Styles */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.impact-card {
    padding: 24px;
    border: 1px solid #333;
    border-radius: 12px;
    background: #111;
    /* Deeper black for more contrast */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.impact-card:hover {
    transform: translateY(-5px);
    border-color: #00FF00;
    box-shadow: 0 10px 30px rgba(0, 255, 0, 0.05);
}

.impact-card .icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.impact-card h3 {
    margin-top: 0;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #eee;
}

.impact-card p {
    margin: 0;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
}

.card p {
    margin: 0;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}