#achievement-popup {
    position: fixed;

    right: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 16px;

    border: 2px solid #fde68a;
    border-radius: 10px;

    background: rgba(25, 18, 40, 0.95);

    font-family: "Courier New", monospace;

    box-shadow:
        0 0 10px rgba(253, 230, 138, 0.4);

    transform: translateX(120%);
    transition: transform 0.4s ease;

    z-index: 2000;
}

#achievement-popup.show {
    transform: translateX(0);
}

.achievement-icon {
    font-size: 28px;
}

.achievement-label {
    font-size: 10px;
    color: #fde68a;
}

#achievement-name {
    margin-top: 3px;
    font-size: 14px;
}