.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.background-animation canvas {
    display: block;
    width: 100%;
    height: 100%;
}

.glow-bottom {
    position: fixed;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0, 255, 136, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.nav-menu {
    position: relative;
    z-index: 2;
}

.card {
    position: relative;
    z-index: 1;
}

.works-page {
    position: relative;
    z-index: 1;
}

.site-footer {
    position: relative;
    z-index: 1;
}

.visits {
    margin-top: 20px;
    color: #4a5568;
    font-size: 13px;
    opacity: 0.7;
}

.visits.admin-mode {
    color: #00ff88;
    opacity: 1;
    border-top: 1px solid rgba(0, 255, 136, 0.1);
    padding-top: 15px;
}

.visits i {
    margin-right: 5px;
}

.admin-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    padding: 10px 16px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.admin-toggle:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
    transform: scale(1.05);
}

.admin-toggle i {
    margin-right: 5px;
}

.site-footer {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 20px 0 10px;
    border-top: 1px solid rgba(0, 255, 136, 0.05);
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-copy {
    color: #4a5568;
    font-size: 13px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #4a5568;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00ff88;
    transform: translateY(-2px);
}