body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
    background: radial-gradient(circle at center, #1a1a1a, #000000);
    color: white;
    overflow: hidden;
}

/* CENTER */
.middle {
    text-align: center;
    z-index: 2;
}

/* IMAGE */
.middle img {
    width: 650px;
    max-width: 90vw;
    filter: drop-shadow(0 0 25px rgba(0, 200, 255, 0.35));
}

/* LINE */
.line {
    width: 70%;
    height: 2px;
    margin: 10px auto;
    background: linear-gradient(to right, transparent, #e41f1f, transparent);
    box-shadow: 0 0 10px rgba(228, 31, 31, 0.5);
}

/* STATUS */
.status-bar {
    margin-top: 15px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* DOT */
.dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 12px #00ff88;
    animation: pulse 1.5s infinite;
}

/* TEXT */
.uptime-text { color: #7fa3a3; font-weight: 600; }
.date-text { color: #9bb0b0; opacity: 0.8; }

/* PULSE */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(1); opacity: 1; }
}

/* BG CIRCLES */
.bg-circles {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.bg-circles span {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.2);
    box-shadow: 0 0 60px rgba(0, 200, 255, 0.3);
    animation: float 18s infinite ease-in-out;
}

.bg-circles span:nth-child(1){ width:140px;height:140px;left:10%;top:20%; }
.bg-circles span:nth-child(2){ width:220px;height:220px;left:70%;top:10%; }
.bg-circles span:nth-child(3){ width:100px;height:100px;left:40%;top:70%; }
.bg-circles span:nth-child(4){ width:180px;height:180px;left:85%;top:60%; }

@keyframes float {
    0%,100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(-50px); opacity: 0.8; }
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, rgba(255,0,0,0.15), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(20px);
    z-index: 0;
}