* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}

body {
    background: #0a0a0a;
    color: #0f0;
    overflow-x: hidden;
    position: relative;
}

#matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #0f0;
    box-shadow: 0 0 10px #0f0;
}

header h1 {
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 5px;
    animation: glitch 2s linear infinite;
}

nav {
    background: rgba(20, 20, 20, 0.9);
    padding: 10px;
    text-align: center;
}

nav a {
    color: #0f0;
    text-decoration: none;
    margin: 0 20px;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav a:hover {
    color: #f0f;
}

section {
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #f0f;
    text-shadow: 0 0 5px #f0f;
}

.content {
    background: rgba(20, 20, 20, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px #0f0;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.gallery img {
    width: 100%;
    border: 2px solid #0f0;
    border-radius: 5px;
    transition: transform 0.3s;
}

.gallery img:hover {
    transform: scale(1.05);
}

.malware-item {
    margin-bottom: 20px;
}

.download-link {
    display: inline-block;
    background: #0f0;
    color: #000;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s;
}

.download-link:hover {
    background: #f0f;
}

ul {
    list-style: none;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: #0f0;
    text-decoration: none;
}

ul li a:hover {
    color: #f0f;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #0f0;
}

@keyframes glitch {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, 2px); }
    20% { transform: translate(2px, -2px); }
    30% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    50% { transform: translate(0); }
    100% { transform: translate(0); }
}

@media (max-width: 768px) {
    section {
        padding: 20px;
    }

    nav a {
        margin: 0 10px;
        font-size: 1em;
    }

    header h1 {
        font-size: 1.8em;
    }
}