
.cyber-footer {
    background-color: #050508;  
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(0, 242, 255, 0.05) 0%, transparent 70%),
        linear-gradient(rgba(0, 242, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    color: #e0e0e0;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    border-top: 2px solid rgba(0, 242, 255, 0.2);
    overflow: hidden;
}

 
.cyber-footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 1px;
    background: var(--neon-blue, #00f2ff);
    box-shadow: 0 0 15px #00f2ff;
    opacity: 0.3;
    animation: footerScan 6s linear infinite;
}

@keyframes footerScan {
    0% { top: 0%; }
    100% { top: 100%; }
}

 
.cyber-footer h5 {
    font-family: 'Orbitron', sans-serif;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0, 242, 255, 0.3);
    display: inline-block;
    padding-bottom: 5px;
}

 
.footer-link {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Share Tech Mono', monospace;
    display: flex;
    align-items: center;
}

.footer-link:hover {
    color: #00f2ff;
    transform: translateX(8px);
    text-shadow: 0 0 8px rgba(0, 242, 255, 0.6);
}

.footer-link i {
    font-size: 0.8rem;
    transition: 0.3s;
}

 
.social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
    transition: 0.3s;
}

.social-btn:hover {
    background: #00f2ff;
    color: #000;
    box-shadow: 0 0 15px #00f2ff;
    transform: translateY(-3px);
}

 
.footer-link-snow {
    color: #ff5e00;  
    font-weight: bold;
    text-decoration: none;
    border: 1px solid rgba(255, 94, 0, 0.3);
    padding: 2px 8px;
    font-size: 0.8rem;
    transition: 0.3s;
}

.footer-link-snow:hover {
    background: #ff5e00;
    color: #fff;
    box-shadow: 0 0 10px #ff5e00;
}

 
.back-to-top {
    background: #00f2ff;
    color: #000;
    border: none;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.5);
}

.back-to-top:hover {
    background: #fff;
    transform: scale(1.1);
}
 