/* ── Achievement Popup ──────────────────────────────────────────────── */

#achievement-popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 10000;
}

.achievement-popup {
    position: fixed;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;

    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    min-width: 280px;
    max-width: 400px;

    background: linear-gradient(135deg, #1a1a0a, #2a2a10);
    border: 1px solid #ffcc00;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);

    pointer-events: auto;
    transition: top 0.4s ease-out;
}

.achievement-popup-enter {
    top: 20px;
}

.achievement-popup-exit {
    top: -80px;
}

.achievement-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.achievement-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.achievement-label {
    color: #aa8800;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.2;
}

.achievement-name {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
    line-height: 1.2;
}

.achievement-desc {
    color: #ccc;
    font-size: 11px;
    line-height: 1.3;
}
