body {
    background: #07070c;
}

.imperio-card {
    background: #0d0d12;
    border-radius: 20px;
    padding: 30px;
    width: 420px;
    color: #fff;
    font-family: Arial;
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.541);
}

.top {
    display: flex;
    justify-content: space-between;
}

.status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.online {
    background: #88ff00;
}

.offline {
    background: rgb(255, 0, 0);
}

.glow {
    animation: glow 1s infinite;
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px #9b00ff;
    }
    50% {
        box-shadow: 0 0 25px #9b00ff;
    }
    100% {
        box-shadow: 0 0 5px #9b00ff;
    }
}

.center {
    text-align: center;
}

.center h1 {
    font-size: 70px;
    margin: 10px 0;
    letter-spacing: 3px;
}

.bar {
    height: 6px;
    background: #222;
    border-radius: 10px;
}

#fill {
    height: 100%;
    background: red;
    width: 0%;
    transition: .5s;
}

.buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.join,
.store {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
}

.join {
    background: #9b00ff;
    color: white;
}

.store {
    background: #1a1a1a;
    color: white;
}