/*
Theme Name: Status Dashboard
Author: You
Version: 1.0
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Tahoma, sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 60px 90px;
    border-radius: 22px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}

/* دایره وضعیت */
.status-circle {
    width: 30px;
    height: 30px;
    background: #2ecc71;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 rgba(46, 204, 113, 0.7);
}

.status-box h1 {
    color: #2ecc71;
    font-size: 42px;
    margin-bottom: 10px;
}

.status-box span {
    font-size: 17px;
    color: #d0d0d0;
    letter-spacing: 0.5px;
}

/* انیمیشن pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1.4);
        box-shadow: 0 0 0 22px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}
