/* Click Area */

.click-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-touch-callout: none;
    background: var(--bg);
}

.ascii-cup-container {
    position: relative;
    transition: transform 0.1s ease;
}

.ascii-cup-container:active {
    transform: scale(0.95);
}

.ascii-cup {
    font-size: 1rem;
    color: var(--text);
    text-align: center;
    line-height: 1.15;
    white-space: pre;
}

.tap-hint {
    font-size: 0.75rem;
    color: var(--text-faint);
    margin-top: 10px;
    animation: pulse 2s ease-in-out infinite;
}

/* Idle producers */

.idle-producers {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
    padding: 8px 12px 0;
    pointer-events: none;
    min-height: 22px;
}

.idle-pill {
    font-size: 0.6rem;
    color: var(--text-faint);
    border: 1px solid currentColor;
    padding: 1px 5px;
    opacity: 0.2;
}

.idle-pill.ticking {
    animation: tickBlink 0.85s ease-out forwards;
}

/* Floating +EUR */

.float-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-text {
    position: absolute;
    font-weight: 700;
    font-size: 1rem;
    color: var(--money);
    animation: floatUp 0.8s ease-out forwards;
    pointer-events: none;
    white-space: nowrap;
}
