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

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', monospace, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.container {
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background-color: rgb(58, 162, 173);
    border: 2px solid rgb(58, 162, 173);
    display: inline-block;
    margin-bottom: 32px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgb(58, 162, 173);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 16px rgb(58, 162, 173);
    }
}

h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(58, 162, 173);
    margin-bottom: 16px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.message {
    font-size: 18px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 48px;
    font-weight: 400;
}

.info-block {
    background-color: #111;
    border: 2px solid #1a1a1a;
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #1a1a1a;
    font-size: 16px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: #666;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 600;
}

.info-value {
    color: rgb(58, 162, 173);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer {
    margin-top: 48px;
    font-size: 14px;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.clock {
    font-family: monospace;
    font-size: 14px;
    color: #333;
    margin-top: 16px;
    letter-spacing: 2px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 16px;
    }

    .message {
        font-size: 16px;
    }

    .info-block {
        padding: 16px;
    }

    .info-row {
        flex-direction: column;
        gap: 4px;
    }
}
