body {
    background: black;
    margin: 0;
    padding: 0;
    font-family: "Courier New", monospace;
}

#terminal {
    color: #00ff99;
    padding: 20px;
    white-space: pre-wrap;
    font-size: 16px;
    line-height: 1.6;
}

/* Spinner animation */
.spinner {
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #00ff99;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* MOBILE FIXES */
@media screen and (max-width: 600px) {
    .logo { width: 140px; }
    h1 { font-size: 45px; }
    .tagline { font-size: 18px; }
    .address { font-size: 12px; }
    .white-rabbit-link img { width: 55px; }
}
