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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    background: linear-gradient(to bottom, #1a82b8, #3fa3d8, #7cc8e8, #c4e6ef, #eef5ea);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

#view {
    position: fixed;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.overlay {
    position: fixed;
    left: clamp(1.5rem, 5vw, 5rem);
    top: 75%;
    transform: translateY(-75%);
    color: #424242;
    text-shadow: 0 2px 12px rgba(8, 40, 30, 0.45);
    pointer-events: none;
    user-select: none;
}

.overlay h1 {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1;
}

.overlay p {
    margin-top: 0.5rem;
    font-size: clamp(0.8rem, 1.4vw, 1rem);
    font-weight: 400;
    opacity: 0.85;
}

#stats {
    position: fixed;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.6rem 0.8rem;
    background: rgba(10, 26, 20, 0.72);
    color: #b8f0cd;
    font: 12px/1.55 ui-monospace, "Cascadia Code", Consolas, monospace;
    white-space: pre;
    border-radius: 6px;
    pointer-events: none;
    user-select: none;
}

#stats[hidden] {
    display: none;
}
