/* shared styles for all solarcat pages */
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");

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

body {
    font-family: "VT323", "Courier New", monospace;
    background: #1a1a2e;
    color: #b8c0e0;
    font-size: 20px;
    line-height: 1.6;
    padding: 2rem;
    max-width: 640px;
    margin: 0 auto;
}

h1 {
    color: #f6c177;
    font-size: 2.4rem;
    margin-bottom: 0.2rem;
}

h2 {
    color: #f6c177;
    font-size: 1.5rem;
    margin: 2rem 0 0.5rem;
}

.subtitle {
    color: #7a839e;
    margin-bottom: 2rem;
}

.divider {
    color: #3d4059;
    margin: 1.5rem 0;
    letter-spacing: 2px;
}

a {
    color: #8caaee;
    text-decoration: none;
}

a:hover {
    color: #f6c177;
    text-decoration: underline wavy;
}

.service {
    margin: 1.2rem 0;
    padding-left: 1.2rem;
    border-left: 2px solid #3d4059;
}

.service-name {
    color: #a6d189;
}

.note {
    color: #7a839e;
    font-size: 0.9em;
}

/* front page: the sign-up / bridges guide links — a step louder than the
   surrounding text */
.guides {
    color: #9aa5c8;
    font-size: 1.1em;
    margin-top: 0.8rem;
}

.footer {
    margin-top: 3rem;
    color: #3d4059;
    font-size: 0.85em;
}

.blink {
    animation: blink 1.2s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.cat {
    white-space: pre;
    color: #f6c177;
    font-size: 14px;
    line-height: 1.2;
    margin: 1.5rem 0;
}

/* guide pages */

.back {
    display: inline-block;
    margin-bottom: 1.5rem;
}

/* terminal-prompt steps: "> like this" */
.steps {
    list-style: none;
    margin: 1rem 0;
}

.steps li {
    margin: 0.8rem 0;
    padding-left: 1.2rem;
    border-left: 2px solid #3d4059;
}

.steps li::before {
    content: "> ";
    color: #f6c177;
}

/* inline command / address, e.g. `login qr` */
.cmd {
    color: #a6d189;
    background: #232537;
    padding: 0 0.25em;
    word-break: break-all;
}

.warn {
    border: 1px dashed #e78284;
    color: #e78284;
    padding: 0.6rem 1rem;
    margin: 1rem 0;
    font-size: 0.95em;
}

/* multi-line terminal snippet */
.snippet {
    background: #232537;
    color: #a6d189;
    padding: 0.8rem 1rem;
    margin: 0.8rem 0 0.8rem 1.2rem;
    overflow-x: auto;
    font-size: 0.9em;
    line-height: 1.45;
    white-space: pre;
}