

body {
    font-family: "Inter", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    touch-action: manipulation;
}

#messageBox {
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.hobbs-window {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.digit-box {
    width: 20px;
    height: 32px;
    background: #222;
    color: #eee;
    font-family: 'Courier New', Courier, monospace;
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
    text-align: center;
    margin: 0 1px;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.digit-box.red {
    background: #c5282c;
    color: #fff;
    margin-left: 4px;
}

.digit-strip {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.digit-strip div {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.horometer-dot {
    font-weight: bold;
    font-size: 18px;
    margin: 0 1px;
    align-self: flex-end;
    line-height: 1.2;
    margin-bottom: 4px;
}

.grecaptcha-badge {
    visibility: hidden;
}

#installBanner {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}
