root {
    --bg-color: #ffffff;
    --text-color: #000000;
}

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

body {
    font-family: "Courier New", Courier, monospace;
    background-color: var(--bg-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

p {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.label {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.timestamp {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border: 3px solid #000;
    text-transform: uppercase;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
    min-width: 250px;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Fixed the invisible button */
.btn-outline {
    background: transparent;
    color: #000;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
}

input {
    display: block;
    width: 100%;
    max-width: 350px;
    padding: 1.2rem;
    margin: 0.5rem auto 1.5rem;
    border: 3px solid #000;
    font-size: 1.2rem;
    text-align: center;
    font-family: inherit;
    background: #fff;
    color: #000;
    border-radius: 0;
}

input:focus {
    outline: none;
    background: #f0f0f0;
}

.link {
    color: #666;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 1rem;
    display: inline-block;
}

.link:hover {
    color: #000;
    text-decoration: underline;
}

.footer-legal {
    position: fixed;
    bottom: 20px;
    font-size: 0.8rem;
    color: #888;
    max-width: 600px;
}

/* Status Specifics */
.status-alive {
    color: #000;
}
.status-offline {
    color: #ff0000; /* Only red element on the site */
}
