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

body {
    background-color: #181a20;
    color: #a0a0a0;
    font-family: "Times New Roman", serif;
    line-height: 1.3;
    overflow: hidden;
    height: 100vh;
}

.terminal {
    position: relative;
    height: 100vh;
    padding: 20px;
    background-color: #23252e;
    border: 1px solid #2a2d3a;
    overflow-y: auto;
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(160, 160, 160, 0.1);
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

.output {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #2a2d3a;
    padding-bottom: 20px;
}

.title {
    font-size: 3em;
    letter-spacing: 8px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 0.9em;
    letter-spacing: 12px;
    color: #707070;
    text-transform: uppercase;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dotted #2a2d3a;
    padding-bottom: 10px;
}

.label {
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #707070;
    min-width: 140px;
}

.value {
    font-size: 0.9em;
    text-align: right;
    flex-grow: 1;
    padding-left: 20px;
}

.online {
    color: #00ff00;
}

.text-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dotted #2a2d3a;
    padding-bottom: 20px;
}

.text-block .value {
    text-align: left;
    line-height: 1.5;
}

.links {
    flex-direction: column;
    align-items: stretch;
}

.link-container {
    margin-top: 10px;
}

.link {
    font-size: 0.8em;
    padding: 8px 0;
    border-bottom: 1px solid #1a1c24;
    color: #c0c0c0;
    transition: color 0.3s ease;
}

.link:hover {
    color: #ffffff;
}

.link:last-child {
    border-bottom: none;
}

.disclaimer .value {
    color: #707070;
    font-size: 0.8em;
    font-style: italic;
    line-height: 1.4;
}

.footer {
    margin-top: 30px;
    display: flex;
    align-items: center;
    border-top: 1px solid #2a2d3a;
    padding-top: 15px;
}

.cursor {
    color: #00ff00;
    animation: blink 1s infinite;
    font-weight: bold;
}

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