body {
    background-color: #050505;
    color: rgba(220, 220, 220, 0.85);
    font-family: Consolas, Monaco, Menlo, 'Lucida Console', 'DejaVu Sans Mono', 'Source Code Pro', monospace;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    line-height: 1.6;
}

hr {
    border: 1px solid #919191;
}

.uns {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tmn {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.status-line {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.success {
    color: #4CAF50;
}

.warning {
    color: #FFC107;
}

.error {
    color: #F44336;
}

.notify {
    color: #33bacc;
}

.message {
    font-size: 1.2rem;
    margin: 15px 0;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 16px;
    background-color: rgba(220, 220, 220, 0.85);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

.cursor-ul {
    display: inline-block;
    width: 10px;
    height: 2px;
    background-color: rgba(220, 220, 220, 0.85);
    animation: blink 1s step-end infinite;
    margin-left: 2px;
    position: relative;
    top: -3px;
}

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

.cdc {
    margin-bottom: 15px;
}

/* Notice */

.notice {
    max-width: 600px;
    margin: 30px;
    padding: 20px;
    border: 1px solid #b30000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    /* text-align: center; */
}

.title {
    font-size: 1.8em;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.content {
    line-height: 1.6;
    font-size: 1.1rem;
    margin-bottom: 15px;
    white-space: pre-line;
}

.symbol {
    font-size: 2.5em;
    margin: 20px 0;
}

.footer {
    margin-top: 30px;
    margin-bottom: 30px;
}

@keyframes flicker {
    0% { opacity: 0.8; }
    5% { opacity: 0.9; }
    10% { opacity: 0.8; }
    15% { opacity: 1; }
    25% { opacity: 0.6; }
    30% { opacity: 0.9; }
    35% { opacity: 1; }
    40% { opacity: 0.8; }
    45% { opacity: 0.9; }
    50% { opacity: 1; }
    55% { opacity: 0.9; }
    60% { opacity: 0.7; }
    70% { opacity: 0.8; }
    80% { opacity: 0.9; }
    90% { opacity: 0.8; }
    100% { opacity: 1; }
}

.flicker {
    animation: flicker 10s infinite;
}

.coordinates {
    font-size: 0.8em;
    opacity: 0.7;
    margin-bottom: 20px;
}

.transmission {
    color: rgba(200, 77, 19, 0.85);
    font-size: 0.7em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .tmn {
        width: 85%;
        padding: 15px;
    }

    .status-line {
        font-size: 0.8rem;
    }

    .message {
        font-size: 1rem;
    }

    /* Notice */
    
    .notice {
        width: 85%;
        padding: 15px;
    }
}