body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #1a0000;
    color: #fff;
    text-align: center;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
}
h1 {
    font-size: 3rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px red, 0 0 20px darkred;
    animation: glow 2s infinite alternate;
}
.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.server-list {
    background: rgba(255, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px red;
    width: 60%;
    max-width: 600px;
}
.login-box {
    background: rgba(255, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px red;
    width: 60%;
    max-width: 400px;
}
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: rgb(255, 255, 255);
    color: rgb(192, 192, 192);
    font-size: 1rem;
}
.btn {
    background: red;
    color: white;
    padding: 15px 30px;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 5px;
}
.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px red;
}
@keyframes glow {
    from {
        text-shadow: 0 0 10px red, 0 0 20px darkred;
    }
    to {
        text-shadow: 0 0 20px red, 0 0 30px crimson;
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
