/* Polsia - Universal Paperclips Aesthetic */

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

body {
    font-family: "Times New Roman", Times, serif;
    background-color: #fff;
    color: #000;
    line-height: 1.6;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

/* Terminal */
.terminal {
    background-color: #000;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    padding: 10px 15px;
    margin-bottom: 30px;
    font-size: 13px;
}

#terminal-text {
    transition: opacity 0.3s ease;
}

/* Intro Section */
#intro {
    margin-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 0.3em;
    line-height: 1.1;
}

.tagline {
    font-size: 1.3em;
    margin-bottom: 1em;
    font-weight: normal;
}

.description {
    font-size: 1.05em;
    margin-bottom: 2em;
    line-height: 1.7;
}

/* CTA */
.cta {
    margin: 30px 0;
}

.input-field {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 10px 12px;
    font-family: "Times New Roman", Times, serif;
    font-size: 16px;
    width: 60%;
    margin-right: 8px;
}

.input-field:focus {
    outline: none;
    border-color: #000;
}

.btn-primary {
    background: linear-gradient(top, #ffffff, #888888);
    background: -webkit-linear-gradient(top, #ffffff, #888888);
    border: 1px solid #1a1a1a;
    color: #000000;
    padding: 2px 4px;
    font-family: helvetica, serif;
    font-size: 11px;
    cursor: pointer;
    border-radius: 2px;
    box-shadow: rgba(255, 255, 255, 0.4) 0 1px 0 0 inset, rgba(255, 255, 255, 0.4) 0 1px 0;
}

.btn-primary:hover {
    background: linear-gradient(top, #ffffff, #888888);
    background: -webkit-linear-gradient(top, #ffffff, #888888);
}

.btn-primary:active {
    background: linear-gradient(top, #888888, #ffffff);
    background: -webkit-linear-gradient(top, #888888, #ffffff);
    box-shadow: rgba(0, 0, 0, 0.4) 0 1px 2px 0 inset;
    padding-top: 3px;
    padding-bottom: 1px;
}

.queue {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
}

.queue span {
    color: #000;
    font-weight: normal;
}

/* Divider */
hr {
    border: none;
    border-top: 1px solid #000;
    margin: 40px 0;
}

/* System Overview */
#overview {
    margin-bottom: 40px;
}

#overview h2 {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
}

#overview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#overview li {
    padding: 6px 0;
    padding-left: 12px;
    border-left: 2px solid #000;
    font-size: 0.95em;
    margin-bottom: 4px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px 0 0 0;
    border-top: 1px solid #000;
    margin-top: 40px;
}

.footer p {
    font-size: 11px;
    color: #666;
    margin: 4px 0;
}

.footer-note {
    color: #999;
    font-style: italic;
}

.footer-contact {
    margin-top: 8px;
}

.footer-contact a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
}

.footer-contact a:hover {
    color: #333;
    border-bottom-color: #333;
}

#status-text {
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 20px 15px;
    }

    h1 {
        font-size: 2em;
    }

    .tagline {
        font-size: 1.1em;
    }

    .input-field {
        width: 100%;
        margin-bottom: 10px;
        margin-right: 0;
    }

    .btn-primary {
        width: 100%;
    }
}
