@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@700&family=Lexend:wght@100..900&display=swap');


footer {
    background-color: #166138;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

.footer-content {
    padding: 20px;
    height: 1500px; /* just for demonstration */
}

.footer-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #000;
    color: #0f0;
    border-top: 4px solid #f0f;
    box-shadow: 0 0 20px #f0f;
    font-family: "VT323", monospace;
}

.footer-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0f0;
}

.footer-header::before {
    content: "> ";
    color: #0f0;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.logo {
    height: 40px;
    filter: drop-shadow(0 0 5px #0f0);
    margin-right: 20px;
}

.footer-status {
    color: #0f0;
    font-size: 18px;
    text-shadow: 0 0 5px #0f0;
}

.footer-status::before {
    content: "[";
    color: #f0f;
}

.footer-status::after {
    content: "]";
    color: #f0f;
}

.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
}

.category {
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid #0f0;
    padding: 15px;
    position: relative;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.1),
        rgba(0, 255, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
}

.category h3 {
    font-size: 16px;
    text-transform: uppercase;
    color: #f0f;
    text-shadow: 2px 2px 0 #0ff;
    font-family: "Press Start 2P", cursive;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #0f0;
}

.category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category ul li {
    margin-bottom: 8px;
}

.category ul li a {
    color: #0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    text-shadow: 0 0 5px #0f0;
    display: inline-block;
    padding: 2px 5px;
}

.category ul li a:hover {
    text-shadow: 0 0 10px #0f0;
    background: rgba(0, 255, 0, 0.1);
    transform: translateX(5px);
}

.category ul li a i {
    margin-right: 8px;
    color: #f0f;
}

.footer-bottom {
    background-color: #000;
    color: #0f0;
    text-align: center;
    padding: 10px;
    font-size: 14px;
    border-top: 1px solid #0f0;
    text-shadow: 0 0 5px #0f0;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer-container {
        padding: 15px;
    }

    .footer-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .categories {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }

    .category {
        min-width: 150px;
        padding: 10px;
    }

    .category h3 {
        font-size: 16px;
    }

    .category ul {
        padding-left: 15px;
    }

    .category li {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 10px;
    }

    .logo {
        height: 30px;
    }

    .footer-status {
        font-size: 16px;
    }

    .category h3 {
        font-size: 14px;
    }

    .category ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 12px;
    }

    .categories {
        gap: 10px;
    }

    .category {
        min-width: 140px;
        padding: 8px;
    }
}
