/* global.css */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #000;
    color: #fff;
    overflow: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Atkinson Hyperlegible Mono", monospace;
}

.globe-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-height: 100vh;
    transform: translateY(-5vh);
}

.globe-container {
    position: relative;
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe-container pre {
    font-size: clamp(6px, 0.8vw, 9px);
    line-height: 1em;
    letter-spacing: clamp(1.2px, 0.25vw, 2.2px);
    color: rgba(255, 255, 255, 0.69);
    white-space: pre;
    font-family: "Atkinson Hyperlegible Mono", monospace;
    user-select: none;
    cursor: grab;
}

.globe-container pre:active {
    cursor: grabbing;
}

.globe-label {
    margin-top: 10px;
    font-family: "Atkinson Hyperlegible Mono", monospace;
    font-size: 14px;
    color: #fff;
    opacity: 0.95;
}

.back-arrow {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Atkinson Hyperlegible Mono", monospace;
    font-size: 28px;
    text-decoration: none;
    color: inherit;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.back-arrow:hover {
    opacity: 1;
}

/* Slightly tighter spacing on small screens */
@media (max-height: 600px) {
    .back-arrow {
        bottom: 16px;
    }
}