* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #614385, #516395);
}

.container {
    width: 100%;
    max-width: 420px;
    animation: fadeSlide 1s ease forwards;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
}

.status-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: transform 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
}

p {
    margin: 15px 0;
    font-size: 16px;
}

.status-text {
    font-weight: bold;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 20px;
    right: 20px;
    background: gray;
    animation: pulse 1.5s infinite;
}

.online {
    color: green;
}

.offline {
    color: red;
}

.indicator.online {
    background: green;
}

.indicator.offline {
    background: red;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}