* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #00cc00;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.info {
    margin-top: 40px;
    padding: 20px;
    border: 2px solid #90ee90;
}

.status {
    margin-top: 30px;
    font-size: 1.2em;
}

.blink {
    animation: blink 1.5s infinite;
}

.status_color {
    color: #ff0000;
    font-weight: bold;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}
