@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500&display=swap');


html,body{
    padding: 0;
    margin: 0;
    overflow: hidden;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.box{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;


}
.logo{
    width: 150px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.message{
    padding-top:3vh;
    font-family: Ubuntu;
    font-weight: bold;
    font-size: 1.6em;
}

.btn{
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-family: 'Ubuntu', sans-serif;
    font-size: 1rem;
    font-weight: 420;
    color: #fff;
    background-color: #E95420;
    border: 1px solid #E95420;
    border-radius: 0.375rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn:hover{
    background-color: #c7431a;
    border-color: #c7431a;
}


.btn:active{
    background-color: #a33615;
    border-color: #a33615;
}

.btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}
/* ── Outpost pages ── */
.outpost-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 48px 40px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    max-width: 420px;
    width: 90vw;
    text-align: center;
}

.outpost-card .logo {
  /*  width: 72px;
    height: 72px;*/
}



.outpost-card h1 {
    font-family: 'Ubuntu', system-ui, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.outpost-card p {
    font-family: 'Ubuntu', system-ui, sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.dot-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.2);
    transition: background 0.6s, box-shadow 0.6s;
    flex-shrink: 0;
}

.dot.live {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.status-text {
    font-family: 'Ubuntu', system-ui, sans-serif;
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.spinner {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(0,0,0,0.1);
    border-top-color: #E95420;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.dumb-text {
    font-family: 'Ubuntu', system-ui, sans-serif;
    font-weight: bolder;
    color: black;
    letter-spacing: 0.08em;
}

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