a {
    color: #cccccc;
    text-decoration: none;
    font-size: 12px;
    text-transform: lowercase;
}
a:hover {
    color: #F05A28;
}
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
    background: #000;
}
.container {
    position: relative;
    z-index: 1;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
}
.logo {
    width: 400px;
    height: auto;
}

.seo-h1 {
    margin: 12px 0 0;
    font-size: 1rem;
    font-weight: normal;
    color: #888;
    line-height: 1.3;
}

.seo-lead {
    margin: 10px auto 0;
    max-width: 28rem;
    font-size: 12px;
    color: #666;
    line-height: 1.45;
}

.text {
    margin-top: 15px;
    font-size: 28px;
    color: #cccccc;
}

.text sup {
    color: springgreen;
    font-size: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.globe-stats {
    position: fixed;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 10;
    min-width: 10rem;
    padding: 0.75rem 1rem;
    font-size: 13px;
    line-height: 1.45;
    color: #ccc;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(240, 90, 40, 0.35);
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.globe-stats__title {
    margin-bottom: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #888;
}

.globe-stats__row {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.globe-stats__row + .globe-stats__row {
    margin-top: 0.35rem;
}

.globe-stats__label {
    color: #999;
}

.globe-stats__value {
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.globe-stats__row--online .globe-stats__value {
    color: #00ffcc;
}

.globe-stats__row--offline .globe-stats__value {
    color: #ff0066;
}


.bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

/* ===== BLOBS ===== */
.blob {
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
}

.blob:nth-child(1) {
    background: radial-gradient(circle, #00ffcc 0%, transparent 60%);
    animation: move1 35s infinite linear;
}

/* Blob 2 */
.blob:nth-child(2) {
    background: radial-gradient(circle, #ff0066 0%, transparent 60%);
    animation: move2 45s infinite linear;
}

/* Blob 3 */
.blob:nth-child(3) {
    background: radial-gradient(circle, #0066ff 0%, transparent 60%);
    animation: move3 55s infinite linear;
}

@keyframes move1 {
    0% {transform: translate(0vw, 0vh) scale(1);}
    25% {transform: translate(30vw, -20vh) scale(1.2);}
    50% {transform: translate(-20vw, 30vh) scale(0.9);}
    75% {transform: translate(25vw, 10vh) scale(1.1);}
    100% {transform: translate(0vw, 0vh) scale(1);}
}

@keyframes move2 {
    0% {transform: translate(50vw, 20vh) scale(1);}
    25% {transform: translate(-30vw, 10vh) scale(1.1);}
    50% {transform: translate(20vw, -40vh) scale(1.3);}
    75% {transform: translate(-10vw, 30vh) scale(0.95);}
    100% {transform: translate(50vw, 20vh) scale(1);}
}

@keyframes move3 {
    0% {transform: translate(-20vw, 40vh) scale(1);}
    25% {transform: translate(40vw, 10vh) scale(1.15);}
    50% {transform: translate(-30vw, -30vh) scale(0.9);}
    75% {transform: translate(20vw, 20vh) scale(1.2);}
    100% {transform: translate(-20vw, 40vh) scale(1);}
}