* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: #c00000;
    font-family: monospace;
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: crosshair;
}

/* moving static */
.noise {
    position: fixed;
    width: 200%;
    height: 200%;
    background: repeating-radial-gradient(circle, rgba(255,0,0,0.03) 0px, rgba(0,0,0,1) 2px);
    animation: noise 2s infinite linear;
    z-index: -1;
}

@keyframes noise {
    from { transform: translate(0,0); }
    to { transform: translate(-40px,-40px); }
}

/* Logo */
.logo {
    font-size: 6rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    position: relative;
    animation: flicker 4s infinite;
}

.drip {
    position: relative;
    color: red;
}

.drip::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 40px;
    background: red;
    left: 50%;
    top: 100%;
    animation: drip 2s infinite;
}

@keyframes drip {
    0% { height: 0; opacity: 1; }
    80% { height: 50px; opacity: 0.8; }
    100% { height: 60px; opacity: 0; }
}

.container {
    margin-top: 30px;
    text-align: center;
}

a {
    color: red;
    text-decoration: none;
    border: 1px solid #330000;
    padding: 6px 14px;
    transition: 0.3s;
}

a:hover {
    background: #220000;
    letter-spacing: 3px;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.4; }
}

/* Upload area */
.upload-box {
    margin-top: 40px;
    text-align: center;
}

input[type="file"] {
    background: black;
    color: red;
    border: 1px solid red;
    padding: 5px;
}

button {
    background: black;
    color: red;
    border: 1px solid red;
    padding: 5px 10px;
    cursor: pointer;
}

button:hover {
    background: #220000;
}

#files {
    margin-top: 30px;
    max-height: 300px;
    overflow-y: auto;
}